Searched refs:log_buf (Results  1 – 4 of 4) sorted by relevance
| /Zephyr-latest/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-latest/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 | 154 static uint8_t log_buf[LOG_BUF_SIZE];  variable 156 LOG_OUTPUT_DEFINE(log_output_adsp_mtrace, char_out, log_buf, sizeof(log_buf));
  | 
| /Zephyr-latest/tests/subsys/logging/log_api/src/ | 
| D | main.c | 390 static uint8_t log_buf[CONFIG_LOG_BUFFER_SIZE];  variable 407 		log_buf[i] = i;  in ZTEST() 416 					 LOG_LEVEL_INF, "hexdump", log_buf, hexdump_len);  in ZTEST() 421 					log_buf, hexdump_len);  in ZTEST() 428 	LOG_HEXDUMP_INF(log_buf, hexdump_len, "hexdump");  in ZTEST() 442 					 LOG_LEVEL_INF, "test", log_buf, hexdump_len + 1);  in ZTEST() 452 	LOG_HEXDUMP_INF(log_buf, hexdump_len + 1, "test");  in ZTEST()
  |