Lines Matching refs:aptr
315 XF86ConfAdaptorLinkPtr aptr; in xf86parseScreenSection() local
321 for (aptr = ptr->scrn_adaptor_lst; aptr; in xf86parseScreenSection()
322 aptr = (XF86ConfAdaptorLinkPtr) aptr->list.next) in xf86parseScreenSection()
323 if (xf86nameCompare(xf86_lex_val.str, aptr->al_adaptor_str) == 0) in xf86parseScreenSection()
326 if (aptr == NULL) { in xf86parseScreenSection()
327 aptr = calloc(1, sizeof(XF86ConfAdaptorLinkRec)); in xf86parseScreenSection()
328 aptr->list.next = NULL; in xf86parseScreenSection()
329 aptr->al_adaptor_str = xf86_lex_val.str; in xf86parseScreenSection()
331 xf86addListItem((glp) ptr->scrn_adaptor_lst, (glp) aptr); in xf86parseScreenSection()
377 XF86ConfAdaptorLinkPtr aptr; in xf86printScreenSection() local
403 for (aptr = ptr->scrn_adaptor_lst; aptr; aptr = aptr->list.next) { in xf86printScreenSection()
404 fprintf(cf, "\tVideoAdaptor \"%s\"\n", aptr->al_adaptor_str); in xf86printScreenSection()