Searched defs:wait (Results 26 - 50 of 179) sorted by relevance

12345678

/external/qemu/hw/mips/
H A Dcputimer.c36 uint32_t wait; local
39 wait = env->CP0_Compare - env->CP0_Count -
41 next = now + muldiv64(wait, get_ticks_per_sec(), TIMER_FREQ);
/external/chromium_org/base/process/
H A Dlaunch.h43 // If true, wait for the process to complete.
44 bool wait; member in struct:base::LaunchOptions
185 // supported LaunchOptions are |start_hidden| and |wait|.
215 // Executes the application specified by |cl| and wait for it to exit. Stores
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...]
/external/chromium_org/build/android/buildbot/
H A Dbb_utils.py46 def wait(): member in class:SpawnCmd.MockPopen
59 code = SpawnCmd(command, stdout, cwd).wait()
/external/chromium_org/mojo/android/system/src/org/chromium/mojo/system/impl/
H A DHandleBase.java65 * @see org.chromium.mojo.system.Handle#wait(HandleSignals, long)
68 public int wait(HandleSignals signals, long deadline) { method in class:HandleBase
69 return mCore.wait(this, signals, deadline);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DThreadingPthreads.cpp203 void ThreadCondition::wait(MutexBase& mutex) function in class:WTF::ThreadCondition
219 wait(mutex);
H A DThreadingWin.cpp224 // Enter the wait state.
234 // Main wait - use timeout.
246 // this may occur if many calls to wait with a timeout are made and
352 void ThreadCondition::wait(MutexBase& mutex) function in class:WTF::ThreadCondition
362 // Consider the wait to have timed out, even if our condition has already been signaled, to
388 // Time is too far in the future (and would overflow unsigned long) - wait forever.
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dexecutive_mock.py46 def wait(self): member in class:MockProcess
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_query.c137 boolean wait,
146 if (wait) {
157 (!wait ? PIPE_TRANSFER_DONTBLOCK : 0));
185 boolean wait; local
190 wait = mode == PIPE_RENDER_COND_WAIT ||
193 if (r300_get_query_result(pipe, query, wait, &result)) {
135 r300_get_query_result(struct pipe_context* pipe, struct pipe_query* query, boolean wait, union pipe_query_result *vresult) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_query.c159 boolean wait,
204 boolean b, wait; local
211 wait = (sp->render_cond_mode == PIPE_RENDER_COND_WAIT ||
214 b = pipe->get_query_result(pipe, sp->render_cond_query, wait,
157 softpipe_get_query_result(struct pipe_context *pipe, struct pipe_query *q, boolean wait, union pipe_query_result *vresult) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_pipe_query.c65 boolean wait,
103 * The reason is that we don't want to wait for fences when checking the
153 * determines the query result. So the only option here is to wait for
209 boolean wait,
219 SVGA_DBG(DEBUG_QUERY, "%s wait: %d\n", __FUNCTION__);
223 * synchronous wait on the host */
241 if(!wait)
207 svga_get_query_result(struct pipe_context *pipe, struct pipe_query *q, boolean wait, union pipe_query_result *vresult) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Devent.cpp118 hard_event::wait() const { function in class:hard_event
169 soft_event::wait() const { function in class:soft_event
171 ev->wait();
/external/chromium_org/third_party/skia/src/utils/
H A DSkThreadUtils_pthread.cpp30 void PThreadEvent::wait() { function in class:PThreadEvent
62 pthreadData->fStarted.wait();
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dvtune_profiler_unittest.py23 def wait(self): member in class:MockPopen
/external/kernel-headers/original/uapi/linux/
H A Ddlm_plock.h32 __u8 wait; member in struct:dlm_plock_info
/external/lldb/test/pexpect-2.4/examples/
H A Dchess2.py70 def wait (self, color): member in class:Chess
118 white.wait ('Black')
123 black.wait ('White')
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_query.c137 boolean wait,
146 if (wait) {
157 (!wait ? PIPE_TRANSFER_DONTBLOCK : 0));
185 boolean wait; local
190 wait = mode == PIPE_RENDER_COND_WAIT ||
193 if (r300_get_query_result(pipe, query, wait, &result)) {
135 r300_get_query_result(struct pipe_context* pipe, struct pipe_query* query, boolean wait, union pipe_query_result *vresult) argument
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_query.c159 boolean wait,
204 boolean b, wait; local
211 wait = (sp->render_cond_mode == PIPE_RENDER_COND_WAIT ||
214 b = pipe->get_query_result(pipe, sp->render_cond_query, wait,
157 softpipe_get_query_result(struct pipe_context *pipe, struct pipe_query *q, boolean wait, union pipe_query_result *vresult) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_query.c65 boolean wait,
103 * The reason is that we don't want to wait for fences when checking the
153 * determines the query result. So the only option here is to wait for
209 boolean wait,
219 SVGA_DBG(DEBUG_QUERY, "%s wait: %d\n", __FUNCTION__);
223 * synchronous wait on the host */
241 if(!wait)
207 svga_get_query_result(struct pipe_context *pipe, struct pipe_query *q, boolean wait, union pipe_query_result *vresult) argument
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Devent.cpp118 hard_event::wait() const { function in class:hard_event
169 soft_event::wait() const { function in class:soft_event
171 ev->wait();
/external/skia/src/utils/
H A DSkThreadUtils_pthread.cpp30 void PThreadEvent::wait() { function in class:PThreadEvent
62 pthreadData->fStarted.wait();
/external/apache-harmony/jdwp/
H A DAndroid.mk78 define wait-for-boot-complete
80 $(hide) while [ `adb wait-for-device shell getprop dev.bootcomplete | grep -c 1` -eq 0 ]; \
94 $(call wait-for-boot-complete)
/external/arduino/libraries/Wire/utility/
H A Dtwi.c123 // wait until twi is ready, become master receiver
147 // wait for read operation to complete
170 * wait: boolean indicating to wait for write or not
177 uint8_t twi_writeTo(uint8_t address, uint8_t* data, uint8_t length, uint8_t wait) argument
186 // wait until twi is ready, become master transmitter
210 // wait for write operation to complete
211 while(wait && (TWI_MTX == twi_state)){
307 // wait for stop condition to be exectued on bus
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/
H A DHandleMock.java36 * @see Handle#wait(Core.HandleSignals, long)
39 public int wait(Core.HandleSignals signals, long deadline) { method in class:HandleMock
/external/chromium_org/third_party/WebKit/Source/core/streams/
H A DReadableStream.cpp119 ScriptPromise ReadableStream::wait(ScriptState* scriptState) function in class:blink::ReadableStream

Completed in 632 milliseconds

12345678