Home
last modified time | relevance | path

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

/openthread-latest/src/core/api/
Dnat64_api.cpp131 void otIp4ExtractFromIp6Address(uint8_t aPrefixLength, const otIp6Address *aIp6Address, otIp4Addres… in otIp4ExtractFromIp6Address() argument
133 AsCoreType(aIp4Address).ExtractFromIp6Address(aPrefixLength, AsCoreType(aIp6Address)); in otIp4ExtractFromIp6Address()
136 otError otIp4FromIp4MappedIp6Address(const otIp6Address *aIp6Address, otIp4Address *aIp4Address) in otIp4FromIp4MappedIp6Address() argument
138 return AsCoreType(aIp4Address).ExtractFromIp4MappedIp6Address(AsCoreType(aIp6Address)); in otIp4FromIp4MappedIp6Address()
141 void otIp4ToIp4MappedIp6Address(const otIp4Address *aIp4Address, otIp6Address *aIp6Address) in otIp4ToIp4MappedIp6Address() argument
143 AsCoreType(aIp6Address).SetToIp4Mapped(AsCoreType(aIp4Address)); in otIp4ToIp4MappedIp6Address()
152 …hesizeIp6Address(otInstance *aInstance, const otIp4Address *aIp4Address, otIp6Address *aIp6Address) in otNat64SynthesizeIp6Address() argument
159 …AsCoreType(aIp6Address).SynthesizeFromIp4Address(nat64Prefix.GetPrefix(), AsCoreType(aIp4Address)); in otNat64SynthesizeIp6Address()
Dmesh_diag_api.cpp53 otError otMeshDiagGetNextIp6Address(otMeshDiagIp6AddrIterator *aIterator, otIp6Address *aIp6Address) in otMeshDiagGetNextIp6Address() argument
55 return AsCoreType(aIterator).GetNextAddress(AsCoreType(aIp6Address)); in otMeshDiagGetNextIp6Address()
/openthread-latest/src/core/net/
Dip4_types.cpp69 Error Address::ExtractFromIp4MappedIp6Address(const Ip6::Address &aIp6Address) in ExtractFromIp4MappedIp6Address() argument
73 VerifyOrExit(aIp6Address.IsIp4Mapped(), error = kErrorParse); in ExtractFromIp4MappedIp6Address()
74 SetBytes(&aIp6Address.GetBytes()[12]); in ExtractFromIp4MappedIp6Address()
80 void Address::ExtractFromIp6Address(uint8_t aPrefixLength, const Ip6::Address &aIp6Address) in ExtractFromIp6Address() argument
117 i = aIp6Address.GetBytes()[ip6Index++]; in ExtractFromIp6Address()
Dip4_types.hpp126 Error ExtractFromIp4MappedIp6Address(const Ip6::Address &aIp6Address);
138 void ExtractFromIp6Address(uint8_t aPrefixLength, const Ip6::Address &aIp6Address);
Dsrp_server.cpp2177 Error Server::Host::AddIp6Address(const Ip6::Address &aIp6Address) in AddIp6Address() argument
2181 if (aIp6Address.IsMulticast() || aIp6Address.IsUnspecified() || aIp6Address.IsLoopback()) in AddIp6Address()
2189 VerifyOrExit(!mAddresses.Contains(aIp6Address), error = kErrorDrop); in AddIp6Address()
2191 error = mAddresses.PushBack(aIp6Address); in AddIp6Address()
Dsrp_server.hpp570 Error AddIp6Address(const Ip6::Address &aIp6Address);
/openthread-latest/include/openthread/
Dnat64.h405 void otIp4ExtractFromIp6Address(uint8_t aPrefixLength, const otIp6Address *aIp6Address, otIp4Addres…
419 otError otIp4FromIp4MappedIp6Address(const otIp6Address *aIp6Address, otIp4Address *aIp4Address);
427 void otIp4ToIp4MappedIp6Address(const otIp4Address *aIp4Address, otIp6Address *aIp6Address);
495 …esizeIp6Address(otInstance *aInstance, const otIp4Address *aIp4Address, otIp6Address *aIp6Address);
Dmesh_diag.h201 otError otMeshDiagGetNextIp6Address(otMeshDiagIp6AddrIterator *aIterator, otIp6Address *aIp6Address
/openthread-latest/src/core/thread/
Dneighbor_table.cpp134 Neighbor *NeighborTable::FindNeighbor(const Ip6::Address &aIp6Address, Neighbor::StateFilter aFilte… in FindNeighbor() argument
139 if (aIp6Address.IsLinkLocalUnicast()) in FindNeighbor()
141 aIp6Address.GetIid().ConvertToMacAddress(macAddress); in FindNeighbor()
144 if (Get<Mle::Mle>().IsRoutingLocator(aIp6Address)) in FindNeighbor()
146 macAddress.SetShort(aIp6Address.GetIid().GetLocator()); in FindNeighbor()
157 if (child.HasIp6Address(aIp6Address)) in FindNeighbor()
Dneighbor_table.hpp165 Neighbor *FindNeighbor(const Ip6::Address &aIp6Address,
Dchild_table.cpp332 bool ChildTable::HasSleepyChildWithAddress(const Ip6::Address &aIp6Address) const in HasSleepyChildWithAddress()
339 …(child->IsStateValidOrRestoring() && !child->IsRxOnWhenIdle() && child->HasIp6Address(aIp6Address)) in HasSleepyChildWithAddress()
Dchild_table.hpp292 bool HasSleepyChildWithAddress(const Ip6::Address &aIp6Address) const;
Dlowpan.hpp254 void FindContextToCompressAddress(const Ip6::Address &aIp6Address, Context &aContext) const;
Dlowpan.cpp54 void Lowpan::FindContextToCompressAddress(const Ip6::Address &aIp6Address, Context &aContext) const in FindContextToCompressAddress() argument
56 Error error = Get<NetworkData::Leader>().GetContext(aIp6Address, aContext); in FindContextToCompressAddress()
/openthread-latest/examples/platforms/simulation/
Dmdns_socket.c496 …OL_WEAK void otIp4ToIp4MappedIp6Address(const otIp4Address *aIp4Address, otIp6Address *aIp6Address) in otIp4ToIp4MappedIp6Address() argument
499 OT_UNUSED_VARIABLE(aIp6Address); in otIp4ToIp4MappedIp6Address()
505 OT_TOOL_WEAK otError otIp4FromIp4MappedIp6Address(const otIp6Address *aIp6Address, otIp4Address *aI… in otIp4FromIp4MappedIp6Address() argument
507 OT_UNUSED_VARIABLE(aIp6Address); in otIp4FromIp4MappedIp6Address()