Lines Matching defs:exception
379 * handling exception.
425 * @e_vector: The error vector of the exception that happened.
426 * @signo: The signal number of the exception that happened.
427 * @err_code: The error code of the exception that happened.
478 * Single step exception from kernel space to user space so
479 * eat the exception and continue the process:
699 * @exception: Exception vector number
702 * On some architectures we need to skip a breakpoint exception when
705 * Skip an int3 exception when it occurs after a breakpoint has been
709 int kgdb_skipexception(int exception, struct pt_regs *regs)
711 if (exception == 3 && kgdb_isremovedbreak(regs->ip - 1)) {
718 unsigned long kgdb_arch_pc(int exception, struct pt_regs *regs)
720 if (exception == 3)