Searched refs:venShort (Results 1 - 4 of 4) sorted by relevance

/haiku-fatelf/src/apps/devices/
H A DDevicePCI.cpp79 const char *venShort; local
81 get_vendor_info(fVendorId, &venShort, &venFull);
82 if (!venShort && !venFull) {
84 } else if (venShort && venFull) {
85 ManufacturerName << venFull << "(" << venShort << ")"; local
87 ManufacturerName << (venShort ? venShort : venFull);
/haiku-fatelf/headers/private/shared/
H A Dpci-utils.h40 get_vendor_info(uint16 vendorID, const char **venShort, const char **venFull) argument
47 *venShort = PciVenTable[i].VenShort[0] ? PciVenTable[i].VenShort : NULL;
50 *venShort = PciVenTable[i].VenShort && PciVenTable[i].VenShort[0] ? PciVenTable[i].VenShort : NULL;
56 *venShort = NULL;
/haiku-fatelf/src/add-ons/kernel/bus_managers/pci/
H A Dpci_info.cpp195 const char *venShort; local
197 get_vendor_info(info->vendor_id, &venShort, &venFull);
198 if (!venShort && !venFull) {
200 } else if (venShort && venFull) {
201 TRACE(("PCI: vendor %04x: %s - %s\n", info->vendor_id, venShort, venFull));
203 TRACE(("PCI: vendor %04x: %s\n", info->vendor_id, venShort ? venShort : venFull));
/haiku-fatelf/src/bin/listdev/
H A Dlistdev.c176 const char *venShort; local
259 get_vendor_info(pci_vendor_id, &venShort, &venFull);
260 if (!venShort && !venFull) {
262 } else if (venShort && venFull) {
264 venShort, venFull);
267 venShort ? venShort : venFull);

Completed in 99 milliseconds