Home
last modified time | relevance | path

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

/openthread-3.4.0/src/core/common/
Dstring.cpp90 uint16_t StringLength(const char *aString, uint16_t aMaxLength) in StringLength() argument
94 for (ret = 0; (ret < aMaxLength) && (aString[ret] != kNullChar); ret++) in StringLength()
Dstring.hpp82 uint16_t StringLength(const char *aString, uint16_t aMaxLength);
Dsettings.cpp406 Error Settings::ReadEntry(Key aKey, void *aValue, uint16_t aMaxLength) const in ReadEntry()
409 uint16_t length = aMaxLength; in ReadEntry()
Dsettings.hpp1253 Error ReadEntry(Key aKey, void *aValue, uint16_t aMaxLength) const;
/openthread-3.4.0/src/core/meshcop/
Dmeshcop_tlvs.hpp178 static Error FindTlv(const Message &aMessage, Type aType, uint16_t aMaxLength, Tlv &aTlv) in FindTlv() argument
180 return ot::Tlv::FindTlv(aMessage, static_cast<uint8_t>(aType), aMaxLength, aTlv); in FindTlv()