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

/vbox/src/VBox/Main/src-client/
H A DSessionImpl.cpp623 HRESULT Session::onCPUChange(ULONG aCpu, BOOL aAdd) argument
633 return mConsole->i_onCPUChange(aCpu, aAdd);
H A DConsoleImpl.cpp2272 HRESULT Console::i_doCPURemove(ULONG aCpu, PUVM pUVM) argument
2296 rc = mMachine->GetCPUStatus(aCpu, &fCpuAttached);
2300 return setError(E_FAIL, tr("CPU %d is not attached"), aCpu);
2308 int vrc = PDMR3QueryDeviceLun(pUVM, "acpi", 0, aCpu, &pBase);
2316 vrc = VMR3GetCpuCoreAndPackageIdFromCpuId(pUVM, aCpu, &idCpuCore, &idCpuPackage); AssertRC(vrc);
2325 vrc = pApicPort ? pApicPort->pfnGetCpuStatus(pApicPort, aCpu, &fLocked) : VERR_INVALID_POINTER;
2336 vrc = pApicPort ? pApicPort->pfnGetCpuStatus(pApicPort, aCpu, &fLocked) : VERR_INVALID_POINTER;
2350 this, pUVM, (VMCPUID)aCpu);
2365 vrc = VMR3HotUnplugCpu(pUVM, aCpu);
2418 HRESULT Console::i_doCPUAdd(ULONG aCpu, PUV argument
[all...]
/vbox/src/VBox/Main/src-server/
H A DMachineImpl.cpp6534 HRESULT Machine::hotPlugCPU(ULONG aCpu) argument
6542 if (aCpu >= mHWData->mCPUCount)
6545 if (mHWData->mCPUAttached[aCpu])
6546 return setError(VBOX_E_OBJECT_IN_USE, tr("CPU %lu is already attached"), aCpu);
6549 rc = i_onCPUChange(aCpu, false);
6555 mHWData->mCPUAttached[aCpu] = true;
6564 HRESULT Machine::hotUnplugCPU(ULONG aCpu) argument
6573 if (aCpu >= SchemaDefs::MaxCPUCount)
6578 if (!mHWData->mCPUAttached[aCpu])
6579 return setError(VBOX_E_OBJECT_NOT_FOUND, tr("CPU %lu is not attached"), aCpu);
6601 getCPUStatus(ULONG aCpu, BOOL *aAttached) argument
[all...]

Completed in 79 milliseconds