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

/vbox/src/VBox/VMM/VMMR3/
H A DTM.cpp177 static DECLCALLBACK(int) tmR3SetWarpDrive(PUVM pUVM, uint32_t u32Percent);
2830 * @param u32Percent The new percentage. 100 means normal operation.
2832 VMMDECL(int) TMR3SetWarpDrive(PUVM pUVM, uint32_t u32Percent) argument
2834 return VMR3ReqPriorityCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)tmR3SetWarpDrive, 2, pUVM, u32Percent);
2843 * @param u32Percent See TMR3SetWarpDrive().
2846 static DECLCALLBACK(int) tmR3SetWarpDrive(PUVM pUVM, uint32_t u32Percent) argument
2855 AssertMsgReturn(u32Percent >= 2 && u32Percent <= 20000,
2856 ("%RX32 is not between 2 and 20000 (inclusive).\n", u32Percent),
2872 pVM->tm.s.u32VirtualWarpDrivePercentage = u32Percent;
[all...]

Completed in 77 milliseconds