HomeSort by: relevance | last modified time | path
    Searched refs:trap_type (Results 1 - 25 of 43) sorted by relevancy

1 2

  /src/sys/arch/luna68k/stand/boot/
trap.c 80 const char *trap_type[] = { variable in typeref:typename:const char * []
96 #define TRAP_TYPES (sizeof trap_type / sizeof trap_type[0])
111 panic(trap_type[type]);
  /src/sys/arch/hppa/hppa/
db_interface.c 57 extern const char *trap_type[];
79 db_printf("%s", trap_type[type]);
  /src/sys/arch/m68k/m68k/
db_interface.c 135 extern char *trap_type[];
149 printf("%s", trap_type[type]);
  /src/sys/arch/amd64/stand/prekern/
prekern.c 80 static char *trap_type[] = { variable in typeref:typename:char * []
103 static int trap_types = __arraycount(trap_type);
115 buf = trap_type[trapno];
  /src/sys/arch/sparc/include/
trap.h 137 extern const char *trap_type[];
  /src/games/rogue/
trap.c 82 for (i = 0; ((i < MAX_TRAPS) && (traps[i].trap_type != NO_TRAP)); i++) {
84 return(traps[i].trap_type);
164 traps[i].trap_type = get_rand(0, (TRAPS - 1));
  /src/sys/arch/sun2/sun2/
trap.c 142 const char *trap_type[] = { variable in typeref:typename:const char * []
162 u_int trap_types = sizeof(trap_type) / sizeof(trap_type[0]);
304 panic(trap_type[type]);
611 printf("%s", trap_type[type]);
  /src/sys/arch/sun3/sun3/
trap.c 151 const char *trap_type[] = { variable in typeref:typename:const char * []
171 u_int trap_types = sizeof(trap_type) / sizeof(trap_type[0]);
311 panic(trap_type[type]);
626 printf("%s", trap_type[type]);
  /src/sys/arch/atari/atari/
trap.c 97 const char *trap_type[] = { variable in typeref:typename:const char * []
113 int trap_types = sizeof trap_type / sizeof trap_type[0];
292 panic(trap_type[type]);
  /src/sys/arch/cesfic/cesfic/
trap.c 98 const char *trap_type[] = { variable in typeref:typename:const char * []
114 int trap_types = sizeof trap_type / sizeof trap_type[0];
316 panic(trap_type[type]);
  /src/sys/arch/hp300/hp300/
trap.c 94 const char *trap_type[] = { variable in typeref:typename:const char * []
110 const int trap_types = sizeof trap_type / sizeof trap_type[0];
312 panic(trap_type[type]);
  /src/sys/arch/luna68k/luna68k/
trap.c 86 const char *trap_type[] = { variable in typeref:typename:const char * []
102 int trap_types = sizeof trap_type / sizeof trap_type[0];
283 panic(trap_type[type]);
  /src/sys/arch/mac68k/mac68k/
trap.c 88 const char *trap_type[] = { variable in typeref:typename:const char * []
104 int trap_types = sizeof trap_type / sizeof trap_type[0];
295 panic(trap_type[type]);
  /src/sys/arch/mvme68k/mvme68k/
trap.c 94 const char *trap_type[] = { variable in typeref:typename:const char * []
110 int trap_types = sizeof trap_type / sizeof trap_type[0];
337 panic(trap_type[type]);
  /src/sys/arch/news68k/news68k/
trap.c 87 const char *trap_type[] = { variable in typeref:typename:const char * []
103 const int trap_types = sizeof trap_type / sizeof trap_type[0];
305 panic(trap_type[type]);
  /src/sys/arch/next68k/next68k/
trap.c 102 const char *trap_type[] = { variable in typeref:typename:const char * []
118 int trap_types = sizeof trap_type / sizeof trap_type[0];
323 panic(trap_type[type]);
  /src/sys/arch/x68k/x68k/
trap.c 95 const char *trap_type[] = { variable in typeref:typename:const char * []
111 int trap_types = sizeof trap_type / sizeof trap_type[0];
315 panic(trap_type[type]);
  /src/sys/arch/virt68k/virt68k/
trap.c 94 const char *trap_type[] = { variable in typeref:typename:const char * []
110 int trap_types = sizeof trap_type / sizeof trap_type[0];
337 panic(trap_type[type]);
  /src/sys/arch/amd64/amd64/
trap.c 127 const char * const trap_type[] = { variable in typeref:typename:const char * const[]
150 int trap_types = __arraycount(trap_type);
197 printf("fatal %s", trap_type[type]);
322 printf("kgdb: ignored %s\n", trap_type[type]);
db_interface.c 71 extern const char *const trap_type[];
197 db_printf("%s", trap_type[type]);
  /src/sys/arch/amiga/amiga/
trap.c 142 const char *trap_type[] = { variable in typeref:typename:const char * []
158 int trap_types = sizeof trap_type / sizeof trap_type[0];
241 panic(trap_type[type]);
  /src/sys/arch/i386/i386/
trap.c 137 const char * const trap_type[] = { variable in typeref:typename:const char * const[]
160 int trap_types = __arraycount(trap_type);
232 printf("fatal %s", trap_type[type]);
354 printf("kgdb: ignored %s\n", trap_type[type]);
db_interface.c 72 extern const char *const trap_type[];
198 db_printf("%s", trap_type[type]);
  /src/sys/arch/sparc64/sparc64/
trap.c 184 const char *trap_type[] = { variable in typeref:typename:const char * []
360 #define N_TRAP_TYPES (sizeof trap_type / sizeof *trap_type)
475 type < N_TRAP_TYPES ? trap_type[type] :
490 type < N_TRAP_TYPES ? trap_type[type] :
597 panic("%s", type < N_TRAP_TYPES ? trap_type[type] : T);
628 pc, type, type < N_TRAP_TYPES ? trap_type[type] : T);
646 type, type < N_TRAP_TYPES ? trap_type[type] : T);
  /src/sys/arch/sparc/sparc/
trap.c 129 const char *trap_type[] = { variable in typeref:typename:const char * []
209 #define N_TRAP_TYPES (sizeof trap_type / sizeof *trap_type)
304 panic("%s", type < N_TRAP_TYPES ? trap_type[type] : T);

Completed in 28 milliseconds

1 2