Lines Matching defs:handler
139 int request_intr_type_el3(uint32_t id, interrupt_type_handler_t handler)
144 /* Validate 'handler' and 'id' parameters */
145 if (handler == NULL || index >= MAX_INTR_EL3) {
149 /* Check if a handler has already been registered */
157 type_el3_interrupt_table[index].handler = handler;
169 interrupt_type_handler_t handler = NULL;
175 handler = type_el3_interrupt_table[i].handler;
179 if (handler != NULL) {
180 return handler(intr_id, flags, handle, cookie);