Searched refs:phTimerLR (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Runtime/generic/
H A DRTTimerLRCreate-generic.cpp38 RTDECL(int) RTTimerLRCreate(PRTTIMERLR phTimerLR, uint32_t uMilliesInterval, PFNRTTIMERLR pfnTimer, void *pvUser) argument
40 int rc = RTTimerLRCreateEx(phTimerLR, uMilliesInterval * UINT64_C(1000000), 0, pfnTimer, pvUser);
43 rc = RTTimerLRStart(*phTimerLR, 0);
46 int rc2 = RTTimerLRDestroy(*phTimerLR); AssertRC(rc2);
47 *phTimerLR = NIL_RTTIMERLR;
H A Dtimerlr-generic.cpp92 RTDECL(int) RTTimerLRCreateEx(RTTIMERLR *phTimerLR, uint64_t u64NanoInterval, uint32_t fFlags, PFNRTTIMERLR pfnTimer, void *pvUser) argument
94 AssertPtr(phTimerLR);
95 *phTimerLR = NIL_RTTIMERLR;
128 *phTimerLR = pThis;
/vbox/include/iprt/
H A Dtimer.h294 * @param phTimerLR Where to store the timer handle.
302 RTDECL(int) RTTimerLRCreate(PRTTIMERLR phTimerLR, uint32_t uMilliesInterval, PFNRTTIMERLR pfnTimer, void *pvUser);
310 * @param phTimerLR Where to store the timer handle.
320 RTDECL(int) RTTimerLRCreateEx(PRTTIMERLR phTimerLR, uint64_t u64NanoInterval, uint32_t fFlags, PFNRTTIMERLR pfnTimer, void *pvUser);
/vbox/src/VBox/Main/src-client/
H A DConsoleImplTeleporter.cpp136 PRTTIMERLR phTimerLR, bool fStartPaused)
141 , mphTimerLR(phTimerLR)
134 TeleporterStateTrg(Console *pConsole, PUVM pUVM, Progress *pProgress, IMachine *pMachine, IInternalMachineControl *pControl, PRTTIMERLR phTimerLR, bool fStartPaused) argument

Completed in 47 milliseconds