Home
last modified time | relevance | path

Searched refs:GetRxOnWhenIdle (Results 1 – 5 of 5) sorted by relevance

/external/openthread/src/core/utils/
Dchild_supervision.cpp199 …((mTimeout != 0) && !Get<Mle::MleRouter>().IsDisabled() && !Get<MeshForwarder>().GetRxOnWhenIdle()) in RestartTimer()
216 VerifyOrExit(Get<Mle::MleRouter>().IsChild() && !Get<MeshForwarder>().GetRxOnWhenIdle()); in HandleTimer()
/external/openthread/src/core/thread/
Dmesh_forwarder.cpp694 bool MeshForwarder::GetRxOnWhenIdle(void) const in GetRxOnWhenIdle() function in ot::MeshForwarder
696 return Get<Mac::Mac>().GetRxOnWhenIdle(); in GetRxOnWhenIdle()
1550 if (!GetRxOnWhenIdle() && message->IsLinkSecurityEnabled()) in HandleFragment()
1581 if (!GetRxOnWhenIdle() && (message == nullptr) && aLinkInfo.IsLinkSecurityEnabled()) in HandleFragment()
1783 VerifyOrExit(mEnabled && !Get<Mac::Mac>().GetRxOnWhenIdle() && in SendEmptyMessage()
Dmesh_forwarder.hpp236 bool GetRxOnWhenIdle(void) const;
/external/openthread/src/core/mac/
Dmac.hpp192 bool GetRxOnWhenIdle(void) const { return mRxOnWhenIdle; } in GetRxOnWhenIdle() function in ot::Mac::Mac
Ddata_poll_sender.cpp104 VerifyOrExit(!Get<Mac::Mac>().GetRxOnWhenIdle(), error = kErrorInvalidState); in SendDataPoll()