Home
last modified time | relevance | path

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

/openthread-latest/src/lib/spinel/
Dlogger.cpp518 char debugString[OPENTHREAD_LIB_SPINEL_NCP_LOG_MAX_SIZE + 1]; in LogSpinelFrame() local
519 spinel_size_t stringLength = sizeof(debugString); in LogSpinelFrame()
521 …unpacked = spinel_datatype_unpack_in_place(data, len, SPINEL_DATATYPE_DATA_S, debugString, &string… in LogSpinelFrame()
522 assert(stringLength < sizeof(debugString)); in LogSpinelFrame()
524 debugString[stringLength] = '\0'; in LogSpinelFrame()
525 start += Snprintf(start, static_cast<uint32_t>(end - start), ", debug:%s", debugString); in LogSpinelFrame()