Home
last modified time | relevance | path

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

/Zephyr-latest/scripts/coredump/
Dcoredump_serial_log_parser.py12 COREDUMP_PREFIX_STR = "#CD:" variable
14 COREDUMP_BEGIN_STR = COREDUMP_PREFIX_STR + "BEGIN#"
15 COREDUMP_END_STR = COREDUMP_PREFIX_STR + "END#"
16 COREDUMP_ERROR_STR = COREDUMP_PREFIX_STR + "ERROR CANNOT DUMP#"
73 prefix_idx = line.find(COREDUMP_PREFIX_STR)
78 prefix_idx += len(COREDUMP_PREFIX_STR)
/Zephyr-latest/subsys/debug/coredump/
Dcoredump_backend_logging.c38 LOG_ERR(COREDUMP_PREFIX_STR COREDUMP_BEGIN_STR); in coredump_logging_backend_start()
44 LOG_ERR(COREDUMP_PREFIX_STR COREDUMP_ERROR_STR); in coredump_logging_backend_end()
47 LOG_ERR(COREDUMP_PREFIX_STR COREDUMP_END_STR); in coredump_logging_backend_end()
79 LOG_ERR(COREDUMP_PREFIX_STR "%s", log_buf); in coredump_logging_backend_buffer_output()
Dcoredump_backend_intel_adsp_mem_window.c34 LOG_ERR(COREDUMP_PREFIX_STR COREDUMP_BEGIN_STR); in coredump_mem_window_backend_start()
40 LOG_ERR(COREDUMP_PREFIX_STR COREDUMP_ERROR_STR); in coredump_mem_window_backend_end()
43 LOG_ERR(COREDUMP_PREFIX_STR COREDUMP_END_STR); in coredump_mem_window_backend_end()
Dcoredump_backend_flash_partition.c758 shell_print(sh, "%s%s", COREDUMP_PREFIX_STR, print_buf); in flush_print_buf()
850 shell_print(sh, "%s%s", COREDUMP_PREFIX_STR, COREDUMP_BEGIN_STR); in cmd_coredump_print_stored_dump()
854 shell_print(sh, "%s%s", COREDUMP_PREFIX_STR, print_buf); in cmd_coredump_print_stored_dump()
858 shell_print(sh, "%s%s", COREDUMP_PREFIX_STR, in cmd_coredump_print_stored_dump()
862 shell_print(sh, "%s%s", COREDUMP_PREFIX_STR, COREDUMP_END_STR); in cmd_coredump_print_stored_dump()
/Zephyr-latest/include/zephyr/debug/
Dcoredump.h26 #define COREDUMP_PREFIX_STR "#CD:" macro