Home
last modified time | relevance | path

Searched refs:aIp6Address (Results 1 – 14 of 14) sorted by relevance

/openthread-3.5.0/src/core/thread/
Dneighbor_table.cpp137 Neighbor *NeighborTable::FindNeighbor(const Ip6::Address &aIp6Address, Neighbor::StateFilter aFilte… in FindNeighbor() argument
142 if (aIp6Address.IsLinkLocal()) in FindNeighbor()
144 aIp6Address.GetIid().ConvertToMacAddress(macAddress); in FindNeighbor()
147 if (Get<Mle::Mle>().IsRoutingLocator(aIp6Address)) in FindNeighbor()
149 macAddress.SetShort(aIp6Address.GetIid().GetLocator()); in FindNeighbor()
160 if (child.HasIp6Address(aIp6Address)) in FindNeighbor()
Dneighbor_table.hpp177 Neighbor *FindNeighbor(const Ip6::Address &aIp6Address,
Dchild_table.cpp317 bool ChildTable::HasSleepyChildWithAddress(const Ip6::Address &aIp6Address) const in HasSleepyChildWithAddress()
324 …(child->IsStateValidOrRestoring() && !child->IsRxOnWhenIdle() && child->HasIp6Address(aIp6Address)) in HasSleepyChildWithAddress()
Dchild_table.hpp305 bool HasSleepyChildWithAddress(const Ip6::Address &aIp6Address) const;
Dlowpan.hpp266 void FindContextToCompressAddress(const Ip6::Address &aIp6Address, Context &aContext) const;
Dlowpan.cpp65 void Lowpan::FindContextToCompressAddress(const Ip6::Address &aIp6Address, Context &aContext) const in FindContextToCompressAddress() argument
67 Error error = Get<NetworkData::Leader>().GetContext(aIp6Address, aContext); in FindContextToCompressAddress()
/openthread-3.5.0/src/core/api/
Dnat64_api.cpp138 void otIp4ExtractFromIp6Address(uint8_t aPrefixLength, const otIp6Address *aIp6Address, otIp4Addres… in otIp4ExtractFromIp6Address() argument
140 AsCoreType(aIp4Address).ExtractFromIp6Address(aPrefixLength, AsCoreType(aIp6Address)); in otIp4ExtractFromIp6Address()
149 …hesizeIp6Address(otInstance *aInstance, const otIp4Address *aIp4Address, otIp6Address *aIp6Address) in otNat64SynthesizeIp6Address() argument
156 …AsCoreType(aIp6Address).SynthesizeFromIp4Address(nat64Prefix.GetPrefix(), AsCoreType(aIp4Address)); in otNat64SynthesizeIp6Address()
Dmesh_diag_api.cpp57 otError otMeshDiagGetNextIp6Address(otMeshDiagIp6AddrIterator *aIterator, otIp6Address *aIp6Address) in otMeshDiagGetNextIp6Address() argument
59 return AsCoreType(aIterator).GetNextAddress(AsCoreType(aIp6Address)); in otMeshDiagGetNextIp6Address()
/openthread-3.5.0/include/openthread/
Dnat64.h417 void otIp4ExtractFromIp6Address(uint8_t aPrefixLength, const otIp6Address *aIp6Address, otIp4Addres…
490 …esizeIp6Address(otInstance *aInstance, const otIp4Address *aIp4Address, otIp6Address *aIp6Address);
Dmesh_diag.h215 otError otMeshDiagGetNextIp6Address(otMeshDiagIp6AddrIterator *aIterator, otIp6Address *aIp6Address
/openthread-3.5.0/src/core/net/
Dip4_types.cpp67 void Address::ExtractFromIp6Address(uint8_t aPrefixLength, const Ip6::Address &aIp6Address) in ExtractFromIp6Address() argument
104 i = aIp6Address.GetBytes()[ip6Index++]; in ExtractFromIp6Address()
Dip4_types.hpp139 void ExtractFromIp6Address(uint8_t aPrefixLength, const Ip6::Address &aIp6Address);
Dsrp_server.cpp2091 Error Server::Host::AddIp6Address(const Ip6::Address &aIp6Address) in AddIp6Address() argument
2095 if (aIp6Address.IsMulticast() || aIp6Address.IsUnspecified() || aIp6Address.IsLoopback()) in AddIp6Address()
2103 VerifyOrExit(!mAddresses.Contains(aIp6Address), error = kErrorDrop); in AddIp6Address()
2105 error = mAddresses.PushBack(aIp6Address); in AddIp6Address()
Dsrp_server.hpp587 Error AddIp6Address(const Ip6::Address &aIp6Address);