Symbol: routine
lib/libc/include/reentrant.h
315
thr_once(once_t *once_control, void (*routine)(void))
lib/libc/include/reentrant.h
318
(*routine)();
lib/libpthread/pthread.h
176
#define pthread_cleanup_push(routine, arg) \
lib/libpthread/pthread.h
179
pthread__cleanup_push((routine),(arg), &__store);
lib/libpthread/pthread_once.c
57
pthread_once(pthread_once_t *once_control, void (*routine)(void))
lib/libpthread/pthread_once.c
60
return __libc_thr_once_stub(once_control, routine);
lib/libpthread/pthread_once.c
66
routine();
sys/arch/acorn32/podulebus/sbic.c
1278
DBG(routine = 3);
sys/arch/acorn32/podulebus/sbic.c
1548
DBG(routine = 1);
sys/arch/acorn32/podulebus/sbic.c
1616
DBG(routine = 1);
sys/arch/acorn32/podulebus/sbic.c
1671
DBG(routine = 2);
sys/arch/acorn32/podulebus/sbic.c
1717
DBG(routine = 2);
sys/arch/acorn32/podulebus/sbic.c
201
u_char debug_asr, debug_csr, routine;
sys/arch/acorn32/podulebus/sbic.c
2365
(routine == 1) ? "sbicgo" :
sys/arch/acorn32/podulebus/sbic.c
2366
(routine == 2) ? "sbicintr" :
sys/arch/acorn32/podulebus/sbic.c
2367
(routine == 3) ? "sbicicmd" :
sys/arch/acorn32/podulebus/sbic.c
2368
(routine == 4) ? "sbicnext" : "unknown",
sys/arch/alpha/alpha/prom.c
140
prom_dispatch_v.routine = c->crb_v_dispatch->entry_va;
sys/arch/alpha/include/prom.h
32
uint64_t routine;
sys/arch/alpha/stand/common/prom.c
57
prom_dispatch_v.routine = c->crb_v_dispatch->entry_va;
sys/arch/amiga/dev/sbic.c
1341
routine = 3;
sys/arch/amiga/dev/sbic.c
1618
routine = 1;
sys/arch/amiga/dev/sbic.c
1789
routine = 1;
sys/arch/amiga/dev/sbic.c
181
u_char debug_asr, debug_csr, routine;
sys/arch/amiga/dev/sbic.c
1839
routine = 2;
sys/arch/amiga/dev/sbic.c
1883
routine = 2;
sys/arch/amiga/dev/sbic.c
2626
(routine==1)?"sbicgo":
sys/arch/amiga/dev/sbic.c
2627
(routine==2)?"sbicintr":
sys/arch/amiga/dev/sbic.c
2628
(routine==3)?"sbicicmd":
sys/arch/amiga/dev/sbic.c
2629
(routine==4)?"sbicnext":"unknown",
sys/arch/m68k/fpsp/fpsp.h
84
* label to a routine that will process a real exception of the
sys/arch/m68k/fpsp/fpsp.h
97
* temporaries. If a routine needs to change any
sys/arch/m68k/fpsp/l_fpsp.h
107
* real fpcr before calling the emulation routine. On return, the
sys/arch/m68k/fpsp/l_fpsp.h
97
* [call appropriate emulation routine]
sys/kern/subr_userconf.c
583
userconf_common_dev(char *dev, int len, short unit, short state, char routine)
sys/kern/subr_userconf.c
587
switch (routine) {
sys/kern/subr_userconf.c
616
switch (routine) {
sys/kern/subr_userconf.c
631
routine);
sys/kern/subr_userconf.c
639
switch (routine) {
sys/lib/libkern/arch/hppa/prefix.h
83
; VERSION is used wherever ".version" can appear in a routine
tests/lib/libpthread/dlopen/dso/h_pthread_dlopen.c
78
void *(*routine)(void *), void *arg)
tests/lib/libpthread/dlopen/dso/h_pthread_dlopen.c
82
ret = pthread_create(thread, attr, routine, arg);
tests/lib/libpthread/dlopen/t_dso_pthread_create.c
94
ret = testf_dso_pthread_create(&thread, NULL, routine, arg);
tests/lib/libpthread/dlopen/t_main_pthread_create.c
65
ret = pthread_create(&thread, NULL, routine, arg);
tests/lib/libpthread/dlopen/t_main_pthread_create.c
93
ret = testf_dso_pthread_create(&thread, NULL, routine, arg);
usr.bin/telnet/commands.c
2336
call(intrtn_t routine, ...)
usr.bin/telnet/commands.c
2342
va_start(ap, routine);
usr.bin/telnet/commands.c
2347
return (*routine)(argno-1, args);