Home
last modified time | relevance | path

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

/external/rust/crates/tokio/src/process/unix/
Dorphan.rs10 fn try_wait(&mut self) -> io::Result<Option<ExitStatus>>; in try_wait() method
18 fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> { in try_wait() method
19 (**self).try_wait() in try_wait()
79 match queue[i].try_wait() { in reap_orphans()
156 fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> { in try_wait() method
Dmod.rs55 fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> { in try_wait() method
56 self.try_wait() in try_wait()
124 pub(crate) fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> { in try_wait() method
125 self.inner.inner_mut().try_wait() in try_wait()
Dreap.rs89 if let Some(status) = self.inner_mut().try_wait()? { in poll()
123 if let Ok(Some(_)) = self.inner_mut().try_wait() { in drop()
167 fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> { in try_wait() method
/external/llvm-project/libcxx/include/
Dlatch31 bool try_wait() const noexcept;
86 bool try_wait() const noexcept
94 return try_wait();
/external/rust/crates/tokio/src/process/
Dwindows.rs90 pub(crate) fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> { in try_wait() method
91 self.child.try_wait() in try_wait()
113 let status = inner.try_wait()?.expect("not ready yet"); in poll()
117 if let Some(e) = inner.try_wait()? { in poll()
Dmod.rs1052 pub fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> { in try_wait() method
1056 let ret = guard.inner.try_wait(); in try_wait()
/external/rust/crates/shared_child/src/
Dlib.rs166 pub fn try_wait(&self) -> io::Result<Option<ExitStatus>> { in try_wait() method
282 let maybe_status = child.try_wait().unwrap(); in test_try_wait()
289 maybe_status = child.try_wait().unwrap(); in test_try_wait()
/external/llvm-project/libcxx/test/std/thread/thread.latch/
Dtry_wait.pass.cpp35 bool const b = l.try_wait(); in main()
/external/skia/include/private/
DSkSemaphore.h33 SK_SPI bool try_wait();
/external/skqp/include/private/
DSkSemaphore.h29 bool try_wait();
/external/skia/src/core/
DSkSemaphore.cpp74 bool SkSemaphore::try_wait() { in try_wait() function in SkSemaphore
DSkExecutor.cpp102 if (fAllowBorrowing && fWorkAvailable.try_wait()) { in borrow()
/external/skqp/src/core/
DSkSemaphore.cpp94 bool SkBaseSemaphore::try_wait() { in try_wait() function in SkBaseSemaphore
DSkExecutor.cpp95 if (fWorkAvailable.try_wait()) { in borrow()
/external/crosvm/tests/
Dplugins.rs110 match child.try_wait().expect("failed to wait for crosvm") { in run_plugin()
/external/crosvm/sys_util/src/
Dsignal.rs618 .try_wait() in kill_tree()
/external/crosvm/src/plugin/
Dprocess.rs287 pub fn try_wait(&mut self) -> SysResult<ProcessStatus> { in try_wait() method
Dmod.rs880 match plugin.try_wait() { in run_config()
/external/rust/crates/once_cell/tests/
Dit.rs364 let status = guard.child.try_wait().unwrap(); in reentrant_init()
/external/rust/crates/tokio/
DCHANGELOG.md499 - process: `Child::wait` and `Child::try_wait` ([#2796]).