Home
last modified time | relevance | path

Searched refs:GetMask (Results 1 – 13 of 13) sorted by relevance

/openthread-3.7.0/src/core/utils/
Dchannel_manager.hpp264 uint32_t GetSupportedChannels(void) const { return mSupportedChannelMask.GetMask(); } in GetSupportedChannels()
280 uint32_t GetFavoredChannels(void) const { return mFavoredChannelMask.GetMask(); } in GetFavoredChannels()
Dchannel_manager.cpp481 … mSupportedChannelMask.SetMask(aChannelMask & Get<Mac::Mac>().GetSupportedChannelMask().GetMask()); in SetSupportedChannels()
488 mFavoredChannelMask.SetMask(aChannelMask & Get<Mac::Mac>().GetSupportedChannelMask().GetMask()); in SetFavoredChannels()
/openthread-3.7.0/src/core/mac/
Dchannel_mask.hpp114 uint32_t GetMask(void) const { return mMask; } in GetMask() function in ot::Mac::ChannelMask
Dmac.cpp190 aScanChannels = mSupportedChannelMask.GetMask(); in Scan()
/openthread-3.7.0/src/core/meshcop/
Dmeshcop.cpp122 mask = GetMask(); in Matches()
164 uint64_t mask = GetMask(); in operator ==()
Dmeshcop.hpp234 uint64_t GetMask(void) const { return (static_cast<uint64_t>(1ULL) << mLength) - 1; } in GetMask() function in ot::MeshCoP::JoinerDiscerner
Dmeshcop_tlvs.cpp212 aChannelMask |= (entry->GetMask() & Radio::ChannelMaskForPage(entry->GetChannelPage())); in Parse()
Ddataset_manager_ftd.cpp308 ChannelMaskTlv::PrepareValue(value, Get<Mac::Mac>().GetSupportedChannelMask().GetMask()); in GenerateLocal()
Dmeshcop_tlvs.hpp737 uint32_t GetMask(void) const { return Reverse32(BigEndian::HostSwap32(mMask)); } in GetMask() function in ot::MeshCoP::ChannelMaskTlv::Entry
Ddataset.cpp78 mChannelMask = supportedChannels.GetMask(); in GenerateRandom()
Ddataset_manager.cpp430 aChannelMask.SetMask(mask & Get<Mac::Mac>().GetSupportedChannelMask().GetMask()); in GetChannelMask()
/openthread-3.7.0/tests/unit/
Dtest_mac_frame.cpp481 VerifyOrQuit(mask2.GetMask() == Radio::kSupportedChannels); in TestMacChannelMask()
487 VerifyOrQuit(mask1.GetMask() == Radio::kSupportedChannels); in TestMacChannelMask()
/openthread-3.7.0/src/core/api/
Dlink_api.cpp89 return AsCoreType(aInstance).Get<Mac::Mac>().GetSupportedChannelMask().GetMask(); in otLinkGetSupportedChannelMask()