Searched defs:PciError (Results 1 – 4 of 4) sorted by relevance
/DragonOS-0.1.8/kernel/src/driver/pci/ |
D | pci_irq.rs | 187 fn irq_enable(&mut self, enable: bool) -> Result<u8, PciError> { in irq_enable() argument 209 fn msix_enable(&mut self, enable: bool) -> Result<u8, PciError> { in msix_enable() argument 240 fn msi_enable(&mut self, enable: bool) -> Result<u8, PciError> { in msi_enable() argument 276 fn irq_install(&mut self, msg: IrqMsg) -> Result<u8, PciError> { in irq_install() argument 307 fn msi_install(&mut self, msg: IrqMsg) -> Result<u8, PciError> { in msi_install() argument 457 fn msix_install(&mut self, msg: IrqMsg) -> Result<u8, PciError> { in msix_install() argument 533 fn irq_uninstall(&mut self) -> Result<u8, PciError> { in irq_uninstall() argument 555 fn msi_uninstall(&mut self) -> Result<u8, PciError> { in msi_uninstall() argument 600 fn msix_uninstall(&mut self) -> Result<u8, PciError> { in msix_uninstall() argument 651 fn irq_mask(&mut self, irq_index: u16) -> Result<u8, PciError> { in irq_mask() argument [all …]
|
D | pci.rs | 239 pub enum PciError { enum 252 impl Display for PciError { implementation 339 fn bar_ioremap(&mut self) -> Option<Result<u8, PciError>> { in bar_ioremap() argument 448 fn bar_ioremap(&mut self) -> Option<Result<u8, PciError>> { in bar_ioremap() argument 620 pub fn new(segment_group_number: SegmentGroupNumber) -> Result<Self, PciError> { in new() argument 627 fn map(&mut self) -> Result<u8, PciError> { in map() argument 740 ) -> Result<Box<dyn PciDeviceStructure>, PciError> { in pci_read_header() argument 1032 fn pci_check_function(busdevicefunction: BusDeviceFunction) -> Result<u8, PciError> { in pci_check_function() argument 1058 fn pci_check_device(bus: u8, device: u8) -> Result<u8, PciError> { in pci_check_device() argument 1097 fn pci_check_bus(bus: u8) -> Result<u8, PciError> { in pci_check_bus() argument [all …]
|
/DragonOS-0.1.8/kernel/src/arch/ |
D | mod.rs | 26 fn ecam_root(segement: SegmentGroupNumber) -> Result<PciRoot, PciError>; in ecam_root() argument
|
/DragonOS-0.1.8/kernel/src/arch/x86_64/pci/ |
D | pci.rs | 47 fn ecam_root(segement: SegmentGroupNumber) -> Result<PciRoot, PciError> { in ecam_root() argument
|