Lines Matching refs:Setup
214 /** Setup data for a control URB. */
215 VUSBSETUP Setup;
239 /** Setup data for a control URB. */
240 VUSBSETUP Setup;
698 memcpy(&ReqSubmit.Setup, pSetup, sizeof(ReqSubmit.Setup));
740 /* Setup wakeup pipe and poll set first. */
841 VUSBSETUP Setup;
843 Setup.bmRequestType = 0;
844 Setup.bRequest = 0x09;
845 Setup.wValue = iCfg;
846 Setup.wIndex = 0;
847 Setup.wLength = 0;
848 return usbProxyUsbIpCtrlUrbExchangeSync(pDev, &Setup);
868 VUSBSETUP Setup;
870 Setup.bmRequestType = 0x1;
871 Setup.bRequest = 0x11; /* SET_INTERFACE */
872 Setup.wValue = setting;
873 Setup.wIndex = ifnum;
874 Setup.wLength = 0;
875 return usbProxyUsbIpCtrlUrbExchangeSync(pDev, &Setup);
883 VUSBSETUP Setup;
885 Setup.bmRequestType = 0x2;
886 Setup.bRequest = 0x01; /* CLEAR_FEATURE */
887 Setup.wValue = 0x00; /* ENDPOINT_HALT */
888 Setup.wIndex = iEp;
889 Setup.wLength = 0;
890 return usbProxyUsbIpCtrlUrbExchangeSync(pDev, &Setup);
924 memcpy(&ReqSubmit.Setup, &pUrb->abData, sizeof(ReqSubmit.Setup));