Searched defs:szInstance (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DPDMDevice.cpp224 char szInstance[32]; local
225 rc = CFGMR3GetName(pInstanceNode, szInstance, sizeof(szInstance));
228 rc = RTStrToUInt32Ex(szInstance, &pszNext, 0, &paDevs[i].iInstance);
229 AssertMsgRCReturn(rc, ("Configuration error: RTStrToInt32Ex failed on the instance name '%s'! rc=%Rrc\n", szInstance, rc), rc);
230 AssertMsgReturn(!*pszNext, ("Configuration error: the instance name '%s' isn't all digits. (%s)\n", szInstance, pszNext), VERR_INVALID_PARAMETER);
H A DPDMUsb.cpp810 char szInstance[32]; local
811 rc = CFGMR3GetName(pInstanceNode, szInstance, sizeof(szInstance));
814 rc = RTStrToUInt32Ex(szInstance, &pszNext, 0, &paUsbDevs[i].iInstance);
815 AssertMsgRCReturn(rc, ("Configuration error: RTStrToInt32Ex failed on the instance name '%s'! rc=%Rrc\n", szInstance, rc), rc);
816 AssertMsgReturn(!*pszNext, ("Configuration error: the instance name '%s' isn't all digits. (%s)\n", szInstance, pszNext), VERR_INVALID_PARAMETER);
/vbox/src/VBox/Devices/VirtIO/
H A DVirtio.h167 char szInstance[8]; /**< Instance name, e.g. VNet#1. */ member in struct:VPCIState_st

Completed in 51 milliseconds