Searched refs:log_buf (Results 1 – 5 of 5) sorted by relevance
/Zephyr-Core-3.5.0/subsys/debug/coredump/ |
D | coredump_backend_logging.c | 24 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/ |
D | log_backend_adsp.c | 43 static uint8_t log_buf[LOG_BUF_SIZE]; variable 45 LOG_OUTPUT_DEFINE(log_output_adsp, char_out, log_buf, sizeof(log_buf));
|
D | log_backend_adsp_mtrace.c | 153 static uint8_t log_buf[LOG_BUF_SIZE]; variable 155 LOG_OUTPUT_DEFINE(log_output_adsp_mtrace, char_out, log_buf, sizeof(log_buf));
|
D | log_backend_adsp_hda.c | 191 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/ |
D | main.c | 365 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()
|