Home
last modified time | relevance | path

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

/aosp_15_r20/bootable/libbootloader/gbl/libfastboot/src/
H A Dlib.rs949 pub async fn process_next_command( in process_next_command() function
1002 while !process_next_command(transport, fb_impl).await? {} in run()
1610 block_on(process_next_command(&mut transport, &mut fastboot_impl)).unwrap(); in test_fetch()
1630 assert!(block_on(process_next_command(&mut transport, &mut fastboot_impl)).is_err()); in test_fetch_not_enough_data()
1642 assert!(block_on(process_next_command(&mut transport, &mut fastboot_impl)).is_err()); in test_fetch_more_data()
1715 block_on(process_next_command(&mut transport, &mut fastboot_impl)).unwrap(); in test_reboot()
1728 block_on(process_next_command(&mut transport, &mut fastboot_impl)).unwrap(); in test_reboot_bootloader()
1741 block_on(process_next_command(&mut transport, &mut fastboot_impl)).unwrap(); in test_reboot_fastboot()
1754 block_on(process_next_command(&mut transport, &mut fastboot_impl)).unwrap(); in test_reboot_recovery()
1796 block_on(process_next_command(&mut transport, &mut fastboot_impl)).unwrap(); in test_set_active()
[all …]
/aosp_15_r20/bootable/libbootloader/gbl/libgbl/src/fastboot/
H A Dmod.rs29 next_arg, next_arg_u64, process_next_command, run_tcp_session, snprintf, CommandError,
216 let res = match process_next_command(v, self).await { in run()