Lines Matching refs:Err
239 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_enable()
242 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_enable()
246 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_enable()
270 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_enable()
273 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_enable()
277 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_enable()
301 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_enable()
304 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_enable()
308 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_enable()
321 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in irq_install()
336 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_install()
339 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_install()
343 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_install()
360 return Err(PciError::PciIrqError(PciIrqError::DeviceIrqOverflow)); in msi_install()
378 Err(SystemError::EINVAL) => { in msi_install()
379 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqNum(irq_num))); in msi_install()
382 Err(SystemError::EAGAIN_OR_EWOULDBLOCK) => { in msi_install()
383 return Err(PciError::PciIrqError(PciIrqError::IrqNumOccupied( in msi_install()
388 Err(_) => { in msi_install()
394 return Err(PciError::PciIrqError(PciIrqError::IrqNumOccupied( in msi_install()
405 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_install()
494 return Err(PciError::PciIrqError(PciIrqError::MxiIrqNumWrong)); in msi_install()
501 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_install()
504 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_install()
508 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_install()
524 return Err(PciError::PciIrqError(PciIrqError::DeviceIrqOverflow)); in msix_install()
541 Err(SystemError::EINVAL) => { in msix_install()
542 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqNum(irq_num))); in msix_install()
545 Err(SystemError::EAGAIN_OR_EWOULDBLOCK) => { in msix_install()
546 return Err(PciError::PciIrqError(PciIrqError::IrqNumOccupied( in msix_install()
551 Err(_) => { in msix_install()
557 return Err(PciError::PciIrqError(PciIrqError::IrqNumOccupied( in msix_install()
566 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_install()
593 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_install()
596 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_install()
600 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_install()
615 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_uninstall()
618 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_uninstall()
622 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_uninstall()
663 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_uninstall()
666 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_uninstall()
670 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_uninstall()
717 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_uninstall()
720 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_uninstall()
724 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_uninstall()
739 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_mask()
742 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_mask()
746 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_mask()
761 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msi_mask()
794 return Err(PciError::PciIrqError(PciIrqError::MaskNotSupported)); in msi_mask()
797 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_mask()
800 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_mask()
804 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_mask()
819 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msix_mask()
839 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_mask()
842 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_mask()
846 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_mask()
861 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_unmask()
864 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_unmask()
868 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_unmask()
883 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msi_unmask()
915 return Err(PciError::PciIrqError(PciIrqError::MaskNotSupported)); in msi_unmask()
918 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_unmask()
921 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_unmask()
925 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_unmask()
940 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msix_unmask()
960 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_unmask()
963 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_unmask()
967 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_unmask()
983 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in irq_check_pending()
986 return Err(PciError::PciIrqError(PciIrqError::IrqTypeNotSupported)); in irq_check_pending()
990 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in irq_check_pending()
1006 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msi_check_pending()
1032 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msi_check_pending()
1035 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msi_check_pending()
1039 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msi_check_pending()
1055 return Err(PciError::PciIrqError(PciIrqError::InvalidIrqIndex( in msix_check_pending()
1073 return Err(PciError::PciIrqError(PciIrqError::IrqNotInited)); in msix_check_pending()
1076 return Err(PciError::PciIrqError(PciIrqError::IrqTypeUnmatch)); in msix_check_pending()
1080 return Err(PciError::PciIrqError(PciIrqError::PciDeviceNotSupportIrq)); in msix_check_pending()