Searched refs:uCpuExecutionCap (Results 1 - 6 of 6) sorted by relevance

/vbox/include/VBox/vmm/
H A Dvmapi.h488 VMMR3DECL(int) VMR3SetCpuExecutionCap(PUVM pUVM, uint32_t uCpuExecutionCap);
H A Dvm.h855 uint32_t uCpuExecutionCap; member in struct:VM
/vbox/src/VBox/VMM/VMMR3/
H A DVM.cpp616 AssertRelease(pVM->uCpuExecutionCap == 100);
832 rc = CFGMR3QueryU32Def(pRoot, "CpuExecutionCap", &pVM->uCpuExecutionCap, 100);
4469 * @param uCpuExecutionCap New CPU execution cap in precent, 1-100. Where
4472 VMMR3DECL(int) VMR3SetCpuExecutionCap(PUVM pUVM, uint32_t uCpuExecutionCap)
4477 AssertReturn(uCpuExecutionCap > 0 && uCpuExecutionCap <= 100, VERR_INVALID_PARAMETER);
4479 Log(("VMR3SetCpuExecutionCap: new priority = %d\n", uCpuExecutionCap));
4481 pVM->uCpuExecutionCap = uCpuExecutionCap;
H A DEM.cpp2074 if ( pVM->uCpuExecutionCap != 100
2087 Log2(("emR3IsExecutionAllowed: start=%RX64 startexec=%RX64 exec=%RX64 (cap=%x)\n", pVCpu->em.s.u64TimeSliceStart, pVCpu->em.s.u64TimeSliceStartExec, pVCpu->em.s.u64TimeSliceExec, (EM_TIME_SLICE * pVM->uCpuExecutionCap) / 100));
2088 if (pVCpu->em.s.u64TimeSliceExec >= (EM_TIME_SLICE * pVM->uCpuExecutionCap) / 100)
/vbox/src/VBox/VMM/VMMR0/
H A DGVMMR0.cpp834 pVM->uCpuExecutionCap = 100; /* default is no cap. */
/vbox/src/VBox/VMM/testcase/
H A DtstVMStruct.h1330 GEN_CHECK_OFF(VM, uCpuExecutionCap);

Completed in 90 milliseconds