Home
last modified time | relevance | path

Searched refs:GetScope (Results 1 – 7 of 7) sorted by relevance

/openthread-latest/src/core/net/
Dip6.cpp253 aHeader.GetDestination().GetScope() >= Address::kRealmLocalScope); in InsertMplOption()
1291 uint8_t destScope = aDestination.GetScope(); in SelectSourceAddress()
1313 overrideScope = addr.GetScope(); in SelectSourceAddress()
1331 else if (addr.GetScope() < bestAddr->GetScope()) in SelectSourceAddress()
1334 newAddrIsPreferred = (addr.GetScope() >= overrideScope); in SelectSourceAddress()
1336 else if (addr.GetScope() > bestAddr->GetScope()) in SelectSourceAddress()
1338 newAddrIsPreferred = (bestAddr->GetScope() < overrideScope); in SelectSourceAddress()
1367 destScope = bestAddr->GetScope(); in SelectSourceAddress()
Dnetif.hpp191 uint8_t GetScope(void) const in GetScope() function in ot::Ip6::Netif::UnicastAddress
193 … return mScopeOverrideValid ? static_cast<uint8_t>(mScopeOverride) : GetAddress().GetScope(); in GetScope()
Dip6_address.cpp365 bool Address::IsLinkLocalMulticast(void) const { return IsMulticast() && (GetScope() == kLinkLocalS… in IsLinkLocalMulticast()
377 bool Address::IsRealmLocalMulticast(void) const { return IsMulticast() && (GetScope() == kRealmLoca… in IsRealmLocalMulticast()
379 bool Address::IsMulticastLargerThanRealmLocal(void) const { return IsMulticast() && (GetScope() > k… in IsMulticastLargerThanRealmLocal()
455 uint8_t Address::GetScope(void) const in GetScope() function in ot::Ip6::Address
Dnetif.cpp253 info.mScope = aAddress.GetAddress().GetScope(); in SignalMulticastAddressChange()
432 info.mScope = aAddress.GetScope(); in SignalUnicastAddressChange()
Dip6_address.hpp979 uint8_t GetScope(void) const;
/openthread-latest/src/posix/platform/
Dmulticast_routing.cpp317 if (aGroupAddr.GetScope() > Ip6::Address::kRealmLocalScope) in AddMulticastForwardingCache()
/openthread-latest/src/core/utils/
Dhistory_tracker.cpp261 entry->mScope = (aUnicastAddress.GetScope() & 0xf); in RecordAddressEvent()