HomeSort by relevance Sort by last modified time
    Searched refs:vendor_id (Results 1 - 25 of 190) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/chrome/common/extensions/permissions/
usb_device_permission.h 20 CheckParam(uint16 vendor_id, uint16 product_id, int interface_id)
21 : vendor_id(vendor_id),
24 const uint16 vendor_id; member in struct:extensions::UsbDevicePermission::CheckParam
usb_device_permission_data.h 34 UsbDevicePermissionData(uint16 vendor_id,
51 const uint16& vendor_id() const { return vendor_id_; } function in class:extensions::UsbDevicePermissionData
56 uint16& vendor_id() { return vendor_id_; } function in class:extensions::UsbDevicePermissionData
usb_device_permission.cc 41 const char* vendor = device::UsbIds::GetVendorName(i->vendor_id());
45 device::UsbIds::GetProductName(i->vendor_id(), i->product_id());
  /external/chromium_org/device/usb/
usb_ids.h 30 // Gets the name of the vendor who owns |vendor_id|. Returns NULL if the
31 // specified |vendor_id| does not exist.
32 static const char* GetVendorName(uint16_t vendor_id);
35 // |vendor_id| refers to a vendor that does not exist, or |vendor_id| is valid
38 static const char* GetProductName(uint16_t vendor_id, uint16_t product_id);
44 // Finds the static UsbVendor associated with |vendor_id|. Returns NULL if no
46 static const UsbVendor* FindVendor(uint16_t vendor_id);
usb_ids.cc 29 const UsbVendor* UsbIds::FindVendor(uint16_t vendor_id) {
30 const UsbVendor key = {vendor_id, NULL, 0, NULL};
38 const char* UsbIds::GetVendorName(uint16_t vendor_id) {
39 const UsbVendor* vendor = FindVendor(vendor_id);
45 const char* UsbIds::GetProductName(uint16_t vendor_id, uint16_t product_id) {
46 const UsbVendor* vendor = FindVendor(vendor_id);
  /external/chromium_org/gpu/config/
gpu_info_collector_ozone.cc 15 GpuIDResult CollectGpuID(uint32* vendor_id, uint32* device_id) {
16 DCHECK(vendor_id && device_id);
17 *vendor_id = 0;
gpu_info.cc 10 : vendor_id(0),
gpu_info_collector_x11.cc 132 gpu.vendor_id = device->vendor_id;
142 if (gpu_info->gpu.vendor_id == kVendorIDIntel &&
143 gpu.vendor_id != kVendorIDIntel) {
154 gpu_info->secondary_gpus[0].vendor_id == kVendorIDIntel) {
155 if (gpu_info->gpu.vendor_id == kVendorIDNVidia)
157 if (gpu_info->gpu.vendor_id == kVendorIDAMD)
192 GpuIDResult CollectGpuID(uint32* vendor_id, uint32* device_id) {
193 DCHECK(vendor_id && device_id);
194 *vendor_id = 0
    [all...]
  /external/chromium_org/third_party/libva/va/android/
drmtest.h 38 int drm_open_any(int *vendor_id, int *device_id);
40 int drm_open_matching(const char *pci_glob, int flags, int *vendor_id, int *device_id);
  /external/chromium_org/third_party/mesa/src/src/gbm/backends/dri/
driver_name.c 45 int vendor_id, chip_id, i, j; local
60 sscanf(pci_id, "%x:%x", &vendor_id, &chip_id) != 2) {
66 if (vendor_id != driver_map[i].vendor_id)
71 fd, vendor_id, chip_id, driver);
79 fd, vendor_id, chip_id, driver);
  /external/mesa3d/src/gbm/backends/dri/
driver_name.c 45 int vendor_id, chip_id, i, j; local
60 sscanf(pci_id, "%x:%x", &vendor_id, &chip_id) != 2) {
66 if (vendor_id != driver_map[i].vendor_id)
71 fd, vendor_id, chip_id, driver);
79 fd, vendor_id, chip_id, driver);
  /external/libmtp/examples/
hotplug.c 124 // printf("SYSFS{idVendor}==\"%04x\", SYSFS{idProduct}==\"%04x\", %s\n", entry->vendor_id, entry->product_id, action);
126 printf("ATTR{idVendor}==\"%04x\", ATTR{idProduct}==\"%04x\", %s\n", entry->vendor_id, entry->product_id, action);
131 printf("libmtp.sh 0x0003 0x%04x 0x%04x 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000\n", entry->vendor_id, entry->product_id);
135 printf(" <match key=\"usb.vendor_id\" int=\"0x%04x\">\n", entry->vendor_id);
157 if (entry->vendor_id == 0x4102 || // iriver
158 entry->vendor_id == 0x066f || // TrekStor
159 entry->vendor_id == 0x1703) { // NormSoft, Inc.
169 if (last_vendor != entry->vendor_id) {
170 printf("%04x\n", entry->vendor_id);
    [all...]
  /external/chromium_org/content/browser/gpu/
gpu_info_browsertest.cc 31 std::string vendor_id = base::StringPrintf( variable
32 "0x%04x", gpu_info.gpu.vendor_id);
35 LOG(INFO) << "GPU[0]: vendor_id = " << vendor_id
39 vendor_id = base::StringPrintf("0x%04x", gpu.vendor_id);
42 << "]: vendor_id = " << vendor_id
  /external/libvpx/libvpx/vpx_ports/
x86_cpuid.c 16 vpx_cpu_t vendor_id; member in struct:cpuid_vendors
45 return (cpuid_vendor_list[i].vendor_id);
  /external/chromium_org/chrome/browser/usb/
usb_service.h 38 // |vendor_id| and |product_id|, inserting them into |devices|. Clears
43 const uint16 vendor_id,
60 // Return true if |device|'s vendor and product identifiers match |vendor_id|
63 const uint16 vendor_id,
69 const uint16 vendor_id,
79 const uint16 vendor_id,
usb_device.h 29 uint16 vendor_id() const { return vendor_id_; } function in class:UsbDevice
54 uint16 vendor_id,
usb_service.cc 86 const uint16 vendor_id,
108 vendor_id,
113 vendor_id,
117 FindDevicesImpl(vendor_id, product_id, callback, true);
120 FindDevicesImpl(vendor_id, product_id, callback, true);
136 const uint16 vendor_id,
145 vendor_id,
152 const uint16 vendor_id,
171 if (DeviceMatches(it->second, vendor_id, product_id))
224 const uint16 vendor_id,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
common.c 98 int vendor_id, chip_id, i, j; local
113 sscanf(pci_id, "%x:%x", &vendor_id, &chip_id) != 2) {
119 if (vendor_id != driver_map[i].vendor_id)
124 fd, vendor_id, chip_id, driver);
132 fd, vendor_id, chip_id, driver);
  /external/mesa3d/src/egl/drivers/dri2/
common.c 98 int vendor_id, chip_id, i, j; local
113 sscanf(pci_id, "%x:%x", &vendor_id, &chip_id) != 2) {
119 if (vendor_id != driver_map[i].vendor_id)
124 fd, vendor_id, chip_id, driver);
132 fd, vendor_id, chip_id, driver);
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/egl-static/
egl.c 67 drm_fd_get_pci_id(int fd, int *vendor_id, int *chip_id)
97 sscanf(pci_id, "%x:%x", vendor_id, chip_id) != 2) {
123 drm_fd_get_pci_id(int fd, int *vendor_id, int *chip_id)
144 *vendor_id = 0x8086;
159 *vendor_id = 0x1002;
171 *vendor_id = 0x10de;
176 *vendor_id = 0x15ad;
189 drm_fd_get_pci_id(int fd, int *vendor_id, int *chip_id)
199 int vendor_id, chip_id; local
202 if (!drm_fd_get_pci_id(fd, &vendor_id, &chip_id))
    [all...]
  /external/mesa3d/src/gallium/targets/egl-static/
egl.c 67 drm_fd_get_pci_id(int fd, int *vendor_id, int *chip_id)
97 sscanf(pci_id, "%x:%x", vendor_id, chip_id) != 2) {
123 drm_fd_get_pci_id(int fd, int *vendor_id, int *chip_id)
144 *vendor_id = 0x8086;
159 *vendor_id = 0x1002;
171 *vendor_id = 0x10de;
176 *vendor_id = 0x15ad;
189 drm_fd_get_pci_id(int fd, int *vendor_id, int *chip_id)
199 int vendor_id, chip_id; local
202 if (!drm_fd_get_pci_id(fd, &vendor_id, &chip_id))
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
systeminfo.h 72 GpuInfo() : vendor_id(0), device_id(0) {}
75 int vendor_id; member in struct:talk_base::SystemInfo::GpuInfo
  /external/chromium_org/chromeos/dbus/
permission_broker_client.h 51 // to the system that match |vendor_id| and |product_id|. If |interface_id| is
57 virtual void RequestUsbAccess(uint16_t vendor_id,
  /external/chromium_org/third_party/libusb/src/libusb/
hotplug.h 39 int vendor_id; member in struct:libusb_hotplug_callback
hotplug.c 155 if (LIBUSB_HOTPLUG_MATCH_ANY != hotplug_cb->vendor_id &&
156 hotplug_cb->vendor_id != dev->device_descriptor.idVendor) {
211 int vendor_id, int product_id, int dev_class,
224 if ((LIBUSB_HOTPLUG_MATCH_ANY != vendor_id && (~0xffff & vendor_id)) ||
239 new_callback->vendor_id = vendor_id;

Completed in 539 milliseconds

1 2 3 4 5 6 7 8