Lines Matching refs:info
100 struct usb_ifc_info info;
118 info.dev_vendor = dev->idVendor;
119 info.dev_product = dev->idProduct;
120 info.dev_class = dev->bDeviceClass;
121 info.dev_subclass = dev->bDeviceSubClass;
122 info.dev_protocol = dev->bDeviceProtocol;
123 info.writable = writable;
126 info.serial_number[0] = 0;
147 info.serial_number[i - 1] = buffer[i];
148 info.serial_number[i - 1] = 0;
161 info.ifc_class = ifc->bInterfaceClass;
162 info.ifc_subclass = ifc->bInterfaceSubClass;
163 info.ifc_protocol = ifc->bInterfaceProtocol;
182 info.has_bulk_in = (in != -1);
183 info.has_bulk_out = (out != -1);
185 if(callback(&info) == 0) {