/openthread-3.5.0/examples/platforms/simulation/virtual_time/ |
D | alarm-sim.c | 62 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/ |
D | ncp_hdlc_received.cpp | 56 uint32_t time = otPlatAlarmMilliGetNow() + aDuration; in AdvanceTime() 58 while (ot::TimeMilli(otPlatAlarmMilliGetNow()) <= ot::TimeMilli(time)) in AdvanceTime()
|
D | radio_receive_done.cpp | 47 uint32_t time = otPlatAlarmMilliGetNow() + aDuration; in AdvanceTime() 49 while (ot::TimeMilli(otPlatAlarmMilliGetNow()) <= ot::TimeMilli(time)) in AdvanceTime()
|
D | cli_received.cpp | 58 uint32_t time = otPlatAlarmMilliGetNow() + aDuration; in AdvanceTime() 60 while (ot::TimeMilli(otPlatAlarmMilliGetNow()) <= ot::TimeMilli(time)) in AdvanceTime()
|
D | ip6_send.cpp | 47 uint32_t time = otPlatAlarmMilliGetNow() + aDuration; in AdvanceTime() 49 while (ot::TimeMilli(otPlatAlarmMilliGetNow()) <= ot::TimeMilli(time)) in AdvanceTime()
|
D | fuzzer_platform.cpp | 149 uint32_t otPlatAlarmMilliGetNow(void) { return sAlarmNow / 1000; } in otPlatAlarmMilliGetNow() function
|
/openthread-3.5.0/examples/platforms/simulation/ |
D | alarm.c | 165 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()
|
D | radio.c | 885 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/ |
D | alarm-milli.h | 83 uint32_t otPlatAlarmMilliGetNow(void);
|
/openthread-3.5.0/src/posix/platform/ |
D | alarm.cpp | 131 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/ |
D | debug_uart.c | 132 now = otPlatAlarmMilliGetNow(); in otPlatLog()
|
D | logging_rtt.c | 103 long unsigned int now = otPlatAlarmMilliGetNow(); in logTimestamp()
|
/openthread-3.5.0/tests/unit/ |
D | test_multicast_listeners_table.cpp | 60 extern "C" uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
|
D | test_link_metrics_manager.cpp | 52 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
|
D | test_trickle_timer.cpp | 53 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
|
D | test_platform.cpp | 97 OT_TOOL_WEAK uint32_t otPlatAlarmMilliGetNow(void) in otPlatAlarmMilliGetNow() function
|
D | test_timer.cpp | 69 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
|
D | test_srp_server.cpp | 106 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
|
D | test_dns_client.cpp | 109 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
|
D | test_dso.cpp | 66 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
|
D | test_routing_manager.cpp | 258 uint32_t otPlatAlarmMilliGetNow(void) { return sNow; } in otPlatAlarmMilliGetNow() function
|
/openthread-3.5.0/src/core/common/ |
D | timer.cpp | 47 &otPlatAlarmMilliGetNow,
|
D | timer.hpp | 243 static TimeMilli GetNow(void) { return TimeMilli(otPlatAlarmMilliGetNow()); } in GetNow()
|
/openthread-3.5.0/src/core/diags/ |
D | factory_diags.cpp | 302 uint32_t now = otPlatAlarmMilliGetNow(); 498 uint32_t now = otPlatAlarmMilliGetNow();
|
/openthread-3.5.0/src/ncp/ |
D | ncp_base.cpp | 662 SuccessOrExit(error = mEncoder.WriteUint64(mLogTimestampBase + otPlatAlarmMilliGetNow())); in Log() 2432 uint32_t currentTime = otPlatAlarmMilliGetNow(); in HandlePropertySet()
|