Lines Matching refs:sys_exception_handlers
84 exception_func_t sys_exception_handlers[32]; variable
209 for (i=0; i<sizeof(sys_exception_handlers)/sizeof(sys_exception_handlers[0]); i++) in install_default_exception_handler()
210 sys_exception_handlers[i] = (exception_func_t)unhandled_exception_handle; in install_default_exception_handler()
212 sys_exception_handlers[EX_MOD] = mod_handler; in install_default_exception_handler()
213 sys_exception_handlers[EX_TLBL] = tlbl_handler; in install_default_exception_handler()
214 sys_exception_handlers[EX_TLBS] = tlbs_handler; in install_default_exception_handler()
215 sys_exception_handlers[EX_ADEL] = adel_handler; in install_default_exception_handler()
216 sys_exception_handlers[EX_ADES] = ades_handler; in install_default_exception_handler()
217 sys_exception_handlers[EX_FPE] = fpe_handler; in install_default_exception_handler()
233 exception_func_t old_handler = sys_exception_handlers[n]; in rt_set_except_vector()
240 sys_exception_handlers[n] = func; in rt_set_except_vector()
361 sys_exception_handlers[exc](ctx); in mips_exception_handler()