Home
last modified time | relevance | path

Searched refs:IoapicRedirectionTableEntry (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/crosvm/devices/src/irqchip/
H A Dioapic.rs17 use hypervisor::IoapicRedirectionTableEntry;
113 redirect_table: Vec<IoapicRedirectionTableEntry>,
144 redirect_table: Vec<IoapicRedirectionTableEntry>,
218 let mut entry = IoapicRedirectionTableEntry::new(); in new()
813 fn read_entry(ioapic: &mut Ioapic, irq: usize) -> IoapicRedirectionTableEntry { in read_entry() argument
814 let mut entry = IoapicRedirectionTableEntry::new(); in read_entry()
828 fn write_entry(ioapic: &mut Ioapic, irq: usize, entry: IoapicRedirectionTableEntry) { in write_entry() argument
842 let mut entry = IoapicRedirectionTableEntry::new(); in set_up_redirection_table_entry()
1176 let mut entry = IoapicRedirectionTableEntry::new(); in set_redirection_entry_by_bits()
/aosp_15_r20/external/crosvm/devices/tests/irqchip/
H A Dwhpx.rs24 use hypervisor::IoapicRedirectionTableEntry;
293 let mut entry = IoapicRedirectionTableEntry::default(); in finalize_devices()
363 let mut entry = IoapicRedirectionTableEntry::default(); in broadcast_eoi()
H A Duserspace.rs43 use hypervisor::IoapicRedirectionTableEntry;
300 let mut entry = IoapicRedirectionTableEntry::default(); in finalize_devices()
503 let mut entry = IoapicRedirectionTableEntry::default(); in broadcast_eoi()
/aosp_15_r20/external/crosvm/devices/tests/irqchip/kvm/
H A Dx86_64.rs23 use hypervisor::IoapicRedirectionTableEntry;
332 let mut entry = IoapicRedirectionTableEntry::default(); in finalize_devices()
416 let mut entry = IoapicRedirectionTableEntry::default(); in broadcast_eoi()
/aosp_15_r20/external/crosvm/hypervisor/tests/kvm/
H A Dx86_64.rs16 use hypervisor::IoapicRedirectionTableEntry;
111 let mut entry = IoapicRedirectionTableEntry::default(); in ioapic_state()
112 let noredir = IoapicRedirectionTableEntry::default(); in ioapic_state()
/aosp_15_r20/external/crosvm/hypervisor/src/kvm/
H A Dx86_64.rs46 use crate::IoapicRedirectionTableEntry;
1241 redirect_table: [IoapicRedirectionTableEntry::default(); NUM_IOAPIC_PINS], in from()
1250 impl From<&IoapicRedirectionTableEntry> for kvm_ioapic_state__bindgen_ty_1 {
1251 fn from(item: &IoapicRedirectionTableEntry) -> Self { in from()
1260 impl From<&kvm_ioapic_state__bindgen_ty_1> for IoapicRedirectionTableEntry { implementation
1262 let mut entry = IoapicRedirectionTableEntry::default(); in from()
/aosp_15_r20/external/crosvm/hypervisor/src/
H A Dx86_64.rs492 pub struct IoapicRedirectionTableEntry { struct
529 pub redirect_table: [IoapicRedirectionTableEntry; NUM_IOAPIC_PINS], argument