HomeSort by relevance Sort by last modified time
    Searched defs:id_product (Results 1 - 4 of 4) sorted by null

  /external/webrtc/talk/media/devices/
macdeviceinfo.cc 43 std::string id_product = device.id.substr(pid_location, id_size); local
48 usb_id->append(id_product);
win32deviceinfo.cc 49 std::string id_product = device.id.substr(pid_location + sizeof(pid) -1, local
54 usb_id->append(id_product);
linuxdeviceinfo.cc 156 std::string id_product; local
160 if (!GetUsbProperty(device, "idProduct", &id_product)) {
166 usb_id->append(id_product);
  /external/autotest/client/cros/cellular/mbim_compliance/
mbim_device_context.py 25 def __init__(self, id_vendor=None, id_product=None):
30 @param id_product: Specific product ID for the modem to be tested.
34 self._device = self._find_device(id_vendor, id_product)
88 def _find_device(self, id_vendor, id_product):
93 @param id_product: Specific product ID for the modem to be tested.
99 if id_vendor is not None and id_product is not None:
100 device = core.find(idVendor=id_vendor, idProduct=id_product)
105 id_vendor, id_product))
190 def id_product(self): member in class:MbimDeviceContext

Completed in 694 milliseconds