Searched defs:iCfg (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Devices/USB/os2/
H A DUSBProxyDevice-os2.cpp618 * @param iCfg The configuration to set.
620 static int usbProxyOs2SetConfig(PUSBPROXYDEV pProxyDev, int iCfg) argument
624 pProxyDev->pUsbIns->pszName, iCfg));
632 iCfg, /* wValue - configuration */
638 LogFlow(("usbProxyOs2SetConfig: pProxyDev=%s cfg=%#X -> rc=%d\n", pProxyDev->pUsbIns->pszName, iCfg, rc));
/vbox/src/VBox/Devices/USB/solaris/
H A DUSBProxyDevice-solaris.cpp484 * @param iCfg The configuration value to set.
486 static DECLCALLBACK(int) usbProxySolarisSetConfig(PUSBPROXYDEV pProxyDev, int iCfg) argument
488 LogFlowFunc((USBPROXY ":usbProxySolarisSetConfig: pProxyDev=%p iCfg=%#x\n", pProxyDev, iCfg));
494 SetConfigReq.bConfigValue = iCfg;
/vbox/src/VBox/Devices/USB/testcase/
H A DtstPalmOne.c216 static int set_config(int iCfg) argument
218 return doioctl(USBDEVFS_SETCONFIGURATION, &iCfg, "set_config");
H A DtstTrekStorGo.c216 static int set_config(int iCfg) argument
218 return doioctl(USBDEVFS_SETCONFIGURATION, &iCfg, "set_config");
/vbox/src/VBox/Devices/USB/freebsd/
H A DUSBProxyDevice-freebsd.cpp534 * @param iCfg The configuration to set.
536 static DECLCALLBACK(int) usbProxyFreeBSDSetConfig(PUSBPROXYDEV pProxyDev, int iCfg) argument
543 pProxyDev->pUsbIns->pszName, iCfg));
554 if (iCfg == 0)
564 if (pProxyDev->paCfgDescs[iCfgIndex].Core.bConfigurationValue == iCfg)
571 "%d not found\n", iCfg));
/vbox/src/VBox/Devices/USB/
H A DVUSBDevice.cpp93 static PCVUSBDESCCONFIGEX vusbDevFindCfgDesc(PVUSBDEV pDev, int iCfg) argument
95 if (iCfg == 0)
99 if (pDev->pDescCache->paConfigs[i].Core.bConfigurationValue == iCfg)
299 unsigned iCfg = pSetup->wValue & 0xff; local
303 Log(("vusb: error: %s: SET_CONFIGURATION - invalid request (dir) !!!\n", pDev->pUsbIns->pszName, iCfg));
318 PCVUSBDESCCONFIGEX pNewCfgDesc = vusbDevFindCfgDesc(pDev, iCfg);
321 Log(("vusb: error: %s: config %i not found !!!\n", pDev->pUsbIns->pszName, iCfg));
325 if (iCfg == 0)
336 Log(("vusb: error: %s: failed to set config %i (%Rrc) !!!\n", pDev->pUsbIns->pszName, iCfg, rc));
340 Log(("vusb: %p[%s]: SET_CONFIGURATION: Selected config %u\n", pDev, pDev->pUsbIns->pszName, iCfg));
375 uint8_t iCfg; local
[all...]
/vbox/src/VBox/Devices/USB/darwin/
H A DUSBProxyDevice-darwin.cpp1459 * @param iCfg The configuration to set.
1461 static DECLCALLBACK(int) usbProxyDarwinSetConfig(PUSBPROXYDEV pProxyDev, int iCfg) argument
1465 pProxyDev->pUsbIns->pszName, iCfg));
1467 IOReturn irc = (*pDevOsX->ppDevI)->SetConfiguration(pDevOsX->ppDevI, (uint8_t)iCfg);
/vbox/src/VBox/Devices/USB/usbip/
H A DUSBProxyDevice-usbip.cpp836 static DECLCALLBACK(int) usbProxyUsbIpSetConfig(PUSBPROXYDEV pProxyDev, int iCfg) argument
838 LogFlowFunc(("pProxyDev=%s cfg=%#x\n", pProxyDev->pUsbIns->pszName, iCfg));
845 Setup.wValue = iCfg;

Completed in 74 milliseconds