Lines Matching defs:info
278 struct usb_ifc_info info;
302 info.dev_vendor = device_desc.idVendor;
303 info.dev_product = device_desc.idProduct;
304 info.dev_class = device_desc.bDeviceClass;
305 info.dev_subclass = device_desc.bDeviceSubClass;
306 info.dev_protocol = device_desc.bDeviceProtocol;
307 info.ifc_class = interf_desc.bInterfaceClass;
308 info.ifc_subclass = interf_desc.bInterfaceSubClass;
309 info.ifc_protocol = interf_desc.bInterfaceProtocol;
310 info.writable = 1;
313 unsigned long serial_number_len = sizeof(info.serial_number);
314 if (!AdbGetSerialNumber(handle->adb_interface, info.serial_number,
316 info.serial_number[0] = 0;
319 info.device_path[0] = 0;
321 if (callback(&info) == 0) {