Home
last modified time | relevance | path

Searched refs:mPollPeriod (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/src/core/mac/
Ddata_poll_sender.cpp45 , mPollPeriod(0) in DataPollSender()
431 if (mTimer.IsRunning() && mPollPeriod == GetDefaultPollPeriod()) in ResetKeepAliveTimer()
434 mTimer.StartAt(mTimerStartTime, mPollPeriod); in ResetKeepAliveTimer()
441 uint32_t oldPeriod = mPollPeriod; in ScheduleNextPoll()
445 mPollPeriod = CalculatePollPeriod(); in ScheduleNextPoll()
452 if (oldPeriod != mPollPeriod) in ScheduleNextPoll()
463 if (mTimerStartTime + mPollPeriod < now + kMinPollPeriod) in ScheduleNextPoll()
469 mTimer.StartAt(mTimerStartTime, mPollPeriod); in ScheduleNextPoll()
477 mTimer.StartAt(mTimerStartTime, mPollPeriod); in ScheduleNextPoll()
Ddata_poll_sender.hpp270 uint32_t mPollPeriod; member in ot::DataPollSender