Home
last modified time | relevance | path

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

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/sys/unix/
H A Dchild.rs51 pub(crate) fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> { in try_wait() method
53 self.std.as_mut().unwrap().try_wait() in try_wait()
70 if let Some(status) = self.try_wait()? { in poll()
83 if let Ok(Some(_)) = self.try_wait() { in drop()
H A Dzombie_manager.rs77 match child.try_wait() { in reap_vec()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/
H A Dchild.rs251 pub fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> { in try_wait() method
254 let res = child.try_wait(); in try_wait()
483 if child.try_wait().unwrap().is_some() { in ut_process_try_wait_test()
487 assert!(child.try_wait().unwrap().is_some()); in ut_process_try_wait_test()
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/
H A Dprocess.rs164 if child.try_wait().unwrap().is_some() { in sdv_process_try_wait_test()
168 assert!(child.try_wait().unwrap().is_some()); in sdv_process_try_wait_test()