Home | History | Annotate | Download | only in src

Lines Matching full:device_entry

629     retdevs[i].device_entry.vendor = NULL;
630 retdevs[i].device_entry.vendor_id = dev->libusb_device->descriptor.idVendor;
631 retdevs[i].device_entry.product = NULL;
632 retdevs[i].device_entry.product_id = dev->libusb_device->descriptor.idProduct;
633 retdevs[i].device_entry.device_flags = 0x00000000U;
639 retdevs[i].device_entry.vendor = mtp_device_table[j].vendor;
640 retdevs[i].device_entry.product = mtp_device_table[j].product;
641 retdevs[i].device_entry.device_flags = mtp_device_table[j].device_flags;
645 retdevs[i].device_entry.device_flags |= DEVICE_FLAG_BROKEN_MTPGETOBJPROPLIST|
720 printf(" Vendor: %s\n", ptp_usb->rawdevice.device_entry.vendor);
721 printf(" Vendor id: 0x%04x\n", ptp_usb->rawdevice.device_entry.vendor_id);
722 printf(" Product: %s\n", ptp_usb->rawdevice.device_entry.product);
723 printf(" Vendor id: 0x%04x\n", ptp_usb->rawdevice.device_entry.product_id);
724 printf(" Device flags: 0x%08x\n", ptp_usb->rawdevice.device_entry.device_flags);
1799 dev->descriptor.idVendor == device->device_entry.vendor_id &&
1800 dev->descriptor.idProduct == device->device_entry.product_id ) {