Lines Matching defs:handler
121 int request_intr_type_el3(uint32_t id, interrupt_type_handler_t handler)
126 /* Validate 'handler' and 'id' parameters */
127 if (!handler || index >= MAX_INTR_EL3) {
131 /* Check if a handler has already been registered */
139 type_el3_interrupt_table[index].handler = handler;
151 interrupt_type_handler_t handler = NULL;
157 handler = type_el3_interrupt_table[i].handler;
161 if (handler != NULL) {
162 return handler(intr_id, flags, handle, cookie);