Home
last modified time | relevance | path

Searched refs:should_wait (Results 1 – 3 of 3) sorted by relevance

/tools/asuite/adevice/src/
Dcli.rs126 pub fn should_wait(&self) -> Wait { in should_wait() method
162 assert_eq!(Wait::Yes, cli.should_wait()); in it_should_wait()
163 let should_wait: bool = cli.should_wait().into(); in it_should_wait() localVariable
164 assert!(should_wait); in it_should_wait()
170 assert_eq!(Wait::No, cli.should_wait()); in it_should_not_wait()
171 let should_wait: bool = cli.should_wait().into(); in it_should_not_wait() localVariable
172 assert!(!should_wait); in it_should_not_wait()
Ddevice.rs323 should_wait: crate::cli::Wait, in update()
333 prep_for_push(device, should_wait.clone())?; in update()
360 if should_wait.into() { in update()
375 fn prep_for_push(device: &impl Device, should_wait: crate::cli::Wait) -> Result<()> { in prep_for_push()
380 if should_wait.into() { in prep_for_push()
Dadevice.rs237 device::update(restart_chooser, deletes, profiler, device, cli.should_wait())?; in adevice()
268 cli.should_wait(), in adevice()