Searched refs:aBytes (Results 1 – 10 of 10) sorted by relevance
/openthread-latest/src/cli/ |
D | cli_utils.hpp | 274 void OutputBytes(const uint8_t *aBytes, uint16_t aLength); 283 void OutputBytesLine(const uint8_t *aBytes, uint16_t aLength); 292 template <uint8_t kBytesLength> void OutputBytes(const uint8_t (&aBytes)[kBytesLength]) in OutputBytes() 294 OutputBytes(aBytes, kBytesLength); in OutputBytes() 305 template <uint8_t kBytesLength> void OutputBytesLine(const uint8_t (&aBytes)[kBytesLength]) in OutputBytesLine() 307 OutputBytesLine(aBytes, kBytesLength); in OutputBytesLine()
|
D | cli_utils.cpp | 111 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()
|
D | cli.hpp | 100 extern "C" void otCliOutputBytes(const uint8_t *aBytes, uint8_t aLength); 124 friend void otCliOutputBytes(const uint8_t *aBytes, uint8_t aLength);
|
D | cli.cpp | 8377 extern "C" void otCliOutputBytes(const uint8_t *aBytes, uint8_t aLength) in otCliOutputBytes() argument 8379 Interpreter::GetInterpreter().OutputBytes(aBytes, aLength); in otCliOutputBytes()
|
/openthread-latest/tests/unit/ |
D | test_heap_string.cpp | 167 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-latest/src/core/net/ |
D | nd6.cpp | 231 Error TxMessage::AppendBytes(const uint8_t *aBytes, uint16_t aLength) in AppendBytes() argument 239 byte = (aBytes == nullptr) ? 0 : *aBytes++; in AppendBytes()
|
D | nd6.hpp | 513 Error AppendBytes(const uint8_t *aBytes, uint16_t aLength);
|
/openthread-latest/include/openthread/ |
D | cli.h | 113 void otCliOutputBytes(const uint8_t *aBytes, uint8_t aLength);
|
/openthread-latest/src/core/common/ |
D | string.cpp | 350 StringWriter &StringWriter::AppendHexBytes(const uint8_t *aBytes, uint16_t aLength) in AppendHexBytes() argument 354 Append("%02x", *aBytes++); in AppendHexBytes()
|
D | string.hpp | 456 StringWriter &AppendHexBytes(const uint8_t *aBytes, uint16_t aLength);
|