Home
last modified time | relevance | path

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

/openthread-latest/src/core/common/
Ddata.hpp113 …using LengthType = typename TypeTraits::Conditional<kDataLengthType == kWithUint8Length, uint8_t, … typedef in ot::Data
121 void Init(const void *aBuffer, LengthType aLength) in Init()
138 Init(aStart, static_cast<LengthType>(aEnd - aStart)); in InitFromRange()
166 LengthType GetLength(void) const { return mLength; } in GetLength()
173 void SetLength(LengthType aLength) { mLength = aLength; } in SetLength()
243 LengthType mLength;
267 using LengthType = typename Base::LengthType; typedef in ot::MutableData
275 void Init(void *aBuffer, LengthType aLength) { Base::Init(aBuffer, aLength); } in Init()
335 Error CopyBytesFrom(const uint8_t *aBuffer, LengthType aLength) in CopyBytesFrom()