Lines Matching refs:ctx_state
14 extern void __context_tracking_enter(enum ctx_state state);
15 extern void __context_tracking_exit(enum ctx_state state);
17 extern void context_tracking_enter(enum ctx_state state);
18 extern void context_tracking_exit(enum ctx_state state);
34 static inline enum ctx_state exception_enter(void) in exception_enter()
36 enum ctx_state prev_ctx; in exception_enter()
48 static inline void exception_exit(enum ctx_state prev_ctx) in exception_exit()
64 static inline enum ctx_state ct_state(void) in ct_state()
72 static inline enum ctx_state exception_enter(void) { return 0; } in exception_enter()
73 static inline void exception_exit(enum ctx_state prev_ctx) { } in exception_exit()
74 static inline enum ctx_state ct_state(void) { return CONTEXT_DISABLED; } in ct_state()