Lines Matching refs:dptr

378     XF86ConfDisplayPtr dptr;  in xf86printScreenSection()  local
409 for (dptr = ptr->scrn_display_lst; dptr; dptr = dptr->list.next) { in xf86printScreenSection()
411 if (dptr->disp_comment) in xf86printScreenSection()
412 fprintf(cf, "%s", dptr->disp_comment); in xf86printScreenSection()
413 if (dptr->disp_frameX0 >= 0 || dptr->disp_frameY0 >= 0) { in xf86printScreenSection()
415 dptr->disp_frameX0, dptr->disp_frameY0); in xf86printScreenSection()
417 if (dptr->disp_virtualX != 0 || dptr->disp_virtualY != 0) { in xf86printScreenSection()
419 dptr->disp_virtualX, dptr->disp_virtualY); in xf86printScreenSection()
421 if (dptr->disp_depth) { in xf86printScreenSection()
422 fprintf(cf, "\t\tDepth %d\n", dptr->disp_depth); in xf86printScreenSection()
424 if (dptr->disp_bpp) { in xf86printScreenSection()
425 fprintf(cf, "\t\tFbBPP %d\n", dptr->disp_bpp); in xf86printScreenSection()
427 if (dptr->disp_visual) { in xf86printScreenSection()
428 fprintf(cf, "\t\tVisual \"%s\"\n", dptr->disp_visual); in xf86printScreenSection()
430 if (dptr->disp_weight.red != 0) { in xf86printScreenSection()
432 dptr->disp_weight.red, dptr->disp_weight.green, in xf86printScreenSection()
433 dptr->disp_weight.blue); in xf86printScreenSection()
435 if (dptr->disp_black.red != -1) { in xf86printScreenSection()
437 dptr->disp_black.red, dptr->disp_black.green, in xf86printScreenSection()
438 dptr->disp_black.blue); in xf86printScreenSection()
440 if (dptr->disp_white.red != -1) { in xf86printScreenSection()
442 dptr->disp_white.red, dptr->disp_white.green, in xf86printScreenSection()
443 dptr->disp_white.blue); in xf86printScreenSection()
445 if (dptr->disp_mode_lst) { in xf86printScreenSection()
448 for (mptr = dptr->disp_mode_lst; mptr; mptr = mptr->list.next) { in xf86printScreenSection()
451 if (dptr->disp_mode_lst) { in xf86printScreenSection()
454 xf86printOptionList(cf, dptr->disp_option_lst, 2); in xf86printScreenSection()