Home
last modified time | relevance | path

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

/openthread-3.4.0/examples/platforms/utils/
Dlogging_rtt.c147 char logString[LOG_PARSE_BUFFER_SIZE + 1]; in utilsLogRttOutput()
152 length += logTimestamp(logString, LOG_PARSE_BUFFER_SIZE); in utilsLogRttOutput()
156 length += logLevel(&logString[length], (LOG_PARSE_BUFFER_SIZE - length), aLogLevel); in utilsLogRttOutput()
158 …charsWritten = vsnprintf(&logString[length], (size_t)(LOG_PARSE_BUFFER_SIZE - length), aFormat, ap… in utilsLogRttOutput()
162 if (length > LOG_PARSE_BUFFER_SIZE) in utilsLogRttOutput()
164 length = LOG_PARSE_BUFFER_SIZE; in utilsLogRttOutput()
Dlogging_rtt.h100 #ifndef LOG_PARSE_BUFFER_SIZE
101 #define LOG_PARSE_BUFFER_SIZE 128 macro