Searched refs:wait (Results 26 - 50 of 785) sorted by relevance

1234567891011>>

/external/compiler-rt/test/tsan/
H A Dfork_deadlock.cc8 #include <sys/wait.h>
32 while (wait(0) < 0) {}
H A Dfork_multithreaded3.cc8 #include <sys/wait.h>
18 while (wait(0) < 0) {}
/external/libcxx/test/thread/thread.condition/thread.condition.condvar/
H A Dwait.pass.cpp14 // void wait(unique_lock<mutex>& lock);
34 cv.wait(lk);
44 cv.wait(lk);
/external/libcxx/test/thread/thread.condition/thread.condition.condvarany/
H A Dwait.pass.cpp15 // void wait(Lock& lock);
39 cv.wait(lk);
49 cv.wait(lk);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBarrier.java30 /**A very simple barrier wait. Once a thread has requested a
31 * wait on the barrier with waitForRelease, it cannot fool the
33 * the thread is blocked on the wait().
55 wait();
/external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
H A DHandle.java19 * likely the case with |wait()|, etc.), or fail with |MojoResult.INVALID_ARGUMENT| if they
26 * @see Core#wait(Handle, Core.HandleSignals, long)
28 public int wait(Core.HandleSignals signals, long deadline); method in interface:Handle
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/pipe/
H A Dpipe_node.cc36 EventListenerLock wait(GetEventEmitter());
37 Error err = wait.WaitOnEvent(POLLIN, ms);
53 EventListenerLock wait(GetEventEmitter());
54 Error err = wait.WaitOnEvent(POLLOUT, ms);
/external/chromium_org/sandbox/linux/tests/
H A Dtest_utils.cc10 #include <sys/wait.h>
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DNotifyingListener.java20 * A helper class to let the calling thread wait until loading has finished.
50 mSleeper.wait();
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/
H A DRTCSessionDescriptionSyncObserver.h47 - (void)wait;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_ringbuffer.h27 boolean wait );
/external/chromium_org/third_party/skia/dm/
H A DDMTaskRunner.h20 void wait();
/external/chromium_org/third_party/skia/src/utils/
H A DSkCondVar.h54 void wait();
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dwaitid.cc5 #include <sys/wait.h>
/external/compiler-rt/test/lsan/TestCases/
H A Dfork.cc8 #include <sys/wait.h>
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_ringbuffer.h27 boolean wait );
/external/skia/dm/
H A DDMTaskRunner.h23 void wait();
/external/skia/include/utils/
H A DSkCondVar.h54 void wait();
H A DSkCountdown.h29 void wait();
/external/valgrind/main/none/tests/
H A Dfork.c4 #include <sys/wait.h>
/external/valgrind/main/drd/tests/
H A Dmonitor_example.cpp116 void wait() function in class:Monitor
195 void wait(const int state) function in class:StateVariable
199 m_monitor.wait();
213 s_sv.wait(1);
215 s_sv.wait(3);
225 s_sv.wait(2);
227 s_sv.wait(4);
/external/chromium_org/base/process/
H A Dkill_win.cc35 // Maximum amount of time (in milliseconds) to wait for the process to exit.
94 bool KillProcess(ProcessHandle process, int exit_code, bool wait) { argument
96 if (result && wait) {
109 bool KillProcessById(ProcessId process_id, int exit_code, bool wait) { argument
117 bool ret = KillProcess(process, exit_code, wait);
201 base::TimeDelta wait,
210 0, wait.InMilliseconds() - (GetTickCount() - start_time));
222 bool WaitForSingleProcess(ProcessHandle handle, base::TimeDelta wait) { argument
224 return WaitForExitCodeWithTimeout(handle, &exit_code, wait) && exit_code == 0;
228 base::TimeDelta wait,
200 WaitForProcessesToExit(const FilePath::StringType& executable_name, base::TimeDelta wait, const ProcessFilter* filter) argument
227 CleanupProcesses(const FilePath::StringType& executable_name, base::TimeDelta wait, int exit_code, const ProcessFilter* filter) argument
[all...]
H A Dkill_posix.cc9 #include <sys/wait.h>
27 base::TimeDelta wait) {
28 // This POSIX version of this function only guarantees that we wait no less
29 // than |wait| for the process to exit. The child process may
40 // has already exited, otherwise to loop for |wait|, sleeping for
52 if (wait.InMilliseconds() == base::kNoTimeout) {
62 TimeTicks wakeup_time = TimeTicks::Now() + wait;
69 // Sleep for a bit while we wait for the process to finish.
136 bool KillProcess(ProcessHandle process_id, int exit_code, bool wait) { argument
141 if (result && wait) {
25 WaitpidWithTimeout(ProcessHandle handle, int* status, base::TimeDelta wait) argument
243 WaitForProcessesToExit(const FilePath::StringType& executable_name, base::TimeDelta wait, const ProcessFilter* filter) argument
268 WaitForSingleNonChildProcess(ProcessHandle handle, base::TimeDelta wait) argument
355 WaitForSingleProcess(ProcessHandle handle, base::TimeDelta wait) argument
374 CleanupProcesses(const FilePath::StringType& executable_name, base::TimeDelta wait, int exit_code, const ProcessFilter* filter) argument
[all...]
/external/junit/src/junit/textui/
H A DTestRunner.java16 * java junit.textui.TestRunner [-wait] TestCaseClass
24 * <p> When the wait command line argument is given TestRunner
112 public TestResult doRun(Test suite, boolean wait) { argument
121 pause(wait);
125 protected void pause(boolean wait) { argument
126 if (!wait) return;
155 boolean wait= false;
158 if (args[i].equals("-wait"))
159 wait= true;
174 throw new Exception("Usage: TestRunner [-wait] testCaseNam
186 runSingleMethod(String testCase, String method, boolean wait) argument
[all...]
/external/chromium_org/third_party/skia/platform_tools/android/bin/
H A Dadb_list_devices.py35 code = device_proc.wait()
92 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
97 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
103 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
112 if subprocess.Popen([adb, 'version'], stdout=subprocess.PIPE).wait() == 0:
134 code = proc.wait()

Completed in 892 milliseconds

1234567891011>>