Lines Matching full:isr
32 * @brief Test dynamic ISR installation
36 * @details This routine locates an unused entry in the software ISR table,
37 * installs a dynamic ISR to the unused entry by calling the dynamic
38 * configured function, and verifies that the ISR is successfully installed
39 * by checking the software ISR table entry.
49 if (_sw_isr_table[i].isr == z_irq_spurious) { in ZTEST()
54 zassert_true(_sw_isr_table[i].isr == z_irq_spurious, in ZTEST()
55 "could not find slot for dynamic isr"); in ZTEST()
57 printk("installing dynamic ISR for IRQ %d\n", in ZTEST()
64 zassert_true(_sw_isr_table[i + IRQ_OFFSET].isr == dyn_isr && in ZTEST()
66 "dynamic isr did not install successfully"); in ZTEST()
71 * interrupt but without SW ISR table, we test it by applying for a
91 /* The isr table for x86_64 is visiable, so check it up here */ in ZTEST()
97 "dynamic isr did not install successfully"); in ZTEST()