Home
last modified time | relevance | path

Searched refs:otPlatAlarmMilliGetNow (Results 1 – 25 of 25) sorted by relevance

/openthread-3.5.0/examples/platforms/simulation/virtual_time/
Dalarm-sim.c62 uint32_t otPlatAlarmMilliGetNow(void) { return (uint32_t)(sNow / US_PER_MS); } in otPlatAlarmMilliGetNow() function
102 int32_t milli = (int32_t)(sMsAlarm - otPlatAlarmMilliGetNow()); in platformAlarmGetNext()
140 remaining = (int32_t)(sMsAlarm - otPlatAlarmMilliGetNow()); in platformAlarmProcess()
/openthread-3.5.0/tests/fuzz/
Dncp_hdlc_received.cpp56 uint32_t time = otPlatAlarmMilliGetNow() + aDuration; in AdvanceTime()
58 while (ot::TimeMilli(otPlatAlarmMilliGetNow()) <= ot::TimeMilli(time)) in AdvanceTime()
Dradio_receive_done.cpp47 uint32_t time = otPlatAlarmMilliGetNow() + aDuration; in AdvanceTime()
49 while (ot::TimeMilli(otPlatAlarmMilliGetNow()) <= ot::TimeMilli(time)) in AdvanceTime()
Dcli_received.cpp58 uint32_t time = otPlatAlarmMilliGetNow() + aDuration; in AdvanceTime()
60 while (ot::TimeMilli(otPlatAlarmMilliGetNow()) <= ot::TimeMilli(time)) in AdvanceTime()
Dip6_send.cpp47 uint32_t time = otPlatAlarmMilliGetNow() + aDuration; in AdvanceTime()
49 while (ot::TimeMilli(otPlatAlarmMilliGetNow()) <= ot::TimeMilli(time)) in AdvanceTime()
Dfuzzer_platform.cpp149 uint32_t otPlatAlarmMilliGetNow(void) { return sAlarmNow / 1000; } in otPlatAlarmMilliGetNow() function
/openthread-3.5.0/examples/platforms/simulation/
Dalarm.c165 uint32_t otPlatAlarmMilliGetNow(void) { return (uint32_t)(platformGetNow() / US_PER_MS); } in otPlatAlarmMilliGetNow() function
238 uint32_t msRemaining = calculateDuration(sMsAlarm, otPlatAlarmMilliGetNow()); in platformAlarmUpdateTimeout()
274 if (sIsMsRunning && isExpired(sMsAlarm, otPlatAlarmMilliGetNow())) in platformAlarmProcess()
Dradio.c885 uint32_t now = otPlatAlarmMilliGetNow(); in platformRadioUpdateFdSet()
962 if (sEnergyScanning && IsTimeAfterOrEqual(otPlatAlarmMilliGetNow(), sEnergyScanEndTime)) in platformRadioProcess()
1145 sEnergyScanEndTime = otPlatAlarmMilliGetNow() + aScanDuration; in otPlatRadioEnergyScan()
/openthread-3.5.0/include/openthread/platform/
Dalarm-milli.h83 uint32_t otPlatAlarmMilliGetNow(void);
/openthread-3.5.0/src/posix/platform/
Dalarm.cpp131 uint32_t otPlatAlarmMilliGetNow(void) { return (uint32_t)(platformAlarmGetNow() / US_PER_MS); } in otPlatAlarmMilliGetNow() function
254 remaining = (int32_t)(sMsAlarm - otPlatAlarmMilliGetNow()); in platformAlarmProcess()
/openthread-3.5.0/examples/platforms/utils/
Ddebug_uart.c132 now = otPlatAlarmMilliGetNow(); in otPlatLog()
Dlogging_rtt.c103 long unsigned int now = otPlatAlarmMilliGetNow(); in logTimestamp()
/openthread-3.5.0/tests/unit/
Dtest_multicast_listeners_table.cpp60 extern "C" uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
Dtest_link_metrics_manager.cpp52 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
Dtest_trickle_timer.cpp53 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
Dtest_platform.cpp97 OT_TOOL_WEAK uint32_t otPlatAlarmMilliGetNow(void) in otPlatAlarmMilliGetNow() function
Dtest_timer.cpp69 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
Dtest_srp_server.cpp106 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
Dtest_dns_client.cpp109 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
Dtest_dso.cpp66 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
Dtest_routing_manager.cpp258 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
/openthread-3.5.0/src/core/common/
Dtimer.cpp47 &otPlatAlarmMilliGetNow,
Dtimer.hpp243 static TimeMilli GetNow(void) { return TimeMilli(otPlatAlarmMilliGetNow()); } in GetNow()
/openthread-3.5.0/src/core/diags/
Dfactory_diags.cpp302 uint32_t now = otPlatAlarmMilliGetNow();
498 uint32_t now = otPlatAlarmMilliGetNow();
/openthread-3.5.0/src/ncp/
Dncp_base.cpp662 SuccessOrExit(error = mEncoder.WriteUint64(mLogTimestampBase + otPlatAlarmMilliGetNow())); in Log()
2432 uint32_t currentTime = otPlatAlarmMilliGetNow(); in HandlePropertySet()