Lines Matching refs:ctx_state
15 extern void __context_tracking_enter(enum ctx_state state);
16 extern void __context_tracking_exit(enum ctx_state state);
18 extern void context_tracking_enter(enum ctx_state state);
19 extern void context_tracking_exit(enum ctx_state state);
48 static inline enum ctx_state exception_enter(void) in exception_enter()
50 enum ctx_state prev_ctx; in exception_enter()
62 static inline void exception_exit(enum ctx_state prev_ctx) in exception_exit()
78 static inline enum ctx_state ct_state(void) in ct_state()
88 static inline enum ctx_state exception_enter(void) { return 0; } in exception_enter()
89 static inline void exception_exit(enum ctx_state prev_ctx) { } in exception_exit()
90 static inline enum ctx_state ct_state(void) { return CONTEXT_DISABLED; } in ct_state()