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

/vbox/include/iprt/
H A Dtimer.h279 * @param hTimerLR The low resolution timer handle.
285 typedef DECLCALLBACK(void) FNRTTIMERLR(RTTIMERLR hTimerLR, void *pvUser, uint64_t iTick);
326 * @param hTimerLR The low resolution timer to stop and destroy.
329 RTDECL(int) RTTimerLRDestroy(RTTIMERLR hTimerLR); variable
338 * @param hTimerLR The low resolution timer to activate.
345 RTDECL(int) RTTimerLRStart(RTTIMERLR hTimerLR, uint64_t u64First);
355 * @param hTimerLR The low resolution timer to suspend.
359 RTDECL(int) RTTimerLRStop(RTTIMERLR hTimerLR); variable
371 * @param hTimerLR The low resolution timer to update.
377 RTDECL(int) RTTimerLRChangeInterval(RTTIMERLR hTimerLR, uint64_
[all...]
/vbox/src/VBox/Runtime/testcase/
H A DtstTimerLR.cpp48 static DECLCALLBACK(void) TimerLRCallback(RTTIMERLR hTimerLR, void *pvUser, uint64_t iTick) argument
141 RTTIMERLR hTimerLR; local
145 rc = RTTimerLRCreateEx(&hTimerLR, aTests[i].uMilliesInterval * (uint64_t)1000000, 0, TimerLRCallback, NULL);
157 rc = RTTimerLRStart(hTimerLR, 0);
168 rc = RTTimerLRDestroy(hTimerLR);
214 RTTIMERLR hTimerLR; local
215 rc = RTTimerLRCreateEx(&hTimerLR, aTests[0].uMilliesInterval * (uint64_t)1000000, 0, TimerLRCallback, NULL);
239 rc = RTTimerLRStart(hTimerLR, 0);
248 rc = RTTimerLRChangeInterval(hTimerLR, aTests[i].uMilliesInterval * (uint64_t)1000000);
281 rc = RTTimerLRDestroy(hTimerLR);
[all...]
/vbox/src/VBox/Runtime/generic/
H A Dtimerlr-generic.cpp143 RTDECL(int) RTTimerLRDestroy(RTTIMERLR hTimerLR) argument
148 if (hTimerLR == NIL_RTTIMERLR)
150 PRTTIMERLRINT pThis = hTimerLR;
175 RTDECL(int) RTTimerLRStart(RTTIMERLR hTimerLR, uint64_t u64First) argument
180 PRTTIMERLRINT pThis = hTimerLR;
208 RTDECL(int) RTTimerLRStop(RTTIMERLR hTimerLR) argument
213 PRTTIMERLRINT pThis = hTimerLR;
233 RTDECL(int) RTTimerLRChangeInterval(RTTIMERLR hTimerLR, uint64_t u64NanoInterval) argument
235 PRTTIMERLRINT pThis = hTimerLR;
246 int rc = RTTimerLRStop(hTimerLR);
[all...]
/vbox/src/VBox/Main/src-server/
H A DPerformanceImpl.cpp689 void PerformanceCollector::staticSamplerCallback(RTTIMERLR hTimerLR, void *pvUser, argument
698 NOREF (hTimerLR);
/vbox/src/VBox/Main/src-server/xpcom/
H A Dserver.cpp349 static void ShutdownTimer(RTTIMERLR hTimerLR, void *pvUser, uint64_t /*iTick*/) argument
351 NOREF(hTimerLR);
/vbox/src/VBox/Main/src-client/
H A DConsoleImplTeleporter.cpp613 static DECLCALLBACK(void) teleporterDstTimeout(RTTIMERLR hTimerLR, void *pvUser, uint64_t iTick) argument
1094 RTTIMERLR hTimerLR;
1095 vrc = RTTimerLRCreateEx(&hTimerLR, 0 /*ns*/, RTTIMER_FLAGS_CPU_ANY, teleporterDstTimeout, hServer);
1098 vrc = RTTimerLRStart(hTimerLR, 5*60*UINT64_C(1000000000) /*ns*/);
1104 TeleporterStateTrg theState(this, pUVM, pProgress, pMachine, mControl, &hTimerLR, fStartPaused);
1168 RTTimerLRDestroy(hTimerLR);
H A DGuestImpl.cpp196 DECLCALLBACK(void) Guest::i_staticUpdateStats(RTTIMERLR hTimerLR, void *pvUser, uint64_t iTick) argument
204 NOREF(hTimerLR);

Completed in 595 milliseconds