Home
last modified time | relevance | path

Searched refs:mIp6Address (Results 1 – 3 of 3) sorted by relevance

/openthread-3.4.0/src/core/thread/
Dtopology.cpp307 …return (mIndex == 0) ? &mMeshLocalAddress : ((mIndex < kMaxIndex) ? &mChild.mIp6Address[mIndex - 1… in GetAddress()
344 memset(mIp6Address, 0, sizeof(mIp6Address)); in ClearIp6Addresses()
390 for (Ip6::Address &ip6Address : mIp6Address) in AddIp6Address()
427 VerifyOrExit(!mIp6Address[index].IsUnspecified()); in RemoveIp6Address()
429 if (mIp6Address[index] == aAddress) in RemoveIp6Address()
440 mIp6Address[index] = mIp6Address[index + 1]; in RemoveIp6Address()
443 mIp6Address[kNumIp6Addresses - 1].Clear(); in RemoveIp6Address()
461 for (const Ip6::Address &ip6Address : mIp6Address) in HasIp6Address()
480 for (const Ip6::Address &ip6Address : mIp6Address) in GetDomainUnicastAddress()
523 OT_ASSERT(&mIp6Address[0] <= &aAddress && &aAddress < GetArrayEnd(mIp6Address)); in GetAddressMlrState()
[all …]
Dtopology.hpp1346 Ip6::Address mIp6Address[kNumIp6Addresses]; ///< Registered IPv6 addresses member in ot::Child
/openthread-3.4.0/tests/unit/
Dtest_ip_address.cpp767 const char *mIp6Address; // Expected IPv6 address (with embedded IPv4 "192.0.2.33"). in TestIp4Ip6Translation() member
799 SuccessOrQuit(expectedAddress.FromString(testCase.mIp6Address)); in TestIp4Ip6Translation()
804 … ip4Address.ToString().AsCString(), address.ToString().AsCString(), testCase.mIp6Address, in TestIp4Ip6Translation()
816 SuccessOrQuit(ip6Address.FromString(testCase.mIp6Address)); in TestIp4Ip6Translation()
820 printf("Ipv6Address: %-36s IPv4Addr: %-12s Expected: %s\n", testCase.mIp6Address, in TestIp4Ip6Translation()