Home
last modified time | relevance | path

Searched defs:IRQState (Results 1 – 4 of 4) sorted by relevance

/qemu/include/hw/
H A Dirq.h11 struct IRQState { struct
12 Object parent_obj;
14 qemu_irq_handler handler;
15 void *opaque;
16 int n;
/qemu/rust/qemu-api/src/
H A Dirq.rs23 pub struct IRQState(Opaque<bindings::IRQState>); struct
91 pub(crate) const fn as_ptr(&self) -> *mut *mut bindings::IRQState { in as_ptr()
95 pub(crate) const fn slice_as_ptr(slice: &[Self]) -> *mut *mut bindings::IRQState { in slice_as_ptr()
110 unsafe impl ObjectType for IRQState { implementation
H A Dsysbus.rs101 fn connect_irq(&self, id: u32, irq: &Owned<IRQState>) { in connect_irq()
/qemu/rust/hw/char/pl011/src/
H A Ddevice.rs668 irq: *mut IRQState, in pl011_create()