Home
last modified time | relevance | path

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

/openthread-latest/src/core/thread/
Ddua_manager.cpp97 VerifyOrExit(!Get<ThreadNetif>().HasUnicastAddress(GetDomainUnicastAddress())); in HandleDomainPrefixUpdate()
166 if (Get<ThreadNetif>().HasUnicastAddress(GetDomainUnicastAddress())) in SetFixedDuaInterfaceIdentifier()
183 Get<ThreadNetif>().HasUnicastAddress(GetDomainUnicastAddress())) in ClearFixedDuaInterfaceIdentifier()
301 if (Get<ThreadNetif>().HasUnicastAddress(Get<DuaManager>().GetDomainUnicastAddress()) && in HandleNotifierEvents()
627 if (Get<ThreadNetif>().HasUnicastAddress(target)) in ProcessDuaResponse()
636 if (Get<ThreadNetif>().HasUnicastAddress(GetDomainUnicastAddress())) in ProcessDuaResponse()
Dmesh_forwarder_ftd.cpp529 isReachable = Get<ThreadNetif>().HasUnicastAddress(aIp6Header.GetDestination()); in CheckReachability()
541 isReachable = Get<ThreadNetif>().HasUnicastAddress(aIp6Header.GetDestination()) || in CheckReachability()
Dmle.cpp953 VerifyOrExit(!Get<ThreadNetif>().HasUnicastAddress(mMeshLocalEid), error = kErrorInvalidState); in SetMeshLocalIid()
970 if (Get<ThreadNetif>().HasUnicastAddress(mMeshLocalRloc) && in SetRloc16()
1133 if (!Get<ThreadNetif>().HasUnicastAddress(mMeshLocalEid.GetAddress())) in HandleNotifierEvents()
4977 if (Get<ThreadNetif>().HasUnicastAddress(Get<DuaManager>().GetDomainUnicastAddress()) && in AppendAddressRegistrationTlv()
Daddress_resolver.cpp855 if (Get<ThreadNetif>().HasUnicastAddress(target)) in HandleTmf()
Dmesh_forwarder.cpp234 VerifyOrExit(!Get<ThreadNetif>().HasUnicastAddress(ip6Header.GetSource())); in UpdateEcnOrDrop()
/openthread-latest/src/core/net/
Dnetif.hpp418 bool HasUnicastAddress(const Address &aAddress) const;
428 …bool HasUnicastAddress(const UnicastAddress &aAddress) const { return mUnicastAddresses.Contains(a… in HasUnicastAddress() function in ot::Ip6::Netif
Dnetif.cpp386 VerifyOrExit(HasUnicastAddress(aAddress)); in UpdatePreferredFlagOn()
507 bool Netif::HasUnicastAddress(const Address &aAddress) const { return mUnicastAddresses.ContainsMat… in HasUnicastAddress() function in ot::Ip6::Netif
Dip6.cpp1055 … VerifyOrExit(Get<ThreadNetif>().HasUnicastAddress(header.GetSource()), error = kErrorDrop); in SendRaw()
1124 if (Get<ThreadNetif>().HasUnicastAddress(header.GetDestination())) in HandleDatagram()
1417 VerifyOrExit(!Get<Netif>().HasUnicastAddress(aHeader.GetSource())); in UpdateBorderRoutingCounters()
1436 VerifyOrExit(!Get<Netif>().HasUnicastAddress(aHeader.GetDestination())); in UpdateBorderRoutingCounters()
Dudp6.cpp250 …VerifyOrExit(aSockAddr.GetAddress().IsUnspecified() || Get<ThreadNetif>().HasUnicastAddress(aSockA… in Bind()
/openthread-latest/src/core/api/
Dip6_api.cpp73 return AsCoreType(aInstance).Get<ThreadNetif>().HasUnicastAddress(AsCoreType(aAddress)); in otIp6HasUnicastAddress()