Home
last modified time | relevance | path

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

/openthread-latest/src/core/thread/
Dmle_tlvs.hpp291 …bool IsSingleton(void) const { return IsValid() && (mRouterIdMask.GetNumberOfAllocatedIds() <= 1);… in IsSingleton() function in ot::Mle::RouteTlv
436 …bool IsSingleton(void) const { return IsValid() && (mRouterIdMask.GetNumberOfAllocatedIds() <= 1);… in IsSingleton() function in ot::Mle::RouteTlv
786 bool IsSingleton(void) const { return (mActiveRouters <= 1); } in IsSingleton() function in ot::Mle::ConnectivityTlv
Dmle_router.hpp118 bool IsSingleton(void) const;
Dmle_router.cpp1161 bool MleRouter::IsSingleton(void) const in IsSingleton() function in ot::Mle::MleRouter
1242 if (ComparePartitions(routeTlv.IsSingleton(), aLeaderData, IsSingleton(), mLeaderData) > 0 in HandleAdvertisementOnFtd()
Dmle.cpp3156 VerifyOrExit(MleRouter::ComparePartitions(connectivityTlv.IsSingleton(), leaderData, in HandleParentResponse()
3157 … Get<MleRouter>().IsSingleton(), mLeaderData) > 0); in HandleParentResponse()
3179 compare = MleRouter::ComparePartitions(connectivityTlv.IsSingleton(), leaderData, in HandleParentResponse()
3241 mParentCandidate.mIsSingleton = connectivityTlv.IsSingleton(); in HandleParentResponse()
/openthread-latest/src/core/api/
Dthread_api.cpp410 isSingleton = AsCoreType(aInstance).Get<Mle::MleRouter>().IsSingleton(); in otThreadIsSingleton()