Home
last modified time | relevance | path

Searched refs:__panic (Results 1 – 3 of 3) sorted by relevance

/optee_os/core/include/kernel/
H A Dpanic.h13 #define __panic(str) __do_panic(__FILE__, __LINE__, __func__, str) macro
15 #define __panic(str) __do_panic((void *)0, 0, (void *)0, str) macro
31 #define _panic0() __panic((void *)0)
32 #define _panic1(s) __panic(s)
/optee_os/ldelf/
H A Dsys.h18 #define panic() __panic(__FILE__, __LINE__, __func__)
20 #define panic() __panic(NULL, 0, NULL)
28 void __noreturn __panic(const char *file, const int line, const char *func);
H A Dsys.c15 void __panic(const char *file __maybe_unused, const int line __maybe_unused, in __panic() function