Lines Matching refs:cf
218 xf86printVideoAdaptorSection(FILE * cf, XF86ConfVideoAdaptorPtr ptr) in xf86printVideoAdaptorSection() argument
223 fprintf(cf, "Section \"VideoAdaptor\"\n"); in xf86printVideoAdaptorSection()
225 fprintf(cf, "%s", ptr->va_comment); in xf86printVideoAdaptorSection()
227 fprintf(cf, "\tIdentifier \"%s\"\n", ptr->va_identifier); in xf86printVideoAdaptorSection()
229 fprintf(cf, "\tVendorName \"%s\"\n", ptr->va_vendor); in xf86printVideoAdaptorSection()
231 fprintf(cf, "\tBoardName \"%s\"\n", ptr->va_board); in xf86printVideoAdaptorSection()
233 fprintf(cf, "\tBusID \"%s\"\n", ptr->va_busid); in xf86printVideoAdaptorSection()
235 fprintf(cf, "\tDriver \"%s\"\n", ptr->va_driver); in xf86printVideoAdaptorSection()
236 xf86printOptionList(cf, ptr->va_option_lst, 1); in xf86printVideoAdaptorSection()
238 fprintf(cf, "\tSubSection \"VideoPort\"\n"); in xf86printVideoAdaptorSection()
240 fprintf(cf, "%s", pptr->vp_comment); in xf86printVideoAdaptorSection()
242 fprintf(cf, "\t\tIdentifier \"%s\"\n", pptr->vp_identifier); in xf86printVideoAdaptorSection()
243 xf86printOptionList(cf, pptr->vp_option_lst, 2); in xf86printVideoAdaptorSection()
244 fprintf(cf, "\tEndSubSection\n"); in xf86printVideoAdaptorSection()
246 fprintf(cf, "EndSection\n\n"); in xf86printVideoAdaptorSection()