Home
last modified time | relevance | path

Searched refs:BcbError (Results 1 – 2 of 2) sorted by relevance

/bootable/libbootloader/gbl/libmisc/src/
Dlib.rs31 pub enum BcbError { enum
36 pub type Result<T> = core::result::Result<T, BcbError>;
78 .ok_or(BcbError::InvalidInput("Cannot read BCB message from buffer"))? in from_bytes_ref()
86 .map_err(|_| BcbError::InvalidInput("Cannot read BCB command"))? in boot_mode()
88 .map_err(|_| BcbError::InvalidInput("Cannot convert BCB command to string"))?; in boot_mode()
94 _ => Err(BcbError::InvalidInput("Wrong BCB command")), in boot_mode()
/bootable/libbootloader/gbl/efi/src/
Derror.rs24 use misc::BcbError;
49 BcbError(BcbError),