Home
last modified time | relevance | path

Searched refs:mIp6Addresses (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/src/core/thread/
Dchild.cpp86 OT_ASSERT(aChild.mIp6Addresses.IsInArrayBuffer(this)); in GetMlrState()
88 index = aChild.mIp6Addresses.IndexOf(*this); in GetMlrState()
107 OT_ASSERT(aChild.mIp6Addresses.IsInArrayBuffer(this)); in SetMlrState()
109 index = aChild.mIp6Addresses.IndexOf(*this); in SetMlrState()
131 mIp6Addresses.Clear(); in ClearIp6Addresses()
178 VerifyOrExit(aIterator - 1 < mIp6Addresses.GetLength(), error = kErrorNotFound); in GetNextIp6Address()
180 aAddress = mIp6Addresses[static_cast<Ip6AddressArray::IndexType>(aIterator - 1)]; in GetNextIp6Address()
200 VerifyOrExit(!mIp6Addresses.ContainsMatching(aAddress), error = kErrorAlready); in AddIp6Address()
201 error = mIp6Addresses.PushBack(static_cast<const Ip6AddrEntry &>(aAddress)); in AddIp6Address()
223 entry = mIp6Addresses.FindMatching(aAddress); in RemoveIp6Address()
[all …]
Dchild.hpp178 const Ip6AddressArray &GetIp6Addresses(void) const { return mIp6Addresses; } in GetIp6Addresses()
187 Ip6AddressArray &GetIp6Addresses(void) { return mIp6Addresses; } in GetIp6Addresses()
373 Ip6AddressArray mIp6Addresses; member in ot::Child