Searched defs:cbIface (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Main/src-server/solaris/
H A DNetIf-solaris.cpp65 int cbIface = strlen(pszIfaceName); local
66 const char *pszEnd = pszIfaceName + cbIface - 1;
67 for (int i = 0; i < cbIface - 1; i++)
76 strncpy(pszDevName, pszIfaceName, cbIface - cbInstance);
77 pszDevName[cbIface - cbInstance] = '\0';
335 int cbIface = strlen(szIfaceName); local
336 const char *pszEnd = pszIface + cbIface - 1;
337 for (int i = 0; i < cbIface - 1; i++)
346 strncpy(szIfaceName, pszIface, cbIface - cbInstance);
347 szIfaceName[cbIface
[all...]
H A DPerformanceSolaris.cpp335 int cbIface = strlen(pszIfaceName); local
336 const char *pszEnd = pszIfaceName + cbIface - 1;
337 for (int i = 0; i < cbIface - 1; i++)
346 strncpy(pszDevName, pszIfaceName, cbIface - cbInstance);
347 pszDevName[cbIface - cbInstance] = '\0';
/vbox/src/VBox/Devices/USB/
H A DUSBProxyDevice.cpp423 size_t cbIface; local
447 cbIface = cnt.num_if * sizeof(VUSBINTERFACE)
450 out->paIfs = (PCVUSBINTERFACE)RTMemAllocZ(cbIface);
H A DVUSBDevice.cpp1815 size_t cbIface = vusbDevMaxInterfaces(pDev) * sizeof(*pDev->paIfStates); local
1816 pDev->paIfStates = (PVUSBINTERFACESTATE)RTMemAllocZ(cbIface);
1817 AssertMsgReturn(pDev->paIfStates, ("RTMemAllocZ(%d) failed\n", cbIface), VERR_NO_MEMORY);

Completed in 69 milliseconds