Lines Matching refs:pSetup
1458 static int class_handler(struct usb_setup_packet *pSetup, in class_handler() argument
1465 pSetup->bRequest, pSetup->wIndex); in class_handler()
1479 if_descr->bInterfaceNumber == (pSetup->wIndex & 0xFF)) { in class_handler()
1480 return iface->class_handler(pSetup, len, data); in class_handler()
1487 static int custom_handler(struct usb_setup_packet *pSetup, in custom_handler() argument
1494 pSetup->bRequest, pSetup->wIndex); in custom_handler()
1511 if (if_descr->bInterfaceNumber == (pSetup->wIndex & 0xFF)) { in custom_handler()
1512 return iface->custom_handler(pSetup, len, data); in custom_handler()
1522 (void)iface->custom_handler(pSetup, len, data); in custom_handler()
1530 static int vendor_handler(struct usb_setup_packet *pSetup, in vendor_handler() argument
1536 pSetup->bRequest, pSetup->wIndex); in vendor_handler()
1539 if (!usb_handle_os_desc_feature(pSetup, len, data)) { in vendor_handler()
1547 if (!iface->vendor_handler(pSetup, len, data)) { in vendor_handler()