Lines Matching refs:ctrl
236 struct usb_in_usb_ctrl_setup ctrl;
253 memset (&ctrl, 0, sizeof (ctrl));
254 ctrl.bRequestType = 0xc0;
255 ctrl.bRequest = request;
256 ctrl.wValue = htons (value);
257 ctrl.wIndex = htons (index);
258 ctrl.wLength = htole16 (size);
264 sizeof (ctrl), (unsigned char *) &ctrl);
323 memset (&ctrl, 0, sizeof (ctrl));
324 ctrl.bRequestType = 0x40;
325 ctrl.bRequest = request;
326 ctrl.wValue = htons (value);
327 ctrl.wIndex = htons (index);
328 ctrl.wLength = htole16 (size);
334 sizeof (ctrl), (unsigned char *) &ctrl);
649 struct usb_in_usb_bulk_setup ctrl;
732 memset (&ctrl, 0, sizeof (ctrl));
733 ctrl.bRequestType = 0x00;
734 ctrl.bEndpoint = 0x82;
735 ctrl.wLength = htons (next_pages);
742 sizeof (ctrl),
743 (unsigned char *) &ctrl);
880 struct usb_in_usb_bulk_setup ctrl;
924 memset (&ctrl, 0, sizeof (ctrl));
925 ctrl.bRequestType = 0x01;
926 ctrl.bEndpoint = 0x82;
927 ctrl.wLength = htons (next_portion);
932 sizeof (ctrl), (unsigned char *) &ctrl);