Searched defs:idCpuCore (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceCpuHotPlug.cpp234 * @param idCpuCore The core ID of the CPU.
237 static int VBoxServiceCpuHotPlugGetACPIDevicePath(char **ppszPath, uint32_t idCpuCore, uint32_t idCpuPackage) argument
311 if ( idCore == idCpuCore
402 * @param idCpuCore The CPU core ID.
405 static void VBoxServiceCpuHotPlugHandlePlugEvent(uint32_t idCpuCore, uint32_t idCpuPackage) argument
428 /** @todo r-bird: This code is bringing all CPUs online; the idCpuCore and
458 VBoxServiceVerbose(1, "CpuHotPlug: CPU %u/%u was brought online\n", idCpuPackage, idCpuCore);
488 * @param idCpuCore The CPU core ID.
491 static void VBoxServiceCpuHotPlugHandleUnplugEvent(uint32_t idCpuCore, uint32_t idCpuPackage) argument
495 int rc = VBoxServiceCpuHotPlugGetACPIDevicePath(&pszCpuDevicePath, idCpuCore, idCpuPackag
545 uint32_t idCpuCore; local
[all...]
/vbox/src/VBox/Devices/VMMDev/
H A DVMMDevState.h309 uint32_t idCpuCore; member in struct:VMMDevState
H A DVMMDev.cpp2130 pReq->idCpuCore = pThis->idCpuCore;
2135 pThis->idCpuCore = UINT32_MAX;
3298 static DECLCALLBACK(int) vmmdevIPort_CpuHotUnplug(PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage) argument
3303 Log(("vmmdevIPort_CpuHotUnplug: idCpuCore=%u idCpuPackage=%u\n", idCpuCore, idCpuPackage));
3310 pThis->idCpuCore = idCpuCore;
3324 static DECLCALLBACK(int) vmmdevIPort_CpuHotPlug(PPDMIVMMDEVPORT pInterface, uint32_t idCpuCore, uint32_t idCpuPackage) argument
3329 Log(("vmmdevCpuPlug: idCpuCore
[all...]
/vbox/include/VBox/
H A DVMMDev.h1360 uint32_t idCpuCore; member in struct:__anon179
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl.cpp2315 uint32_t idCpuCore, idCpuPackage; local
2316 vrc = VMR3GetCpuCoreAndPackageIdFromCpuId(pUVM, aCpu, &idCpuCore, &idCpuPackage); AssertRC(vrc);
2318 vrc = pVmmDevPort->pfnCpuHotUnplug(pVmmDevPort, idCpuCore, idCpuPackage);
2473 uint32_t idCpuCore, idCpuPackage; local
2474 vrc = VMR3GetCpuCoreAndPackageIdFromCpuId(pUVM, aCpu, &idCpuCore, &idCpuPackage); AssertRC(vrc);
2476 vrc = pDevPort->pfnCpuHotPlug(pDevPort, idCpuCore, idCpuPackage);

Completed in 68 milliseconds