Lines Matching refs:trapframe
107 void trap(struct trapframe *frame);
108 void syscall(struct trapframe *frame);
110 static int trap_pfault(struct trapframe *, bool, vm_offset_t, int *, int *);
111 static void trap_fatal(struct trapframe *, vm_offset_t);
113 static bool trap_user_dtrace(struct trapframe *,
114 int (**hook)(struct trapframe *));
217 trap(struct trapframe *frame) in trap()
741 trap_pfault(struct trapframe *frame, bool usermode, vm_offset_t eva, in trap_pfault()
883 trap_fatal(struct trapframe *frame, vm_offset_t eva) in trap_fatal()
973 trap_user_dtrace(struct trapframe *frame, int (**hookp)(struct trapframe *)) in trap_user_dtrace() argument
975 int (*hook)(struct trapframe *); in trap_user_dtrace()
1030 struct trapframe *frame; in cpu_fetch_syscall_args()
1123 syscall(struct trapframe *frame) in syscall()