Home
last modified time | relevance | path

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

/Zephyr-Core-3.5.0/subsys/debug/coredump/
Dcoredump_backend_logging.c24 static char log_buf[LOG_BUF_SZ_RAW]; variable
62 if (hex2char(buf[i] >> 4, &log_buf[log_ptr]) < 0) { in coredump_logging_backend_buffer_output()
68 if (hex2char(buf[i] & 0xf, &log_buf[log_ptr]) < 0) { in coredump_logging_backend_buffer_output()
78 log_buf[log_ptr] = '\0'; in coredump_logging_backend_buffer_output()
79 LOG_ERR(COREDUMP_PREFIX_STR "%s", log_buf); in coredump_logging_backend_buffer_output()
/Zephyr-Core-3.5.0/subsys/logging/backends/
Dlog_backend_adsp.c43 static uint8_t log_buf[LOG_BUF_SIZE]; variable
45 LOG_OUTPUT_DEFINE(log_output_adsp, char_out, log_buf, sizeof(log_buf));
Dlog_backend_adsp_mtrace.c153 static uint8_t log_buf[LOG_BUF_SIZE]; variable
155 LOG_OUTPUT_DEFINE(log_output_adsp_mtrace, char_out, log_buf, sizeof(log_buf));
Dlog_backend_adsp_hda.c191 static uint8_t log_buf[LOG_BUF_SIZE]; variable
192 LOG_OUTPUT_DEFINE(log_output_adsp_hda, hda_log_out, log_buf, LOG_BUF_SIZE);
/Zephyr-Core-3.5.0/tests/subsys/logging/log_api/src/
Dmain.c365 static uint8_t log_buf[CONFIG_LOG_BUFFER_SIZE]; variable
382 log_buf[i] = i; in ZTEST()
391 LOG_LEVEL_INF, "hexdump", log_buf, hexdump_len); in ZTEST()
396 log_buf, hexdump_len); in ZTEST()
403 LOG_HEXDUMP_INF(log_buf, hexdump_len, "hexdump"); in ZTEST()
417 LOG_LEVEL_INF, "test", log_buf, hexdump_len + 1); in ZTEST()
427 LOG_HEXDUMP_INF(log_buf, hexdump_len + 1, "test"); in ZTEST()