Lines Matching full:handler
9 * @brief NMI handler infrastructure
11 * Provides a boot time handler that simply hangs in a sleep loop, and a run
12 * time handler that resets the CPU. Also provides a mechanism for hooking a
13 * custom run time handler.
25 #define handler z_SysNmiOnReset macro
30 static _NmiHandler_t handler = z_SysNmiOnReset; variable
34 * @brief Install a custom runtime NMI handler
37 * handler that reboots. It should be installed after the console is
44 handler = pHandler; in z_arm_nmi_set_handler()
50 * @brief Handler installed in the vector table
52 * Simply call what is installed in 'static void(*handler)(void)'.
58 handler(); in z_arm_nmi()