Home
last modified time | relevance | path

Searched refs:aUnicastAddress (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/src/core/utils/
Dhistory_tracker.cpp243 const Ip6::Netif::UnicastAddress &aUnicastAddress) in RecordAddressEvent() argument
249 entry->mAddress = aUnicastAddress.GetAddress(); in RecordAddressEvent()
250 entry->mPrefixLength = aUnicastAddress.GetPrefixLength(); in RecordAddressEvent()
251 entry->mAddressOrigin = aUnicastAddress.GetOrigin(); in RecordAddressEvent()
253 entry->mScope = (aUnicastAddress.GetScope() & 0xf); in RecordAddressEvent()
254 entry->mPreferred = aUnicastAddress.mPreferred; in RecordAddressEvent()
255 entry->mValid = aUnicastAddress.mValid; in RecordAddressEvent()
256 entry->mRloc = aUnicastAddress.mRloc; in RecordAddressEvent()
Dhistory_tracker.hpp397 …rdAddressEvent(Ip6::Netif::AddressEvent aEvent, const Ip6::Netif::UnicastAddress &aUnicastAddress);
/openthread-latest/src/core/net/
Dsrp_client.cpp743 bool Client::ShouldHostAutoAddressRegister(const Ip6::Netif::UnicastAddress &aUnicastAddress) const in ShouldHostAutoAddressRegister()
747 VerifyOrExit(aUnicastAddress.mValid); in ShouldHostAutoAddressRegister()
748 VerifyOrExit(aUnicastAddress.mPreferred); in ShouldHostAutoAddressRegister()
749 VerifyOrExit(!aUnicastAddress.GetAddress().IsLinkLocalUnicast()); in ShouldHostAutoAddressRegister()
750 VerifyOrExit(!Get<Mle::Mle>().IsMeshLocalAddress(aUnicastAddress.GetAddress())); in ShouldHostAutoAddressRegister()
Dsrp_client.hpp1009 …bool ShouldHostAutoAddressRegister(const Ip6::Netif::UnicastAddress &aUnicastAddress) cons…