/external/valgrind/main/gdbserver_tests/ |
D | mcinvokeWS.stdoutB.exp | 2 gdbserver: continuing after wait ... 4 gdbserver: continuing after wait ... 6 gdbserver: continuing after wait ... 8 gdbserver: continuing after wait ... 10 gdbserver: continuing after wait ... 12 gdbserver: continuing after wait ... 14 gdbserver: continuing after wait ... 16 gdbserver: continuing after wait ... 18 gdbserver: continuing after wait ... 20 gdbserver: continuing after wait ... [all …]
|
D | mcinvokeRU.stdoutB.exp | 2 gdbserver: continuing after wait ... 4 gdbserver: continuing after wait ... 6 gdbserver: continuing after wait ... 8 gdbserver: continuing after wait ... 10 gdbserver: continuing after wait ... 12 gdbserver: continuing after wait ... 14 gdbserver: continuing after wait ... 16 gdbserver: continuing after wait ... 18 gdbserver: continuing after wait ... 20 gdbserver: continuing after wait ... [all …]
|
/external/chromium_org/sandbox/win/src/ |
D | sharedmem_ipc_client.cc | 70 DWORD wait = ::SignalObjectAndWait(channel[num].ping_event, in DoCall() local 73 if (WAIT_TIMEOUT == wait) { in DoCall() 78 wait = ::WaitForSingleObject(control_->server_alive, 0); in DoCall() 79 if (WAIT_TIMEOUT == wait) { in DoCall() 81 wait = ::WaitForSingleObject(channel[num].pong_event, kIPCWaitTimeOut1); in DoCall() 82 if (WAIT_OBJECT_0 == wait) { in DoCall() 85 } else if (WAIT_TIMEOUT == wait) { in DoCall() 98 } else if (WAIT_OBJECT_0 != wait) { in DoCall() 133 DWORD wait = ::WaitForSingleObject(control_->server_alive, in LockFreeChannel() local 135 if (WAIT_TIMEOUT != wait) { in LockFreeChannel()
|
/external/chromium_org/base/process/ |
D | kill_posix.cc | 27 base::TimeDelta wait) { in WaitpidWithTimeout() argument 52 if (wait.InMilliseconds() == base::kNoTimeout) { in WaitpidWithTimeout() 62 TimeTicks wakeup_time = TimeTicks::Now() + wait; in WaitpidWithTimeout() 136 bool KillProcess(ProcessHandle process_id, int exit_code, bool wait) { in KillProcess() argument 141 if (result && wait) { in KillProcess() 244 base::TimeDelta wait, in WaitForProcessesToExit() argument 251 base::TimeTicks end_time = base::TimeTicks::Now() + wait; in WaitForProcessesToExit() 269 base::TimeDelta wait) { in WaitForSingleNonChildProcess() argument 271 DCHECK(wait.InMilliseconds() == base::kNoTimeout || wait > base::TimeDelta()); in WaitForSingleNonChildProcess() 294 bool wait_forever = wait.InMilliseconds() == base::kNoTimeout; in WaitForSingleNonChildProcess() [all …]
|
D | kill_win.cc | 94 bool KillProcess(ProcessHandle process, int exit_code, bool wait) { in KillProcess() argument 96 if (result && wait) { in KillProcess() 109 bool KillProcessById(ProcessId process_id, int exit_code, bool wait) { in KillProcessById() argument 117 bool ret = KillProcess(process, exit_code, wait); in KillProcessById() 201 base::TimeDelta wait, in WaitForProcessesToExit() argument 210 0, wait.InMilliseconds() - (GetTickCount() - start_time)); in WaitForProcessesToExit() 222 bool WaitForSingleProcess(ProcessHandle handle, base::TimeDelta wait) { in WaitForSingleProcess() argument 224 return WaitForExitCodeWithTimeout(handle, &exit_code, wait) && exit_code == 0; in WaitForSingleProcess() 228 base::TimeDelta wait, in CleanupProcesses() argument 231 if (WaitForProcessesToExit(executable_name, wait, filter)) in CleanupProcesses()
|
D | kill.h | 51 BASE_EXPORT bool KillProcess(ProcessHandle process, int exit_code, bool wait); 62 bool wait); 118 base::TimeDelta wait, 125 base::TimeDelta wait); 134 base::TimeDelta wait,
|
/external/junit/src/junit/textui/ |
D | TestRunner.java | 112 public TestResult doRun(Test suite, boolean wait) { in doRun() argument 121 pause(wait); in doRun() 125 protected void pause(boolean wait) { in pause() argument 126 if (!wait) return; in pause() 155 boolean wait= false; in start() 159 wait= true; in start() 178 return runSingleMethod(testCase, method, wait); in start() 180 return doRun(suite, wait); in start() 186 …protected TestResult runSingleMethod(String testCase, String method, boolean wait) throws Exceptio… in runSingleMethod() argument 189 return doRun(test, wait); in runSingleMethod()
|
/external/llvm/test/MC/PowerPC/ |
D | ppc64-encoding-bookII.s | 53 # CHECK-BE: wait 2 # encoding: [0x7c,0x40,0x00,0x7c] 54 # CHECK-LE: wait 2 # encoding: [0x7c,0x00,0x40,0x7c] 55 wait 2 86 # CHECK-BE: wait 0 # encoding: [0x7c,0x00,0x00,0x7c] 87 # CHECK-LE: wait 0 # encoding: [0x7c,0x00,0x00,0x7c] 88 wait 89 # CHECK-BE: wait 1 # encoding: [0x7c,0x20,0x00,0x7c] 90 # CHECK-LE: wait 1 # encoding: [0x7c,0x00,0x20,0x7c] 92 # CHECK-BE: wait 2 # encoding: [0x7c,0x40,0x00,0x7c] 93 # CHECK-LE: wait 2 # encoding: [0x7c,0x00,0x40,0x7c]
|
/external/llvm/lib/Support/ |
D | GraphWriter.cpp | 83 StringRef Filename, bool wait, in ExecGraphViewer() argument 86 if (wait) { in ExecGraphViewer() 133 bool llvm::DisplayGraph(StringRef FilenameRef, bool wait, in DisplayGraph() argument 136 wait &= !ViewBackground; in DisplayGraph() 149 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg); in DisplayGraph() 164 return ExecGraphViewer(ViewerPath, args, Filename, wait, ErrMsg); in DisplayGraph() 197 if (ExecGraphViewer(GeneratorPath, args, Filename, wait, ErrMsg)) in DisplayGraph() 208 wait = false; in DisplayGraph() 221 return ExecGraphViewer(ViewerPath, args, PSFilename, wait, ErrMsg); in DisplayGraph() 233 wait = false; in DisplayGraph() [all …]
|
/external/valgrind/main/drd/tests/ |
D | monitor_example.cpp | 116 void wait() in wait() function in Monitor 195 void wait(const int state) in wait() function in StateVariable 199 m_monitor.wait(); in wait() 213 s_sv.wait(1); in thread_func() 215 s_sv.wait(3); in thread_func() 225 s_sv.wait(2); in main() 227 s_sv.wait(4); in main()
|
/external/chromium_org/third_party/WebKit/Source/core/streams/ |
D | ReadableStreamTest.cpp | 169 ScriptPromise p = stream->wait(scriptState()); in TEST_F() 170 ScriptPromise q = stream->wait(scriptState()); in TEST_F() 195 stream->wait(scriptState()); in TEST_F() 216 ScriptPromise promise = stream->wait(scriptState()); in TEST_F() 228 EXPECT_EQ(promise, stream->wait(scriptState())); in TEST_F() 266 stream->wait(scriptState()).then(createCaptor(&onFulfilled), createCaptor(&onRejected)); in TEST_F() 290 stream->wait(scriptState()).then(createCaptor(&onFulfilled), createCaptor(&onRejected)); in TEST_F() 321 ScriptPromise promise = stream->wait(scriptState()); in TEST_F() 344 EXPECT_NE(promise, stream->wait(scriptState())); in TEST_F() 360 stream->wait(scriptState()).then(createCaptor(&onWaitFulfilled), createCaptor(&onWaitRejected)); in TEST_F() [all …]
|
/external/valgrind/main/helgrind/tests/ |
D | tc23_bogus_condwait.stderr.exp-mips32 | 8 Thread #x: pthread_cond_{timed}wait called with invalid mutex 15 Thread #x: pthread_cond_{timed}wait called with un-held mutex 22 Thread #x: pthread_cond_{timed}wait: cond is associated with a different mutex 37 Thread #x: pthread_cond_{timed}wait called with mutex of type pthread_rwlock_t* 44 Thread #x: pthread_cond_{timed}wait: cond is associated with a different mutex 51 Thread #x: pthread_cond_{timed}wait called with mutex held by a different thread 58 Thread #x: pthread_cond_{timed}wait: cond is associated with a different mutex
|
/external/llvm/test/MC/Mips/ |
D | micromips-control-instructions.s | 25 # CHECK-EL: wait # encoding: [0x00,0x00,0x7c,0x93] 26 # CHECK-EL: wait 17 # encoding: [0x11,0x00,0x7c,0x93] 43 # CHECK-EB: wait # encoding: [0x00,0x00,0x93,0x7c] 44 # CHECK-EB: wait 17 # encoding: [0x00,0x11,0x93,0x7c] 59 wait 60 wait 17
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
D | SyncEvent.h | 70 void wait () in wait() function 72 mCondVar.wait (mMutex); in wait() 86 bool wait (long millisec) in wait() function 88 bool retVal = mCondVar.wait (mMutex, millisec); in wait()
|
/external/libcxx/test/thread/futures/futures.unique_future/ |
D | wait.pass.cpp | 50 f.wait(); in main() 53 f.wait(); in main() 64 f.wait(); in main() 67 f.wait(); in main() 78 f.wait(); in main() 81 f.wait(); in main()
|
/external/libcxx/test/thread/futures/futures.shared_future/ |
D | wait.pass.cpp | 50 f.wait(); in main() 53 f.wait(); in main() 64 f.wait(); in main() 67 f.wait(); in main() 78 f.wait(); in main() 81 f.wait(); in main()
|
/external/chromium_org/third_party/skia/platform_tools/android/bin/ |
D | adb_list_devices.py | 35 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()
|
/external/skia/platform_tools/android/bin/ |
D | adb_list_devices.py | 35 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()
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/pipe/ |
D | pipe_node.cc | 36 EventListenerLock wait(GetEventEmitter()); in Read() local 37 Error err = wait.WaitOnEvent(POLLIN, ms); in Read() 53 EventListenerLock wait(GetEventEmitter()); in Write() local 54 Error err = wait.WaitOnEvent(POLLOUT, ms); in Write()
|
/external/clang/test/Sema/ |
D | transparent-union-pointer.c | 5 union wait *__uptr; 9 extern int wait (__WAIT_STATUS __stat_loc); 13 wait(&status); in fastcgi_cleanup()
|
/external/libcxx/include/ |
D | condition_variable | 34 void wait(unique_lock<mutex>& lock); 36 void wait(unique_lock<mutex>& lock, Predicate pred); 79 void wait(Lock& lock); 81 void wait(Lock& lock, Predicate pred); 131 void wait(_Lock& __lock); 133 void wait(_Lock& __lock, _Predicate __pred); 186 condition_variable_any::wait(_Lock& __lock) 193 __cv_.wait(__lk); 199 condition_variable_any::wait(_Lock& __lock, _Predicate __pred) 202 wait(__lock);
|
/external/qemu/distrib/sdl-1.2.15/src/thread/ |
D | SDL_thread.c | 176 SDL_sem *wait; member 201 SDL_SemPost(args->wait); in SDL_RunThread() 237 args->wait = SDL_CreateSemaphore(0); in SDL_CreateThread() 238 if ( args->wait == NULL ) { in SDL_CreateThread() 255 SDL_SemWait(args->wait); in SDL_CreateThread() 262 SDL_DestroySemaphore(args->wait); in SDL_CreateThread()
|
/external/skia/dm/ |
D | DMTaskRunner.cpp | 12 void TaskRunner::wait() { in wait() function in DM::TaskRunner 17 fGpu.wait(); in wait() 18 fCpu.wait(); in wait()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_query.c | 87 boolean wait, in llvmpipe_get_query_result() argument 104 if (!wait) in llvmpipe_get_query_result() 161 boolean b, wait; in llvmpipe_check_render_cond() local 166 wait = (lp->render_cond_mode == PIPE_RENDER_COND_WAIT || in llvmpipe_check_render_cond() 169 b = pipe->get_query_result(pipe, lp->render_cond_query, wait, (void*)&result); in llvmpipe_check_render_cond()
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
D | lp_query.c | 87 boolean wait, in llvmpipe_get_query_result() argument 104 if (!wait) in llvmpipe_get_query_result() 161 boolean b, wait; in llvmpipe_check_render_cond() local 166 wait = (lp->render_cond_mode == PIPE_RENDER_COND_WAIT || in llvmpipe_check_render_cond() 169 b = pipe->get_query_result(pipe, lp->render_cond_query, wait, (void*)&result); in llvmpipe_check_render_cond()
|