Lines Matching defs:handler
162 int request_intr_type_el3(uint32_t id, interrupt_type_handler_t handler)
167 /* Validate 'handler' and 'id' parameters */
168 if (handler == NULL || index >= MAX_INTR_EL3) {
172 /* Check if a handler has already been registered */
180 type_el3_interrupt_table[index].handler = handler;
192 interrupt_type_handler_t handler = NULL;
198 handler = type_el3_interrupt_table[i].handler;
202 if (handler != NULL) {
203 handler(intr_id, flags, handle, cookie);