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

/vbox/src/VBox/VMM/testcase/
H A DtstSSM.cpp626 * @param ppVM Where to store Pointer to the VM.
630 static int createFakeVM(PVM *ppVM) argument
666 *ppVM = pVM;
681 *ppVM = NULL;
/vbox/src/VBox/VMM/VMMR3/
H A DVM.cpp174 * @param ppVM Where to optionally store the 'handle' of the
185 PVM *ppVM, PUVM *ppUVM)
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));
205 AssertPtrNullReturn(ppVM, VERR_INVALID_POINTER);
207 AssertReturn(ppVM || ppUVM, VERR_INVALID_PARAMETER);
266 if (ppVM)
267 *ppVM = pUVM->pVM;
182 VMR3Create(uint32_t cCpus, PCVMM2USERMETHODS pVmm2UserMethods, PFNVMATERROR pfnVMAtError, void *pvUserVM, PFNCFGMCONSTRUCTOR pfnCFGMConstructor, void *pvUserCFGM, PVM *ppVM, PUVM *ppUVM) argument
/vbox/src/VBox/VMM/VMMR0/
H A DGVMMR0.cpp737 * @param ppVM Where to store the pointer to the VM structure.
741 GVMMR0DECL(int) GVMMR0CreateVM(PSUPDRVSESSION pSession, uint32_t cCpus, PVM *ppVM) argument
747 AssertPtrReturn(ppVM, VERR_INVALID_POINTER);
748 *ppVM = NULL;
899 *ppVM = pVM;

Completed in 66 milliseconds