Lines Matching full:ite
327 * @ite: Pointer to the current its_ite within the device being processed.
331 * and the current ITE within that device.
335 struct its_ite *ite; member
342 * When the iterator completed processing the final ITE in the last device
344 * device and ITE pointers to NULL.
351 return !iter->dev && !iter->ite; in end_of_iter()
359 * This function moves the iterator to the next ITE within the current device,
360 * or to the first ITE of the next device if the current ITE is the last in
367 struct its_ite *ite = iter->ite; in vgic_its_iter_next() local
369 if (!ite || list_is_last(&ite->ite_list, &dev->itt_head)) { in vgic_its_iter_next()
372 ite = NULL; in vgic_its_iter_next()
375 ite = list_first_entry_or_null(&dev->itt_head, in vgic_its_iter_next()
380 ite = list_next_entry(ite, ite_list); in vgic_its_iter_next()
384 iter->ite = ite; in vgic_its_iter_next()
419 iter->ite = list_first_entry_or_null(&dev->itt_head, in vgic_its_debug_start()
491 struct its_ite *ite = iter->ite; in vgic_its_debug_show() local
493 if (!ite) in vgic_its_debug_show()
496 if (list_is_first(&ite->ite_list, &dev->itt_head)) { in vgic_its_debug_show()
504 if (ite->irq && ite->collection) { in vgic_its_debug_show()
506 ite->event_id, ite->irq->intid, ite->irq->hwintid, in vgic_its_debug_show()
507 ite->collection->target_addr, in vgic_its_debug_show()
508 ite->collection->collection_id, ite->irq->hw); in vgic_its_debug_show()