Home
last modified time | relevance | path

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

/openthread-latest/src/core/net/
Dnetif.hpp177 uint8_t GetScope(void) const in GetScope() function in ot::Ip6::Netif::UnicastAddress
179 … return mScopeOverrideValid ? static_cast<uint8_t>(mScopeOverride) : GetAddress().GetScope(); in GetScope()
Dip6.cpp1273 uint8_t destScope = aDestination.GetScope(); in SelectSourceAddress()
1295 overrideScope = addr.GetScope(); in SelectSourceAddress()
1313 else if (addr.GetScope() < bestAddr->GetScope()) in SelectSourceAddress()
1316 newAddrIsPreferred = (addr.GetScope() >= overrideScope); in SelectSourceAddress()
1318 else if (addr.GetScope() > bestAddr->GetScope()) in SelectSourceAddress()
1320 newAddrIsPreferred = (bestAddr->GetScope() < overrideScope); in SelectSourceAddress()
1349 destScope = bestAddr->GetScope(); in SelectSourceAddress()
Dip6_address.cpp354 bool Address::IsLinkLocalMulticast(void) const { return IsMulticast() && (GetScope() == kLinkLocalS… in IsLinkLocalMulticast()
366 bool Address::IsRealmLocalMulticast(void) const { return IsMulticast() && (GetScope() == kRealmLoca… in IsRealmLocalMulticast()
368 bool Address::IsMulticastLargerThanRealmLocal(void) const { return IsMulticast() && (GetScope() > k… in IsMulticastLargerThanRealmLocal()
444 uint8_t Address::GetScope(void) const in GetScope() function in ot::Ip6::Address
Dnetif.cpp247 info.mScope = aAddress.GetAddress().GetScope(); in SignalMulticastAddressChange()
426 info.mScope = aAddress.GetScope(); in SignalUnicastAddressChange()
Dip6_address.hpp885 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.cpp253 entry->mScope = (aUnicastAddress.GetScope() & 0xf); in RecordAddressEvent()