Lines Matching refs:driverNames
111 const char **driverNames; member
1338 !ds->driverNames[driver_id]) in DRI2Connect()
1341 *driverName = ds->driverNames[driver_id]; in DRI2Connect()
1608 ds->driverNames = xallocarray(ds->numDrivers, sizeof(*ds->driverNames)); in DRI2ScreenInit()
1609 if (!ds->driverNames) in DRI2ScreenInit()
1613 ds->driverNames[0] = info->driverName; in DRI2ScreenInit()
1616 ds->driverNames[0] = ds->driverNames[1] = ds->driverName; in DRI2ScreenInit()
1617 if (!ds->driverNames[0]) in DRI2ScreenInit()
1623 ds->driverNames = xallocarray(info->numDrivers, sizeof(*ds->driverNames)); in DRI2ScreenInit()
1624 if (!ds->driverNames) in DRI2ScreenInit()
1626 memcpy(ds->driverNames, info->driverNames, in DRI2ScreenInit()
1627 info->numDrivers * sizeof(*ds->driverNames)); in DRI2ScreenInit()
1640 if (i < ds->numDrivers && ds->driverNames[i]) { in DRI2ScreenInit()
1642 driverTypeNames[i], ds->driverNames[i]); in DRI2ScreenInit()
1666 free(ds->driverNames); in DRI2CloseScreen()