Home | History | Annotate | Download | only in fastboot

Lines Matching full: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;
148 info.serial_number[i - 1] = buffer[i];
149 info.serial_number[i - 1] = 0;
162 info.ifc_class = ifc->bInterfaceClass;
163 info.ifc_subclass = ifc->bInterfaceSubClass;
164 info.ifc_protocol = ifc->bInterfaceProtocol;
183 info.has_bulk_in = (in != -1);
184 info.has_bulk_out = (out != -1);
186 if(callback(&info) == 0) {