Home
last modified time | relevance | path

Searched full:panic (Results 1 – 25 of 101) sorted by relevance

12345

/Zephyr-latest/soc/raspberrypi/rpi_pico/common/
Dsoc.c25 * Some pico-sdk drivers call panic on fatal error.
26 * This alternative implementation of panic handles the panic
29 void __attribute__((noreturn)) panic(const char *fmt, ...) in panic() function
/Zephyr-latest/subsys/logging/backends/
Dlog_backend_spinel.c54 static void panic(struct log_backend const *const backend) in panic() function
72 /* In panic mode otPlatLog implemented for Spinel protocol in write()
106 .panic = panic,
Dlog_backend_semihost.c30 static void panic(struct log_backend const *const backend) in panic() function
65 .panic = panic,
Dlog_backend_efi_console.c67 static void panic(struct log_backend const *const backend) in panic() function
82 .panic = panic,
Dlog_backend_xtensa_sim.c56 static void panic(struct log_backend const *const backend) in panic() function
70 .panic = panic,
Dlog_backend_native_posix.c61 static void panic(struct log_backend const *const backend) in panic() function
91 .panic = panic,
Dlog_backend_adsp.c58 static void panic(struct log_backend const *const backend) in panic() function
94 .panic = panic,
Dlog_multidomain_backend.c22 if (backend_remote->panic) { in process()
215 static void panic(struct log_backend const *const backend) in panic() function
219 backend_remote->panic = true; in panic()
242 .panic = panic,
Dlog_backend_adsp_mtrace.c135 /* if we are in panic mode, need to flush out asap */ in char_out()
169 static void panic(struct log_backend const *const backend) in panic() function
212 .panic = panic,
Dlog_backend_rtt.c190 /* In panic mode block on each write until host reads it. This in on_write()
274 static void panic(struct log_backend const *const backend) in panic() function
305 .panic = panic,
Dlog_backend_ble.c171 static void panic(struct log_backend const *const backend) in panic() function
193 .panic = panic,
Dlog_backend_ws.c206 static void panic(struct log_backend const *const backend) in panic() function
212 .panic = panic,
/Zephyr-latest/tests/subsys/logging/log_api/src/
Dmock_backend.c20 mock->panic = false; in mock_log_backend_reset()
96 void mock_log_backend_validate(const struct log_backend *backend, bool panic) in mock_log_backend_validate() argument
104 zassert_equal(mock->panic, panic); in mock_log_backend_validate()
204 static void panic(struct log_backend const *const backend) in panic() function
208 mock->panic = true; in panic()
233 .panic = panic,
Dmock_frontend.c13 bool panic; member
58 void mock_log_frontend_validate(bool panic) in mock_log_frontend_validate() argument
64 mock_log_backend_validate(&backend, panic); in mock_log_frontend_validate()
143 mock.panic = true; in log_frontend_panic()
Dmock_backend.h31 bool panic; member
72 void mock_log_backend_validate(const struct log_backend *backend, bool panic);
Dmock_frontend.h29 void mock_log_frontend_validate(bool panic);
/Zephyr-latest/tests/subsys/logging/log_switch_format/src/
Dmock_backend.c110 static void panic(struct log_backend const *const backend) in panic() function
119 .panic = panic
/Zephyr-latest/include/zephyr/logging/
Dlog_ctrl.h79 * @brief Switch the logger subsystem to the panic mode.
81 * Returns immediately if the logger is already in the panic mode.
83 * @details On panic the logger subsystem informs all backends about panic mode.
85 * are flushed after switching to panic mode. In panic mode, all log
/Zephyr-latest/tests/subsys/logging/log_syst/src/
Dmock_backend.c120 static void panic(struct log_backend const *const backend) in panic() function
129 .panic = panic
/Zephyr-latest/tests/subsys/logging/log_benchmark/src/
Dmain.c34 bool panic; member
52 static void panic(struct log_backend const *const backend) in panic() function
56 cb->panic = true; in panic()
68 .panic = panic,
/Zephyr-latest/tests/arch/arm/arm_hardfault_validation/
DREADME.txt42 E: >>> ZEPHYR FATAL ERROR 4: Kernel panic on CPU 0
46 Assert occurring inside kernel panic
55 E: >>> ZEPHYR FATAL ERROR 4: Kernel panic on CPU 0
/Zephyr-latest/tests/subsys/logging/log_blocking/src/
Dmain.c119 static void panic(struct log_backend const *const backend) in panic() function
122 /* Don't panic! */ in panic()
136 .panic = panic,
/Zephyr-latest/tests/subsys/logging/log_backend_init/src/
Dmain.c58 static void panic(const struct log_backend *const backend) in panic() function
91 .panic = panic
/Zephyr-latest/kernel/
Dfatal.c72 return "Kernel panic"; in reason_to_str()
124 * Policy for fatal errors in ISRs: unconditionally panic. in z_fatal_error()
136 "Attempted to recover from a kernel panic condition"); in z_fatal_error()
/Zephyr-latest/tests/kernel/fatal/no-multithreading/
Dtestcase.yaml28 kernel.no-mt.panic:

12345