/openthread-latest/src/core/common/ |
D | timer.hpp | 153 typedef void (&Handler)(Timer &aTimer); 188 void Add(Timer &aTimer, const AlarmApi &aAlarmApi); 189 void Remove(Timer &aTimer, const AlarmApi &aAlarmApi); 240 void Add(TimerMilli &aTimer) { Timer::Scheduler::Add(aTimer, sAlarmMilliApi); } in Add() argument 241 void Remove(TimerMilli &aTimer) { Timer::Scheduler::Remove(aTimer, sAlarmMilliApi); } in Remove() argument 344 static void HandleTimer(Timer &aTimer); // Implemented in `instance.hpp` 412 void Add(TimerMicro &aTimer) { Timer::Scheduler::Add(aTimer, sAlarmMicroApi); } in Add() argument 413 void Remove(TimerMicro &aTimer) { Timer::Scheduler::Remove(aTimer, sAlarmMicroApi); } in Remove() argument 491 static void HandleTimer(Timer &aTimer); // Implemented in `instance.hpp`
|
D | timer.cpp | 155 void Timer::Scheduler::Add(Timer &aTimer, const AlarmApi &aAlarmApi) in Add() argument 160 Remove(aTimer, aAlarmApi); in Add() 164 if (aTimer.DoesFireBefore(cur, now)) in Add() 174 mTimerList.Push(aTimer); in Add() 179 mTimerList.PushAfter(aTimer, *prev); in Add() 183 void Timer::Scheduler::Remove(Timer &aTimer, const AlarmApi &aAlarmApi) in Remove() argument 185 VerifyOrExit(aTimer.IsRunning()); in Remove() 187 if (mTimerList.GetHead() == &aTimer) in Remove() 194 IgnoreError(mTimerList.Remove(aTimer)); in Remove() 197 aTimer.SetNext(&aTimer); in Remove()
|
D | trickle_timer.hpp | 81 typedef void (&Handler)(TrickleTimer &aTimer); 185 static void HandleTimer(Timer &aTimer);
|
D | trickle_timer.cpp | 271 void TrickleTimer::HandleTimer(Timer &aTimer) { static_cast<TrickleTimer *>(&aTimer)->HandleTimer()… in HandleTimer() argument
|
/openthread-latest/src/core/thread/ |
D | announce_sender.cpp | 164 void AnnounceSender::HandleTimer(Timer &aTimer) { aTimer.Get<AnnounceSender>().AnnounceSenderBase::… in HandleTimer() argument 166 void AnnounceSender::HandleTrickleTimer(TrickleTimer &aTimer) { aTimer.Get<AnnounceSender>().Handle… in HandleTrickleTimer() argument
|
D | announce_begin_server.cpp | 80 void AnnounceBeginServer::HandleTimer(Timer &aTimer) in HandleTimer() argument 82 aTimer.Get<AnnounceBeginServer>().AnnounceSenderBase::HandleTimer(); in HandleTimer()
|
D | announce_sender.hpp | 237 static void HandleTimer(Timer &aTimer); 238 static void HandleTrickleTimer(TrickleTimer &aTimer);
|
D | announce_begin_server.hpp | 76 static void HandleTimer(Timer &aTimer);
|
D | mle_router.hpp | 669 static void HandleAdvertiseTrickleTimer(TrickleTimer &aTimer);
|
D | mle_router.cpp | 480 void MleRouter::HandleAdvertiseTrickleTimer(TrickleTimer &aTimer) in HandleAdvertiseTrickleTimer() argument 482 aTimer.Get<MleRouter>().HandleAdvertiseTrickleTimer(); in HandleAdvertiseTrickleTimer()
|
/openthread-latest/src/core/mac/ |
D | sub_mac_wed.cpp | 72 void SubMac::HandleWedTimer(Timer &aTimer) { aTimer.Get<SubMac>().HandleWedTimer(); } in HandleWedTimer() argument
|
D | sub_mac_csl_receiver.cpp | 137 void SubMac::HandleCslTimer(Timer &aTimer) { aTimer.Get<SubMac>().HandleCslTimer(); } in HandleCslTimer() argument
|
D | sub_mac.hpp | 514 static void HandleCslTimer(Timer &aTimer); 524 static void HandleWedTimer(Timer &aTimer);
|
/openthread-latest/src/core/meshcop/ |
D | dataset_manager.hpp | 395 static void HandleTimer(Timer &aTimer); 455 static void HandleTimer(Timer &aTimer);
|
D | dataset_manager.cpp | 887 void ActiveDatasetManager::HandleTimer(Timer &aTimer) { aTimer.Get<ActiveDatasetManager>().HandleTi… in HandleTimer() argument 1008 void PendingDatasetManager::HandleTimer(Timer &aTimer) { aTimer.Get<PendingDatasetManager>().Handle… in HandleTimer() argument
|
D | secure_transport.hpp | 771 static void HandleTimer(Timer &aTimer);
|
D | secure_transport.cpp | 994 void SecureTransport::HandleTimer(Timer &aTimer) in HandleTimer() argument 996 …static_cast<SecureTransport *>(static_cast<TimerMilliContext &>(aTimer).GetContext())->HandleTimer… in HandleTimer()
|
/openthread-latest/src/core/instance/ |
D | instance.hpp | 1145 void TimerMilliIn<Owner, HandleTimertPtr>::HandleTimer(Timer &aTimer) in HandleTimer() argument 1147 (aTimer.Get<Owner>().*HandleTimertPtr)(); in HandleTimer() 1152 void TimerMicroIn<Owner, HandleTimertPtr>::HandleTimer(Timer &aTimer) in HandleTimer() argument 1154 (aTimer.Get<Owner>().*HandleTimertPtr)(); in HandleTimer()
|
/openthread-latest/tests/unit/ |
D | test_trickle_timer.cpp | 96 …static void HandleTimerFired(TrickleTimer &aTimer) { static_cast<TrickleTimerTester &>(aTimer).Han… in HandleTimerFired() argument
|
D | test_timer.cpp | 108 …static void HandleTimerFired(Timer &aTimer) { static_cast<TestTimer &>(aTimer).HandleTimerFired();… in HandleTimerFired() argument
|
/openthread-latest/src/core/coap/ |
D | coap.hpp | 328 static void HandleTimer(Timer &aTimer); 824 static void HandleRetransmissionTimer(Timer &aTimer);
|
D | coap.cpp | 451 void CoapBase::HandleRetransmissionTimer(Timer &aTimer) in HandleRetransmissionTimer() argument 453 …static_cast<Coap *>(static_cast<TimerMilliContext &>(aTimer).GetContext())->HandleRetransmissionTi… in HandleRetransmissionTimer() 1563 void ResponsesQueue::HandleTimer(Timer &aTimer) in HandleTimer() argument 1565 …static_cast<ResponsesQueue *>(static_cast<TimerMilliContext &>(aTimer).GetContext())->HandleTimer(… in HandleTimer()
|
/openthread-latest/src/cli/ |
D | cli.hpp | 326 static void HandleTimer(Timer &aTimer);
|
/openthread-latest/src/core/net/ |
D | srp_server.hpp | 974 static void HandleOutstandingUpdatesTimer(Timer &aTimer);
|
D | mdns.hpp | 853 void ScheduleFireTimeOn(TimerMilli &aTimer);
|