Lines Matching defs:pUVM

607 HRESULT Console::i_attachRawPCIDevices(PUVM pUVM, BusAssignmentManager *pBusMgr, PCFGMNODE pDevices)
632 return VMR3SetError(pUVM, VERR_NOT_FOUND, RT_SRC_POS,
776 * @param pUVM The user mode VM handle.
783 DECLCALLBACK(int) Console::i_configConstructor(PUVM pUVM, PVM pVM, void *pvConsole)
800 pConsole->mpUVM = pUVM;
801 VMR3RetainUVM(pUVM);
805 vrc = pConsole->i_configConstructorInner(pUVM, pVM, &alock);
814 VMR3ReleaseUVM(pUVM);
970 * @param pUVM The user mode VM handle.
976 int Console::i_configConstructorInner(PUVM pUVM, PVM pVM, AutoWriteLock *pAlock)
1063 PCFGMNODE pRoot = CFGMR3GetRootU(pUVM);
1360 return VMR3SetError(pUVM, VERR_INVALID_PARAMETER, RT_SRC_POS, N_("Invalid paravirt. provider '%d'"),
1440 return VMR3SetError(pUVM, VERR_CFGM_NO_NODE, RT_SRC_POS,
1554 hrc = i_attachRawPCIDevices(pUVM, pBusMgr, pDevices); H();
1723 return VMR3SetError(pUVM, VERR_INVALID_PARAMETER, RT_SRC_POS,
1792 return VMR3SetError(pUVM, VERR_INVALID_PARAMETER, RT_SRC_POS,
1968 return VMR3SetError(pUVM, VERR_NOT_FOUND, RT_SRC_POS,
2017 return VMR3SetError(pUVM, VERR_NOT_FOUND, RT_SRC_POS,
2350 return VMR3SetError(pUVM, VERR_NOT_FOUND, RT_SRC_POS,
2389 pUVM,
2454 return VMR3SetError(pUVM, VERR_INVALID_PARAMETER, RT_SRC_POS,
3054 return VMR3SetError(pUVM, VERR_NOT_AVAILABLE, RT_SRC_POS,
3100 rc = i_configGuestProperties(this, pUVM);
3279 int rc2 = VMR3AtStateRegister(pUVM, Console::i_vmstateChangeCallback, this);
3287 rc2 = VMR3AtRuntimeErrorRegister(pUVM, Console::i_setVMRuntimeErrorCallback, this);
3721 PUVM pUVM,
3753 pCtlInst = CFGMR3GetChildF(CFGMR3GetRootU(pUVM), "Devices/%s/%u/", pcszDevice, uInstance);
3758 pCtlInst = CFGMR3GetChildF(CFGMR3GetRootU(pUVM), "USB/%s/", pcszDevice, uInstance);
3760 pCtlInst = CFGMR3CreateTree(pUVM);
3815 rc = PDMR3UsbQueryLun(pUVM, pcszDevice, uInstance, uLUN, &pBase);
3817 rc = PDMR3QueryLun(pUVM, pcszDevice, uInstance, uLUN, &pBase);
3840 rc = PDMR3UsbDriverDetach(pUVM, pcszDevice, uInstance, uLUN, NULL, 0,
3843 rc = PDMR3DeviceDetach(pUVM, pcszDevice, uInstance, uLUN, fHotplug ? 0 : PDM_TACH_FLAGS_NOT_HOT_PLUG);
4145 rc = PDMR3UsbCreateEmulatedDevice(pUVM, pcszDevice, pCtlInst, &UsbMsd.mUuid, NULL);
4150 rc = PDMR3UsbDriverAttach(pUVM, pcszDevice, uInstance, uLUN,
4154 rc = PDMR3DeviceAttach(pUVM, pcszDevice, uInstance, uLUN,
4163 rc = PDMR3QueryDriverOnLun(pUVM, pcszDevice, uInstance, uLUN, "VD", &pIBase);
5723 /* static */ int Console::i_configGuestProperties(void *pvConsole, PUVM pUVM)
5755 DBGFR3InfoRegisterExternal(pUVM, "guestprops", "Display the guest properties", pfnHandler, pService);