/openthread-latest/src/core/api/ |
D | nat64_api.cpp | 131 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()
|
D | mesh_diag_api.cpp | 53 otError otMeshDiagGetNextIp6Address(otMeshDiagIp6AddrIterator *aIterator, otIp6Address *aIp6Address) in otMeshDiagGetNextIp6Address() argument 55 return AsCoreType(aIterator).GetNextAddress(AsCoreType(aIp6Address)); in otMeshDiagGetNextIp6Address()
|
/openthread-latest/src/core/net/ |
D | ip4_types.cpp | 69 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()
|
D | ip4_types.hpp | 126 Error ExtractFromIp4MappedIp6Address(const Ip6::Address &aIp6Address); 138 void ExtractFromIp6Address(uint8_t aPrefixLength, const Ip6::Address &aIp6Address);
|
D | srp_server.cpp | 2177 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()
|
D | srp_server.hpp | 570 Error AddIp6Address(const Ip6::Address &aIp6Address);
|
/openthread-latest/include/openthread/ |
D | nat64.h | 405 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);
|
D | mesh_diag.h | 201 otError otMeshDiagGetNextIp6Address(otMeshDiagIp6AddrIterator *aIterator, otIp6Address *aIp6Address…
|
/openthread-latest/src/core/thread/ |
D | neighbor_table.cpp | 134 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()
|
D | neighbor_table.hpp | 165 Neighbor *FindNeighbor(const Ip6::Address &aIp6Address,
|
D | child_table.cpp | 332 bool ChildTable::HasSleepyChildWithAddress(const Ip6::Address &aIp6Address) const in HasSleepyChildWithAddress() 339 …(child->IsStateValidOrRestoring() && !child->IsRxOnWhenIdle() && child->HasIp6Address(aIp6Address)) in HasSleepyChildWithAddress()
|
D | child_table.hpp | 292 bool HasSleepyChildWithAddress(const Ip6::Address &aIp6Address) const;
|
D | lowpan.hpp | 254 void FindContextToCompressAddress(const Ip6::Address &aIp6Address, Context &aContext) const;
|
D | lowpan.cpp | 54 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/ |
D | mdns_socket.c | 496 …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()
|