Home
last modified time | relevance | path

Searched refs:EfiError (Results 1 – 4 of 4) sorted by relevance

/bootable/libbootloader/gbl/libefi/src/protocol/
Dsimple_text_output.rs19 use crate::{efi_call, map_efi_err, EfiError, EfiResult};
64 impl From<core::fmt::Error> for EfiError { implementation
65 fn from(_: core::fmt::Error) -> EfiError { in from() argument
Ddevice_path.rs19 use crate::{EfiEntry, EfiError, EfiResult};
54 .ok_or_else::<EfiError, _>(|| EFI_STATUS_NOT_FOUND.into())?; in convert_device_path_to_text()
/bootable/libbootloader/gbl/efi/src/
Derror.rs19 use efi::EfiError;
53 EfiError(EfiError),
/bootable/libbootloader/gbl/libefi/src/
Dlib.rs88 pub struct EfiError(ErrorTypes); struct
90 impl EfiError { impl
101 impl From<EfiStatus> for EfiError { implementation
102 fn from(efi_status: EfiStatus) -> EfiError { in from() argument
103 EfiError(match efi_status { in from()
118 pub type EfiResult<T> = core::result::Result<T, EfiError>;
192 .ok_or_else::<EfiError, _>(|| EFI_STATUS_BUFFER_TOO_SMALL.into())?; in exit_boot_services()
360 .ok_or::<EfiError>(EFI_STATUS_NOT_FOUND.into())?; in find_first_and_open()