Home | History | Annotate | Download | only in multimedia

Lines Matching refs:product_name

308     def _find_usb_device_bus_id(self, product_name):
311 @param product_name: The product name of the USB device as it appears
327 return read_product_name == product_name
346 'Bus ID of %s found: %s', product_name, bus_id)
349 logging.error('Bus ID of %s not found', product_name)
353 def has_found_device(self, product_name):
356 @param product_name: The product name of the USB device as it appears
362 return self._device_product_name == product_name
365 def find_usb_device(self, product_name):
368 @param product_name: The product name of the USB device as it appears
375 device_bus_id = self._find_usb_device_bus_id(product_name)
378 raise USBDeviceDriversManagerError(error_message % product_name)
380 self._device_product_name = product_name