Lines Matching refs:handler
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];
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 == 0
179 ? frame : handler[irqno].cookie );
295 handler[irqno].cookie = cookie;
296 handler[irqno].func = func;
304 return (&handler[irqno]);
312 int irqno = lhandler - handler;
320 ih = &handler[irqno];