/external/rust/crates/tokio/src/process/unix/ |
D | orphan.rs | 10 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
|
D | mod.rs | 55 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()
|
D | reap.rs | 89 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/ |
D | latch | 31 bool try_wait() const noexcept; 86 bool try_wait() const noexcept 94 return try_wait();
|
/external/rust/crates/tokio/src/process/ |
D | windows.rs | 90 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()
|
D | mod.rs | 1052 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/ |
D | lib.rs | 166 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/ |
D | try_wait.pass.cpp | 35 bool const b = l.try_wait(); in main()
|
/external/skia/include/private/ |
D | SkSemaphore.h | 33 SK_SPI bool try_wait();
|
/external/skqp/include/private/ |
D | SkSemaphore.h | 29 bool try_wait();
|
/external/skia/src/core/ |
D | SkSemaphore.cpp | 74 bool SkSemaphore::try_wait() { in try_wait() function in SkSemaphore
|
D | SkExecutor.cpp | 102 if (fAllowBorrowing && fWorkAvailable.try_wait()) { in borrow()
|
/external/skqp/src/core/ |
D | SkSemaphore.cpp | 94 bool SkBaseSemaphore::try_wait() { in try_wait() function in SkBaseSemaphore
|
D | SkExecutor.cpp | 95 if (fWorkAvailable.try_wait()) { in borrow()
|
/external/crosvm/tests/ |
D | plugins.rs | 110 match child.try_wait().expect("failed to wait for crosvm") { in run_plugin()
|
/external/crosvm/sys_util/src/ |
D | signal.rs | 618 .try_wait() in kill_tree()
|
/external/crosvm/src/plugin/ |
D | process.rs | 287 pub fn try_wait(&mut self) -> SysResult<ProcessStatus> { in try_wait() method
|
D | mod.rs | 880 match plugin.try_wait() { in run_config()
|
/external/rust/crates/once_cell/tests/ |
D | it.rs | 364 let status = guard.child.try_wait().unwrap(); in reentrant_init()
|
/external/rust/crates/tokio/ |
D | CHANGELOG.md | 499 - process: `Child::wait` and `Child::try_wait` ([#2796]).
|