Home
last modified time | relevance | path

Searched refs:IsFull (Results 1 – 8 of 8) sorted by relevance

/openthread-latest/src/core/common/
Darray.hpp179 bool IsFull(void) const { return (mLength == GetMaxSize()); } in IsFull() function in ot::Array
298 …Error PushBack(const Type &aEntry) { return IsFull() ? kErrorNoBufs : (mElements[mLength++] = aEnt… in PushBack()
308 Type *PushBack(void) { return IsFull() ? nullptr : &mElements[mLength++]; } in PushBack()
/openthread-latest/tests/unit/
Dtest_array.cpp57 VerifyOrQuit(!array.IsFull()); in TestArray()
88 VerifyOrQuit(array.IsFull() == (len == kMaxSize)); in TestArray()
147 VerifyOrQuit(array.IsFull()); in TestArray()
163 VerifyOrQuit(!array.IsFull()); in TestArray()
/openthread-latest/src/lib/spinel/
Dspinel_driver.hpp243 bool IsFull(void) const { return (mLength == GetMaxSize()); } in IsFull() function in ot::Spinel::SpinelDriver::Array
247 return IsFull() ? OT_ERROR_NO_BUFS : (mElements[mLength++] = aEntry, OT_ERROR_NONE); in PushBack()
/openthread-latest/src/core/thread/
Dmlr_manager.cpp228 if (addresses.IsFull()) in SendMlr()
245 if (addresses.IsFull()) in SendMlr()
262 if (addresses.IsFull()) in SendMlr()
Drouter_table.cpp132 VerifyOrExit(!mRouters.IsFull()); in Allocate()
/openthread-latest/src/core/utils/
Dpower_calibration.cpp93 VerifyOrExit(!mCalibratedPowerTables[chIndex].IsFull(), error = kErrorNoBufs); in AddCalibratedPower()
/openthread-latest/src/core/net/
Ddns_client.cpp1655 if (mLimitedQueryServers.IsFull()) in RecordServerAsLimitedToSingleQuestion()
/openthread-latest/src/core/border_router/
Drouting_manager.cpp2916 if (!mOldLocalPrefixes.IsFull()) in DeprecateOldPrefix()