Home
last modified time | relevance | path

Searched refs:GetCslChannel (Results 1 – 10 of 10) sorted by relevance

/openthread-latest/src/core/utils/
Dchannel_manager.cpp121 if (aChannel == Get<Mac::Mac>().GetCslChannel()) in ChangeCslChannel()
353 if (Get<Mac::Mac>().IsCslEnabled() && (Get<Mac::Mac>().GetCslChannel() != 0)) in RequestChannelSelect()
355 curChannel = Get<Mac::Mac>().GetCslChannel(); in RequestChannelSelect()
Dmesh_diag.cpp608 mCslChannel = aChildTlv.GetCslChannel(); in SetFrom()
/openthread-latest/src/core/thread/
Dcsl_tx_scheduler.cpp197 frame->SetChannel(mCslTxNeighbor->GetCslChannel() == 0 ? Get<Mac::Mac>().GetPanChannel() in HandleFrameRequest()
198 : mCslTxNeighbor->GetCslChannel()); in HandleFrameRequest()
Dcsl_tx_scheduler.hpp83 uint8_t GetCslChannel(void) const { return mCslChannel; } in GetCslChannel() function in ot::CslTxScheduler::NeighborInfo
Dnetwork_diagnostic_tlvs.cpp73 mCslChannel = aChild.GetCslChannel(); in InitFrom()
Dnetwork_diagnostic_tlvs.hpp790 uint8_t GetCslChannel(void) const { return mCslChannel; } in GetCslChannel() function in ot::NetworkDiagnostic::ChildTlv
Dmle.cpp5167 return Tlv::Append<CslChannelTlv>(*this, ChannelTlvValue(Get<Mac::Mac>().GetCslChannel())); in AppendCslChannelTlv()
/openthread-latest/src/core/mac/
Dmac.hpp574 uint8_t GetCslChannel(void) const { return mCslChannel; } in GetCslChannel() function in ot::Mac::Mac
Dmac.cpp2436 uint8_t channel = GetCslChannel() ? GetCslChannel() : mRadioChannel; in UpdateCsl()
/openthread-latest/src/core/api/
Dlink_api.cpp426 …CslChannel(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetCslChannel(); } in otLinkGetCslChannel()