Searched defs:CommandResult (Results 1 – 3 of 3) sorted by relevance
| /bootable/libbootloader/gbl/libfastboot/src/ |
| D | lib.rs | 206 pub type CommandResult<T> = core::result::Result<T, CommandError>; typedef 290 async fn get_var_all(&mut self, responder: impl VarInfoSender) -> CommandResult<()>; in get_var_all() 300 ) -> CommandResult<()>; in download_complete() 308 async fn flash(&mut self, part: &str, responder: impl InfoSender) -> CommandResult<()>; in flash() 316 async fn erase(&mut self, part: &str, responder: impl InfoSender) -> CommandResult<()>; in erase() 343 async fn upload(&mut self, responder: impl UploadBuilder + InfoSender) -> CommandResult<()>; in upload() 359 ) -> CommandResult<()>; in fetch() 388 async fn r#continue(&mut self, responder: impl InfoSender) -> CommandResult<()>; implementation 391 async fn set_active(&mut self, slot: &str, responder: impl InfoSender) -> CommandResult<()>; in set_active() 405 async fn boot(&mut self, responder: impl InfoSender + OkaySender) -> CommandResult<()>; in boot() [all …]
|
| /bootable/libbootloader/gbl/libgbl/src/fastboot/ |
| D | vars.rs | 73 ) -> CommandResult<()> { in get_var_all_internal() 127 ) -> CommandResult<()> { in get_all_partition_size_type() 186 ) -> CommandResult<()> { in get_all_block_device()
|
| D | mod.rs | 478 ) -> CommandResult<()> { in schedule_task() 497 async fn sync_all_blocks(&self) -> CommandResult<()> { in sync_all_blocks() 519 ) -> CommandResult<()> { in sync_tasks_and_reboot() 546 async fn add_staged_bootloader_file(&mut self, file_name: &str) -> CommandResult<()> { in add_staged_bootloader_file() 576 async fn set_active_slot(&mut self, slot: &str) -> CommandResult<()> { in set_active_slot() 619 async fn get_var_all(&mut self, mut resp: impl VarInfoSender) -> CommandResult<()> { in get_var_all() 634 ) -> CommandResult<()> { in download_complete() 639 async fn flash(&mut self, part: &str, mut responder: impl InfoSender) -> CommandResult<()> { in flash() 664 async fn erase(&mut self, part: &str, mut responder: impl InfoSender) -> CommandResult<()> { in erase() 684 async fn upload(&mut self, _: impl UploadBuilder) -> CommandResult<()> { in upload() [all …]
|