Home
last modified time | relevance | path

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

/openthread-latest/src/core/mac/
Ddata_poll_sender.cpp47 , mFastPollsUsers(0) in DataPollSender()
86 mFastPollsUsers = 0; in StopPolling()
224 mFastPollsUsers = 0; in HandlePollSent()
391 if (mFastPollsUsers < kMaxFastPollsUsers) in SendFastPolls()
393 mFastPollsUsers++; in SendFastPolls()
412 VerifyOrExit(mFastPollsUsers != 0); in StopFastPolls()
416 VerifyOrExit(mFastPollsUsers < kMaxFastPollsUsers); in StopFastPolls()
418 mFastPollsUsers--; in StopFastPolls()
420 VerifyOrExit(mFastPollsUsers == 0); in StopFastPolls()
Ddata_poll_sender.hpp272 uint8_t mFastPollsUsers : 6; // Number of callers which request fast polls. member in ot::DataPollSender