Home
last modified time | relevance | path

Searched refs:platformAlarmGetNow (Results 1 – 3 of 3) sorted by relevance

/openthread-3.6.0/src/posix/platform/
Dalarm.cpp90 static uint64_t platformAlarmGetNow(void) { return otPlatTimeGet() * sSpeedUpFactor; } in platformAlarmGetNow() function
131 uint32_t otPlatAlarmMilliGetNow(void) { return (uint32_t)(platformAlarmGetNow() / US_PER_MS); } in otPlatAlarmMilliGetNow()
149 uint32_t otPlatAlarmMicroGetNow(void) { return static_cast<uint32_t>(platformAlarmGetNow()); } in otPlatAlarmMicroGetNow()
201 uint64_t now = platformAlarmGetNow(); in platformAlarmUpdateTimeout()
/openthread-3.6.0/examples/platforms/simulation/virtual_time/
Dalarm-sim.c58 uint64_t platformAlarmGetNow(void) { return sNow; } in platformAlarmGetNow() function
177 uint64_t otPlatTimeGet(void) { return platformAlarmGetNow(); } in otPlatTimeGet()
/openthread-3.6.0/examples/platforms/simulation/
Dplatform-simulation.h129 uint64_t platformAlarmGetNow(void);