Home
last modified time | relevance | path

Searched refs:mMaxLength (Results 1 – 7 of 7) sorted by relevance

/openthread-3.4.0/src/core/common/
Dframe_builder.hpp86 uint16_t GetMaxLength(void) const { return mMaxLength; } in GetMaxLength()
97 void SetMaxLength(uint16_t aLength) { mMaxLength = aLength; } in SetMaxLength()
105 uint16_t GetRemainingLength(void) const { return mMaxLength - mLength; } in GetRemainingLength()
117 …Append(uint16_t aLength) const { return (static_cast<uint32_t>(mLength) + aLength) <= mMaxLength; } in CanAppend()
317 uint16_t mMaxLength; member in ot::FrameBuilder
Dframe_builder.cpp52 mMaxLength = aLength; in Init()
/openthread-3.4.0/src/core/thread/
Dnetwork_data_leader.hpp77 , mMaxLength(0) in LeaderBase()
95 uint8_t GetMaxLength(void) const { return mMaxLength; } in GetMaxLength()
103 void ResetMaxLength(void) { mMaxLength = GetLength(); } in ResetMaxLength()
325 uint8_t mMaxLength; member in ot::NetworkData::LeaderBase
Dnetwork_data.cpp723 , mMaxLength(aRlocsMaxLength) in FindBorderRouters()
762 VerifyOrExit(mLength < mMaxLength, error = kErrorNoBufs); in FindBorderRouters()
774 uint8_t mMaxLength; in FindBorderRouters() member in ot::NetworkData::NetworkData::FindBorderRouters::Rlocs
Dnetwork_data_leader.cpp542 mMaxLength = Max(mMaxLength, GetLength()); in SignalNetDataChanged()
/openthread-3.4.0/src/core/net/
Dnd6.hpp577 , mMaxLength(0) in RouterAdvertMessage()
593 : mMaxLength(kBufferSize) in RouterAdvertMessage()
675 uint16_t mMaxLength; member in ot::Ip6::Nd::RouterAdvertMessage
Dnd6.cpp213 VerifyOrExit(newLength <= mMaxLength); in AppendOption()