Symbol: kdb_trap
sys/arch/aarch64/aarch64/trap.c
234
kdb_trap(DB_TRAP_BREAKPOINT, tf);
sys/arch/aarch64/aarch64/trap.c
236
kdb_trap(DB_TRAP_BKPT_INSN, tf);
sys/arch/aarch64/aarch64/trap.c
238
kdb_trap(DB_TRAP_WATCHPOINT, tf);
sys/arch/aarch64/aarch64/trap.c
240
kdb_trap(DB_TRAP_SW_STEP, tf);
sys/arch/aarch64/aarch64/trap.c
242
kdb_trap(DB_TRAP_UNKNOWN, tf);
sys/arch/aarch64/include/db_machdep.h
97
int kdb_trap(int, struct trapframe *);
sys/arch/amd64/amd64/trap.c
222
if (kdb_trap(type, 0, frame))
sys/arch/amd64/amd64/trap.c
237
if (kdb_trap(type, 0, frame))
sys/arch/amd64/amd64/trap.c
314
if (kdb_trap(type, 0, frame))
sys/arch/amd64/include/db_machdep.h
134
int kdb_trap(int, int, db_regs_t *);
sys/arch/arm/arm/undefined.c
466
kdb_trap(T_FAULT, tf);
sys/arch/arm/arm32/db_interface.c
319
kdb_trap(T_BREAKPOINT, frame);
sys/arch/arm/arm32/db_interface.c
321
kdb_trap(-1, frame);
sys/arch/arm/arm32/fault.c
606
kdb_trap(T_FAULT, tf);
sys/arch/arm/include/db_machdep.h
121
int kdb_trap(int, db_regs_t *);
sys/arch/arm/pic/pic.c
155
kdb_trap(-1, arg);
sys/arch/hppa/hppa/trap.c
253
handled = kdb_trap(type, code, frame);
sys/arch/hppa/include/db_machdep.h
127
int kdb_trap(int, int, db_regs_t *);
sys/arch/i386/i386/trap.c
346
if (kdb_trap(type, 0, frame))
sys/arch/i386/i386/trap.c
777
if (kdb_trap(type, 0, frame))
sys/arch/i386/include/db_machdep.h
133
int kdb_trap(int, int, db_regs_t *);
sys/arch/m68k/fpe/fpu_emulate.c
231
kdb_trap(-1, (db_regs_t *)&frame);
sys/arch/m68k/include/db_machdep.h
105
int kdb_trap(int, db_regs_t *);
sys/arch/m68k/m68k/db_interface.c
70
kdb_trap(-1, regs);
sys/arch/m68k/m68k/m68k_trap.c
555
if (kdb_trap(type, tf)) {
sys/arch/m68k/m68k/m68k_trap.c
718
(void)kdb_trap(type, (db_regs_t *)fp);
sys/arch/mips/include/db_machdep.h
94
int kdb_trap(int, struct reg *);
sys/arch/mips/mips/trap.c
270
kdb_trap(type, &tf->tf_registers);
sys/arch/mips/mips/trap.c
564
kdb_trap(type, &tf->tf_registers);
sys/arch/powerpc/booke/trap.c
673
if (kdb_trap(tf->tf_exc, tf)) {
sys/arch/powerpc/booke/trap.c
693
if (kdb_trap(tf->tf_exc, tf)) {
sys/arch/powerpc/ibm4xx/trap.c
449
if (kdb_trap(type, tf))
sys/arch/powerpc/include/db_machdep.h
163
int kdb_trap(int, void *);
sys/arch/powerpc/powerpc/db_interface.c
184
return kdb_trap(tf->tf_exc, tf);
sys/arch/powerpc/powerpc/db_interface.c
196
return kdb_trap(type, tf);
sys/arch/powerpc/powerpc/trap.c
497
if (kdb_trap(type, tf))
sys/arch/riscv/include/db_machdep.h
96
int kdb_trap(int, db_regs_t *);
sys/arch/riscv/riscv/trap.c
565
kdb_trap(cause, tf);
sys/arch/sh3/include/db_machdep.h
97
int kdb_trap(int, int, db_regs_t *);
sys/arch/sh3/sh3/exception.c
250
if (kdb_trap(expevt, code, tf))
sys/arch/sparc/include/db_machdep.h
112
int kdb_trap(int, struct trapframe *);
sys/arch/sparc/sparc/db_interface.c
160
kdb_trap(-1, tf);
sys/arch/sparc/sparc/trap.c
245
if (kdb_trap(type, tf)) {
sys/arch/sparc/sparc/trap.c
302
(void) kdb_trap(type, tf);
sys/arch/sparc64/include/db_machdep.h
133
int kdb_trap(int, struct trapframe64 *);
sys/arch/sparc64/sparc64/db_interface.c
186
kdb_trap(-1, tf);
sys/arch/sparc64/sparc64/trap.c
146
#define DEBUGGER(t,f) do { kdb_trap(t,f); } while (0)
sys/arch/sparc64/sparc64/trap.c
494
kdb_trap(type, tf);
sys/arch/sparc64/sparc64/trap.c
509
if (kdb_trap(type, tf)) {
sys/arch/sparc64/sparc64/trap.c
515
if (kdb_trap(type, tf)) {
sys/arch/sparc64/sparc64/trap.c
762
kdb_trap(type, tf);
sys/arch/vax/include/db_machdep.h
80
void kdb_trap(struct trapframe *);
sys/arch/vax/vax/trap.c
125
kdb_trap(tf);
sys/arch/vax/vax/trap.c
327
kdb_trap(tf);
sys/arch/x86/x86/x86_stub.c
38
__weak_alias(kdb_trap, x86_zeroop);