Home
last modified time | relevance | path

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

/openthread-latest/src/core/utils/
Dchannel_manager.hpp254 uint32_t GetSupportedChannels(void) const { return mSupportedChannelMask.GetMask(); } in GetSupportedChannels()
268 uint32_t GetFavoredChannels(void) const { return mFavoredChannelMask.GetMask(); } in GetFavoredChannels()
Dchannel_manager.cpp470 … mSupportedChannelMask.SetMask(aChannelMask & Get<Mac::Mac>().GetSupportedChannelMask().GetMask()); in SetSupportedChannels()
477 mFavoredChannelMask.SetMask(aChannelMask & Get<Mac::Mac>().GetSupportedChannelMask().GetMask()); in SetFavoredChannels()
/openthread-latest/src/core/mac/
Dchannel_mask.hpp106 uint32_t GetMask(void) const { return mMask; } in GetMask() function in ot::Mac::ChannelMask
Dmac.cpp186 aScanChannels = mSupportedChannelMask.GetMask(); in Scan()
/openthread-latest/src/core/meshcop/
Dmeshcop.cpp115 mask = GetMask(); in Matches()
157 uint64_t mask = GetMask(); in operator ==()
Dmeshcop.hpp222 uint64_t GetMask(void) const { return (static_cast<uint64_t>(1ULL) << mLength) - 1; } in GetMask() function in ot::MeshCoP::JoinerDiscerner
Dmeshcop_tlvs.cpp208 aChannelMask |= (entry->GetMask() & Radio::ChannelMaskForPage(entry->GetChannelPage())); in Parse()
Ddataset_manager_ftd.cpp298 ChannelMaskTlv::PrepareValue(value, Get<Mac::Mac>().GetSupportedChannelMask().GetMask()); in GenerateLocal()
Dmeshcop_tlvs.hpp673 uint32_t GetMask(void) const { return Reverse32(BigEndian::HostSwap32(mMask)); } in GetMask() function in ot::MeshCoP::ChannelMaskTlv::Entry
Ddataset.cpp67 mChannelMask = supportedChannels.GetMask(); in GenerateRandom()
Ddataset_manager.cpp414 aChannelMask.SetMask(mask & Get<Mac::Mac>().GetSupportedChannelMask().GetMask()); in GetChannelMask()
/openthread-latest/tests/unit/
Dtest_mac_frame.cpp498 VerifyOrQuit(mask2.GetMask() == Radio::kSupportedChannels); in TestMacChannelMask()
504 VerifyOrQuit(mask1.GetMask() == Radio::kSupportedChannels); in TestMacChannelMask()
/openthread-latest/src/core/api/
Dlink_api.cpp107 return AsCoreType(aInstance).Get<Mac::Mac>().GetSupportedChannelMask().GetMask(); in otLinkGetSupportedChannelMask()