Searched defs:pfnCFGMConstructor (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DVM.cpp104 static int vmR3CreateU(PUVM pUVM, uint32_t cCpus, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM);
171 * @param pfnCFGMConstructor Pointer to callback function for constructing the VM configuration tree.
173 * @param pvUserCFGM The user argument passed to pfnCFGMConstructor.
184 PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM,
187 LogFlow(("VMR3Create: cCpus=%RU32 pVmm2UserMethods=%p pfnVMAtError=%p pvUserVM=%p pfnCFGMConstructor=%p pvUserCFGM=%p ppVM=%p ppUVM=%p\n",
188 cCpus, pVmm2UserMethods, pfnVMAtError, pvUserVM, pfnCFGMConstructor, pvUserCFGM, ppVM, ppUVM));
204 AssertPtrNullReturn(pfnCFGMConstructor, VERR_INVALID_POINTER);
256 (PFNRT)vmR3CreateU, 4, pUVM, cCpus, pfnCFGMConstructor, pvUserCFGM);
583 static int vmR3CreateU(PUVM pUVM, uint32_t cCpus, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM) argument
645 rc = CFGMR3Init(pVM, pfnCFGMConstructor, pvUserCFG
182 VMR3Create(uint32_t cCpus, PCVMM2USERMETHODS pVmm2UserMethods, PFNVMATERROR pfnVMAtError, void *pvUserVM, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM, PVM *ppVM, PUVM *ppUVM) argument
[all...]
H A DCFGM.cpp26 * via the pfnCFGMConstructor parameter. To make testcase writing a bit simpler,
179 * @param pfnCFGMConstructor Pointer to callback function for constructing the VM configuration tree.
181 * @param pvUser The user argument passed to pfnCFGMConstructor.
185 VMMR3DECL(int) CFGMR3Init(PVM pVM, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUser) argument
187 LogFlow(("CFGMR3Init: pfnCFGMConstructor=%p pvUser=%p\n", pfnCFGMConstructor, pvUser));
214 if (pfnCFGMConstructor)
215 rc = pfnCFGMConstructor(pVM->pUVM, pVM, pvUser);
224 AssertMsgFailed(("Constructor failed with rc=%Rrc pfnCFGMConstructor=%p\n", rc, pfnCFGMConstructor));
[all...]

Completed in 50 milliseconds