/src/tests/usr.bin/xlint/lint1/ |
msg_192.c | 22 typedef void (*handler)(int); typedef in function:example 24 handler (*local_signal)(int, handler); 30 void (*(*local_signal_attr)(int sig, void (*handler)(int)))(int) __attribute__((__unused__));
|
msg_231.c | 22 void (*param_signal(int sig, void (*handler)(int)))(int), 28 void (*param_signal_attr(int sig, void (*handler)(int)))(int) __attribute__((__unused__))
|
/src/sys/arch/arm/ofw/ |
ofw_irqhandler.c | 39 * IRQ/FIQ initialisation, claim, release and handler routines 104 * int irq_claim(int irq, irqhandler_t *handler) 106 * Enable an IRQ and install a handler for it. 110 irq_claim(int irq, irqhandler_t *handler, const char *group, const char *name) 116 if (handler == NULL) 117 panic("NULL interrupt handler"); 118 if (handler->ih_func == NULL) 119 panic("Interrupt handler does not have a function"); 127 irq = handler->ih_num; 134 if (handler->ih_level < 0 || handler->ih_level >= NIPL [all...] |
/src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/ |
core.h | 18 int sodium_set_misuse_handler(void (*handler)(void));
|
/src/sys/arch/arm/s3c2xx0/ |
s3c2800_intr.c | 36 * IRQ handler for Samsung S3C2800 processor. 58 struct s3c2xx0_intr_dispatch handler[ICU_LEN]; variable in typeref:struct:s3c2xx0_intr_dispatch[] 102 if (saved_spl_level < handler[irqno].level) 103 s3c2xx0_setipl(handler[irqno].level); 110 (*handler[irqno].func) ( 111 handler[irqno].cookie == 0 112 ? frame : handler[irqno].cookie); 147 handler[irqno].cookie = cookie; 148 handler[irqno].func = func; 149 handler[irqno].level = level [all...] |
s3c2440_intr.c | 61 * IRQ handler for Samsung S3C2440 processor. 82 struct s3c2xx0_intr_dispatch handler[ICU_LEN]; variable in typeref:struct:s3c2xx0_intr_dispatch[] 149 if (saved_spl_level < handler[irqno].level) 150 s3c2xx0_setipl(handler[irqno].level); 156 handler[irqno].ev.ev_count++; 161 (*handler[irqno].func) ( 162 handler[irqno].cookie == 0 163 ? frame : handler[irqno].cookie); 178 * Handler for main IRQ of cascaded interrupts. 202 * correctly by main handler. * [all...] |
s3c2410_intr.c | 33 * IRQ handler for Samsung S3C2410 processor. 55 struct s3c2xx0_intr_dispatch handler[ICU_LEN]; variable in typeref:struct:s3c2xx0_intr_dispatch[] 122 if (saved_spl_level < handler[irqno].level) 123 s3c2xx0_setipl(handler[irqno].level); 131 (*handler[irqno].func) ( 132 handler[irqno].cookie == 0 133 ? frame : handler[irqno].cookie); 148 * Handler for main IRQ of cascaded interrupts. 172 * correctly by main handler. */ 176 (* handler[i].func)(handler[i].cookie) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_signal_interceptors.inc | 29 #define SIGNAL_INTERCEPTOR_SIGNAL_IMPL(func, signum, handler) \ 30 { return REAL(func)(signum, handler); } 39 INTERCEPTOR(uptr, bsd_signal, int signum, uptr handler) { 41 SIGNAL_INTERCEPTOR_SIGNAL_IMPL(bsd_signal, signum, handler); 49 INTERCEPTOR(uptr, signal, int signum, uptr handler) { 52 SIGNAL_INTERCEPTOR_SIGNAL_IMPL(signal, signum, handler);
|
/src/sys/arch/arm/iomd/ |
iomd_irqhandler.c | 37 * IRQ/FIQ initialisation, claim, release and handler routines 126 * int irq_claim(int irq, irqhandler_t *handler) 128 * Enable an IRQ and install a handler for it. 132 irq_claim(int irq, irqhandler_t *handler) 139 if (handler == NULL) 140 panic("NULL interrupt handler"); 141 if (handler->ih_func == NULL) 142 panic("Interrupt handler does not have a function"); 150 irq = handler->ih_num; 157 if (handler->ih_level < 0 || handler->ih_level >= NIPL [all...] |
/src/regress/sys/kern/ras/ras1/ |
ras1.c | 43 void handler(int); 46 handler(int sig) function in typeref:typename:void 58 signal(SIGVTALRM, handler);
|
/src/regress/sys/kern/ras/ras2/ |
ras2.c | 45 void handler(int); 48 handler(int sig) function in typeref:typename:void 61 signal(SIGVTALRM, handler);
|
/src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
page_track.h | 41 gvt_page_track_handler_t handler; member in struct:intel_vgpu_page_track 50 unsigned long gfn, gvt_page_track_handler_t handler,
|
page_track.c | 49 * @handler: page track handler 56 gvt_page_track_handler_t handler, void *priv) 69 track->handler = handler; 182 ret = page_track->handler(page_track, gpa, data, bytes);
|
/src/sbin/fsdb/ |
fsdb.h | 47 int (*handler)(int argc, char *argv[]); member in struct:cmdtable
|
/src/sys/arch/pmax/ibus/ |
ibusvar.h | 34 int (*handler)(void *), void *arg);
|
/src/sys/arch/m68k/m68k/ |
sunos_sigcode.s | 48 movl 12(%sp),%a0 | signal handler addr (4 bytes) 49 jsr (%a0) | call signal handler (2 bytes)
|
/src/sys/arch/shark/isa/ |
isa_irqhandler.c | 70 * IRQ/FIQ initialisation, claim, release and handler routines 141 * int irq_claim(int irq, irqhandler_t *handler) 143 * Enable an IRQ and install a handler for it. 147 irq_claim(int irq, irqhandler_t *handler, const char *group, const char *name) 152 if (handler == NULL) 153 panic("NULL interrupt handler"); 154 if (handler->ih_func == NULL) 155 panic("Interrupt handler does not have a function"); 163 irq = handler->ih_num; 170 if (handler->ih_level < 0 || handler->ih_level >= NIPL [all...] |
/src/sys/external/isc/libsodium/dist/src/libsodium/sodium/ |
core.c | 206 void (*handler)(void); local in function:sodium_misuse 210 handler = _misuse_handler; 211 if (handler != NULL) { 212 handler(); 221 sodium_set_misuse_handler(void (*handler)(void)) 226 _misuse_handler = handler;
|
/src/sys/arch/arm/xscale/ |
pxa2x0_intr.c | 37 * IRQ handler for the Intel PXA2X0 processor. 79 int (*ih_func)(void *); /* handler */ 80 void *ih_arg; /* arg for handler */ 92 } handler[ICU_LEN]; variable in typeref:struct:intrhandler[] 127 for(i = 0; i < sizeof handler / sizeof handler[0]; ++i){ 128 handler[i].func = stray_interrupt; 129 handler[i].cookie = (void *)(intptr_t) i; 177 (* handler[irqno].func)( 178 handler[irqno].cookie == [all...] |
/src/sys/arch/amiga/amiga/ |
cia.c | 36 * sources are managed from one central handler, or interrupts 39 * if you write a handler dealing with a yet unused interrupt 40 * bit (handler == not_used), enter your interrupt handler 41 * in the appropriate table below. If your handler must poll 57 void (*handler)(int); member in struct:cia_intr_dispatch 105 disp->handler(disp->mask); 118 * the lev6 interrupt handler in locore.s !
|
/src/tests/kernel/ |
t_lock.c | 47 handler(int sig) function in typeref:typename:void 66 REQUIRE_LIBC(signal(SIGVTALRM, handler), SIG_ERR);
|
/src/tests/lib/libc/gen/ |
t_assert.c | 57 static void handler(int); 60 handler(int signo) function in typeref:typename:void 87 sa.sa_handler = handler; 125 sa.sa_handler = handler;
|
t_alarm.c | 42 static void handler(int); 45 handler(int signo) function in typeref:typename:void 61 ATF_REQUIRE(signal(SIGALRM, handler) == 0);
|
t_pause.c | 42 static void handler(int); 45 handler(int signo) function in typeref:typename:void 63 ATF_REQUIRE(signal(SIGALRM, handler) == 0);
|
/src/regress/sys/kern/ras/ras3/ |
ras3.c | 45 void handler(int); 48 handler(int sig) function in typeref:typename:void 62 signal(SIGVTALRM, handler);
|