Home
last modified time | relevance | path

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

/openthread-3.7.0/src/cli/
Dcli_utils.hpp294 void OutputBytes(const uint8_t *aBytes, uint16_t aLength);
304 void OutputBytesLine(const uint8_t *aBytes, uint16_t aLength);
314 template <uint8_t kBytesLength> void OutputBytes(const uint8_t (&aBytes)[kBytesLength]) in OutputBytes()
316 OutputBytes(aBytes, kBytesLength); in OutputBytes()
328 template <uint8_t kBytesLength> void OutputBytesLine(const uint8_t (&aBytes)[kBytesLength]) in OutputBytesLine()
330 OutputBytesLine(aBytes, kBytesLength); in OutputBytesLine()
Dcli_utils.cpp111 void Utils::OutputBytes(const uint8_t *aBytes, uint16_t aLength) in OutputBytes() argument
115 OutputFormat("%02x", aBytes[i]); in OutputBytes()
119 void Utils::OutputBytesLine(const uint8_t *aBytes, uint16_t aLength) in OutputBytesLine() argument
121 OutputBytes(aBytes, aLength); in OutputBytesLine()
Dcli.hpp106 extern "C" void otCliOutputBytes(const uint8_t *aBytes, uint8_t aLength);
130 friend void otCliOutputBytes(const uint8_t *aBytes, uint8_t aLength);
Dcli.cpp8548 extern "C" void otCliOutputBytes(const uint8_t *aBytes, uint8_t aLength) in otCliOutputBytes() argument
8550 Interpreter::GetInterpreter().OutputBytes(aBytes, aLength); in otCliOutputBytes()
/openthread-3.7.0/tests/unit/
Dtest_heap_string.cpp167 void VerifyData(const Heap::Data &aData, const uint8_t *aBytes, uint16_t aLength) in VerifyData() argument
174 VerifyOrQuit(aData.Matches(aBytes, aLength)); in VerifyData()
175 VerifyOrQuit(!aData.Matches(aBytes, aLength + 1)); in VerifyData()
189 VerifyOrQuit(memcmp(aData.GetBytes(), aBytes, aLength) == 0, "Data content is incorrect"); in VerifyData()
192 VerifyOrQuit(memcmp(buffer, aBytes, aLength) == 0, "CopyBytesTo() failed"); in VerifyData()
/openthread-3.7.0/src/core/net/
Dnd6.cpp230 Error RouterAdvert::TxMessage::AppendBytes(const uint8_t *aBytes, uint16_t aLength) in AppendBytes() argument
238 byte = (aBytes == nullptr) ? 0 : *aBytes++; in AppendBytes()
Dnd6.hpp845 Error AppendBytes(const uint8_t *aBytes, uint16_t aLength);
/openthread-3.7.0/include/openthread/
Dcli.h119 void otCliOutputBytes(const uint8_t *aBytes, uint8_t aLength);
/openthread-3.7.0/src/core/common/
Dstring.cpp345 StringWriter &StringWriter::AppendHexBytes(const uint8_t *aBytes, uint16_t aLength) in AppendHexBytes() argument
349 Append("%02x", *aBytes++); in AppendHexBytes()
Dstring.hpp481 StringWriter &AppendHexBytes(const uint8_t *aBytes, uint16_t aLength);