HomeSort by: relevance | last modified time | path
    Searched defs:trap (Results 1 - 25 of 138) sorted by relevancy

1 2 3 4 5 6

  /src/sys/arch/luna68k/stand/boot/
trap.c 1 /* $NetBSD: trap.c,v 1.3 2023/04/22 10:00:24 tsutsui Exp $ */
37 * @(#)trap.c 8.1 (Berkeley) 6/10/93
70 * @(#)trap.c 8.1 (Berkeley) 6/10/93
88 "Trace trap",
90 "SSIR trap",
94 "Async system trap"
99 * Called from the trap handler when a processor trap occurs.
102 trap(int type, unsigned int code, unsigned int v, struct frame frame) function in typeref:typename:void
107 printf("trap type %d, code = %x, v = %x\n", type, code, v)
    [all...]
trap.c 1 /* $NetBSD: trap.c,v 1.3 2023/04/22 10:00:24 tsutsui Exp $ */
37 * @(#)trap.c 8.1 (Berkeley) 6/10/93
70 * @(#)trap.c 8.1 (Berkeley) 6/10/93
88 "Trace trap",
90 "SSIR trap",
94 "Async system trap"
99 * Called from the trap handler when a processor trap occurs.
102 trap(int type, unsigned int code, unsigned int v, struct frame frame) function in typeref:typename:void
107 printf("trap type %d, code = %x, v = %x\n", type, code, v)
    [all...]
trap.c 1 /* $NetBSD: trap.c,v 1.3 2023/04/22 10:00:24 tsutsui Exp $ */
37 * @(#)trap.c 8.1 (Berkeley) 6/10/93
70 * @(#)trap.c 8.1 (Berkeley) 6/10/93
88 "Trace trap",
90 "SSIR trap",
94 "Async system trap"
99 * Called from the trap handler when a processor trap occurs.
102 trap(int type, unsigned int code, unsigned int v, struct frame frame) function in typeref:typename:void
107 printf("trap type %d, code = %x, v = %x\n", type, code, v)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/
nv50.h 25 u32 trap; member in struct:nv50_fb_func
nv50.h 25 u32 trap; member in struct:nv50_fb_func
nv50.h 25 u32 trap; member in struct:nv50_fb_func
  /src/sys/arch/hp300/stand/common/
machdep.c 109 trap(struct trapframe *fp) function in typeref:typename:int
121 printf("Got unexpected trap: format=%x vector=%x ps=%x pc=%x\n",
machdep.c 109 trap(struct trapframe *fp) function in typeref:typename:int
121 printf("Got unexpected trap: format=%x vector=%x ps=%x pc=%x\n",
machdep.c 109 trap(struct trapframe *fp) function in typeref:typename:int
121 printf("Got unexpected trap: format=%x vector=%x ps=%x pc=%x\n",
  /src/games/hack/
def.trap.h 1 /* $NetBSD: def.trap.h,v 1.6 2011/08/06 20:18:26 dholland Exp $ */
66 struct trap { struct
67 struct trap *ntrap;
74 extern struct trap *ftrap;
75 #define newtrap() ((struct trap *) alloc(sizeof(struct trap)))
hack.search.c 77 struct trap *ttmp;
122 struct trap *trap; local in function:dosearch
157 for (trap = ftrap; trap; trap = trap->ntrap)
158 if (trap->tx == x && trap->ty == y &&
159 !trap->tseen && !rn2(8))
179 struct trap *trap; local in function:doidtrap
    [all...]
def.trap.h 1 /* $NetBSD: def.trap.h,v 1.6 2011/08/06 20:18:26 dholland Exp $ */
66 struct trap { struct
67 struct trap *ntrap;
74 extern struct trap *ftrap;
75 #define newtrap() ((struct trap *) alloc(sizeof(struct trap)))
hack.search.c 77 struct trap *ttmp;
122 struct trap *trap; local in function:dosearch
157 for (trap = ftrap; trap; trap = trap->ntrap)
158 if (trap->tx == x && trap->ty == y &&
159 !trap->tseen && !rn2(8))
179 struct trap *trap; local in function:doidtrap
    [all...]
def.trap.h 1 /* $NetBSD: def.trap.h,v 1.6 2011/08/06 20:18:26 dholland Exp $ */
66 struct trap { struct
67 struct trap *ntrap;
74 extern struct trap *ftrap;
75 #define newtrap() ((struct trap *) alloc(sizeof(struct trap)))
hack.search.c 77 struct trap *ttmp;
122 struct trap *trap; local in function:dosearch
157 for (trap = ftrap; trap; trap = trap->ntrap)
158 if (trap->tx == x && trap->ty == y &&
159 !trap->tseen && !rn2(8))
179 struct trap *trap; local in function:doidtrap
    [all...]
  /src/sys/arch/sandpoint/stand/altboot/
entry.S 276 .globl trap
277 trap: label
329 subi 3,3,call_handler-trap
entry.S 276 .globl trap
277 trap: label
329 subi 3,3,call_handler-trap
  /src/sys/arch/next68k/stand/boot/
machdep.c 106 int trap(struct trapframe *);
109 trap(struct trapframe *fp) function in typeref:typename:int
116 printf("Got unexpected trap: format=%x vector=%x sr=%x pc=%x\n",
machdep.c 106 int trap(struct trapframe *);
109 trap(struct trapframe *fp) function in typeref:typename:int
116 printf("Got unexpected trap: format=%x vector=%x sr=%x pc=%x\n",
  /src/sys/arch/luna68k/luna68k/
trap.c 1 /* $NetBSD: trap.c,v 1.80 2024/01/20 00:15:31 thorpej Exp $ */
36 * from: Utah $Hdr: trap.c 1.37 92/12/20$
38 * @(#)trap.c 8.5 (Berkeley) 1/4/94
42 __KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.80 2024/01/20 00:15:31 thorpej Exp $");
64 #include <machine/trap.h>
74 void trap(struct frame *fp, int type, u_int code, u_int v);
94 "Trace trap",
96 "SSIR trap",
100 "Async system trap"
145 * trap and syscall both need the following work done before returnin
222 trap(struct frame *fp, int type, unsigned code, unsigned v) function in typeref:typename:void
    [all...]
trap.c 1 /* $NetBSD: trap.c,v 1.80 2024/01/20 00:15:31 thorpej Exp $ */
36 * from: Utah $Hdr: trap.c 1.37 92/12/20$
38 * @(#)trap.c 8.5 (Berkeley) 1/4/94
42 __KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.80 2024/01/20 00:15:31 thorpej Exp $");
64 #include <machine/trap.h>
74 void trap(struct frame *fp, int type, u_int code, u_int v);
94 "Trace trap",
96 "SSIR trap",
100 "Async system trap"
145 * trap and syscall both need the following work done before returnin
222 trap(struct frame *fp, int type, unsigned code, unsigned v) function in typeref:typename:void
    [all...]
  /src/sys/arch/mac68k/mac68k/
trap.c 1 /* $NetBSD: trap.c,v 1.154 2024/01/20 00:15:32 thorpej Exp $ */
36 * from: Utah $Hdr: trap.c 1.37 92/12/20$
38 * @(#)trap.c 8.5 (Berkeley) 1/4/94
42 __KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.154 2024/01/20 00:15:32 thorpej Exp $");
73 #include <machine/trap.h>
96 "Trace trap",
98 "SSIR trap",
102 "Async system trap"
147 /* trap() only called from locore */
148 void trap(struct frame *, int, u_int, u_int)
232 trap(struct frame *fp, int type, u_int code, u_int v) function in typeref:typename:void
    [all...]
trap.c 1 /* $NetBSD: trap.c,v 1.154 2024/01/20 00:15:32 thorpej Exp $ */
36 * from: Utah $Hdr: trap.c 1.37 92/12/20$
38 * @(#)trap.c 8.5 (Berkeley) 1/4/94
42 __KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.154 2024/01/20 00:15:32 thorpej Exp $");
73 #include <machine/trap.h>
96 "Trace trap",
98 "SSIR trap",
102 "Async system trap"
147 /* trap() only called from locore */
148 void trap(struct frame *, int, u_int, u_int)
232 trap(struct frame *fp, int type, u_int code, u_int v) function in typeref:typename:void
    [all...]
  /src/sys/arch/vax/vax/
trap.c 1 /* $NetBSD: trap.c,v 1.143 2025/04/05 11:20:30 riastradh Exp $ */
31 __KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.143 2025/04/05 11:20:30 riastradh Exp $");
46 #include <machine/trap.h>
62 void trap (struct trapframe *);
71 "arithmetic trap",
72 "asynchronous system trap",
75 "trace trap",
82 "kernel debugger trap"
89 trap(struct trapframe *tf) function in typeref:typename:void
117 if(faultdebug)printf("Trap: type %lx, code %lx, pc %lx, psl %lx\n"
    [all...]
trap.c 1 /* $NetBSD: trap.c,v 1.143 2025/04/05 11:20:30 riastradh Exp $ */
31 __KERNEL_RCSID(0, "$NetBSD: trap.c,v 1.143 2025/04/05 11:20:30 riastradh Exp $");
46 #include <machine/trap.h>
62 void trap (struct trapframe *);
71 "arithmetic trap",
72 "asynchronous system trap",
75 "trace trap",
82 "kernel debugger trap"
89 trap(struct trapframe *tf) function in typeref:typename:void
117 if(faultdebug)printf("Trap: type %lx, code %lx, pc %lx, psl %lx\n"
    [all...]

Completed in 133 milliseconds

1 2 3 4 5 6