Home
last modified time | relevance | path

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

/openthread-latest/src/lib/spinel/
Dmulti_frame_buffer.hpp220 if (GetFrame() + aLength <= GetArrayEnd(mBuffer)) in SetLength()
249 if (mWriteFrameStart + kHeaderSize + aSkipLength <= GetArrayEnd(mBuffer)) in SetSkipLength()
349 assert(aFrame == nullptr || (mBuffer <= aFrame && aFrame < GetArrayEnd(mBuffer))); in GetNextSavedFrame()
432 template <typename Type, uint16_t kArrayLength> Type *GetArrayEnd(Type (&aArray)[kArrayLength])
437 …template <typename Type, uint16_t kArrayLength> const Type *GetArrayEnd(const Type (&aArray)[kArra… in GetArrayEnd() function in ot::Spinel::MultiFrameBuffer
/openthread-latest/src/core/common/
Darray.hpp77 template <typename Type, uint16_t kArrayLength> inline Type *GetArrayEnd(Type (&aArray)[kArrayLengt… in GetArrayEnd() function
95 template <typename Type, uint16_t kArrayLength> inline const Type *GetArrayEnd(const Type (&aArray)… in GetArrayEnd() function
555 return (&mElements[0] <= aEntry) && (aEntry < GetArrayEnd(mElements)); in IsInArrayBuffer()
Dpool.hpp142 …y(const Type &aObject) const { return (&mPool[0] <= &aObject) && (&aObject < GetArrayEnd(mPool)); } in IsPoolEntry()
/openthread-latest/src/core/backbone_router/
Dndproxy_table.cpp113 mItem = GetArrayEnd(table.mProxies); in Iterator()
123 } while (mItem < GetArrayEnd(table.mProxies) && !MatchesFilter(*mItem, mFilter)); in Advance()
/openthread-latest/tests/unit/
Dtest_hkdf_sha256.cpp131 for (const TestVector *test = &kTestVectors[0]; test < GetArrayEnd(kTestVectors); test++) in TestHkdfSha256()
/openthread-latest/src/core/thread/
Dchild_table.hpp306 return (mChildren <= child) && (child < GetArrayEnd(mChildren)); in Contains()
Dnetwork_data_publisher.cpp209 return (&mPrefixEntries[0] <= &aEntry) && (&aEntry < GetArrayEnd(mPrefixEntries)); in IsAPrefixEntry()
/openthread-latest/src/core/meshcop/
Djoiner.cpp272 JoinerRouter *end = GetArrayEnd(mJoinerRouters); in SaveDiscoveredJoinerRouter()
/openthread-latest/src/core/net/
Dip6_address.cpp640 … memcpy(GetArrayEnd(mFields.m8) - Ip4::Address::kSize, ip4Addr.GetBytes(), Ip4::Address::kSize); in ParseFrom()
/openthread-latest/src/core/coap/
Dcoap_message.cpp256 VerifyOrExit(curUriPath + optionLength < GetArrayEnd(aUriPath), error = kErrorParse); in ReadUriPathOptions()
Dcoap.cpp1324 …VerifyOrExit(curUriPath + iterator.GetOption()->GetLength() < GetArrayEnd(uriPath), error = kError… in ProcessReceivedRequest()