Home
last modified time | relevance | path

Searched refs:GetArrayEnd (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/external/openthread/src/lib/spinel/
H A Dmulti_frame_buffer.hpp235 if (GetFrame() + aLength <= GetArrayEnd(mBuffer)) in SetLength()
266 if (mWriteFrameStart + kHeaderSize + aSkipLength <= GetArrayEnd(mBuffer)) in SetSkipLength()
372 assert(aFrame == nullptr || (mBuffer <= aFrame && aFrame < GetArrayEnd(mBuffer))); in GetNextSavedFrame()
456 template <typename Type, uint16_t kArrayLength> Type *GetArrayEnd(Type (&aArray)[kArrayLength]) in GetArrayEnd() function in ot::Spinel::MultiFrameBuffer
461 …template <typename Type, uint16_t kArrayLength> const Type *GetArrayEnd(const Type (&aArray)[kArra… in GetArrayEnd() function in ot::Spinel::MultiFrameBuffer
/aosp_15_r20/external/openthread/src/core/common/
H A Darray.hpp79 template <typename Type, uint16_t kArrayLength> inline Type *GetArrayEnd(Type (&aArray)[kArrayLengt… in GetArrayEnd() function
98 template <typename Type, uint16_t kArrayLength> inline const Type *GetArrayEnd(const Type (&aArray)… in GetArrayEnd() function
594 return (&mElements[0] <= aEntry) && (aEntry < GetArrayEnd(mElements)); in IsInArrayBuffer()
H A Dpool.hpp151 …y(const Type &aObject) const { return (&mPool[0] <= &aObject) && (&aObject < GetArrayEnd(mPool)); } in IsPoolEntry()
/aosp_15_r20/external/openthread/src/core/backbone_router/
H A Dndproxy_table.cpp113 mItem = GetArrayEnd(table.mProxies); in Iterator()
123 } while (mItem < GetArrayEnd(table.mProxies) && !MatchesFilter(*mItem, mFilter)); in Advance()
/aosp_15_r20/external/openthread/tests/unit/
H A Dtest_hkdf_sha256.cpp131 for (const TestVector *test = &kTestVectors[0]; test < GetArrayEnd(kTestVectors); test++) in TestHkdfSha256()
/aosp_15_r20/external/openthread/src/core/thread/
H A Dchild_table.hpp333 return (mChildren <= child) && (child < GetArrayEnd(mChildren)); in Contains()
H A Dnetwork_data_publisher.cpp217 return (&mPrefixEntries[0] <= &aEntry) && (&aEntry < GetArrayEnd(mPrefixEntries)); in IsAPrefixEntry()
/aosp_15_r20/external/openthread/src/core/meshcop/
H A Djoiner.cpp285 JoinerRouter *end = GetArrayEnd(mJoinerRouters); in SaveDiscoveredJoinerRouter()
/aosp_15_r20/external/openthread/src/core/coap/
H A Dcoap_message.cpp264 VerifyOrExit(curUriPath + optionLength < GetArrayEnd(aUriPath), error = kErrorParse); in ReadUriPathOptions()
H A Dcoap.cpp1334 …VerifyOrExit(curUriPath + iterator.GetOption()->GetLength() < GetArrayEnd(uriPath), error = kError… in ProcessReceivedRequest()
/aosp_15_r20/external/openthread/src/core/net/
H A Dip6_address.cpp651 … memcpy(GetArrayEnd(mFields.m8) - Ip4::Address::kSize, ip4Addr.GetBytes(), Ip4::Address::kSize); in ParseFrom()