Searched refs:aMaxLength (Results 1 – 5 of 5) sorted by relevance
/openthread-3.4.0/src/core/common/ |
D | string.cpp | 90 uint16_t StringLength(const char *aString, uint16_t aMaxLength) in StringLength() argument 94 for (ret = 0; (ret < aMaxLength) && (aString[ret] != kNullChar); ret++) in StringLength()
|
D | string.hpp | 82 uint16_t StringLength(const char *aString, uint16_t aMaxLength);
|
D | settings.cpp | 406 Error Settings::ReadEntry(Key aKey, void *aValue, uint16_t aMaxLength) const in ReadEntry() 409 uint16_t length = aMaxLength; in ReadEntry()
|
D | settings.hpp | 1253 Error ReadEntry(Key aKey, void *aValue, uint16_t aMaxLength) const;
|
/openthread-3.4.0/src/core/meshcop/ |
D | meshcop_tlvs.hpp | 178 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()
|