HomeSort by relevance Sort by last modified time
    Searched defs:wait (Results 201 - 225 of 382) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
EventQueueImpl.java 170 * occurs. We can't use the timed version of wait()
177 * use a timed wait because there's no way to distinguish
189 this.wait();
  /external/python/cpython2/Lib/multiprocessing/
pool.py 507 # We must wait for the worker handler to exit before terminating
557 def wait(self, timeout=None): member in class:ApplyResult
561 self._cond.wait(timeout)
566 self.wait(timeout)
660 self._cond.wait(timeout)
  /external/python/cpython2/Lib/
subprocess.py 165 """Run command with arguments. Wait for command to complete, then
172 return Popen(*popenargs, **kwargs).wait()
176 """Run command with arguments. Wait for command to complete. If
448 # Child is still running, keep us alive until we can wait on it.
454 stdout and stderr, until end-of-file is reached. Wait for
480 self.wait()
688 def wait(self): function in function:Popen.poll
689 """Wait for child process to terminate. Returns returncode
758 self.wait()
1094 def wait(self): function in function:Popen.poll
    [all...]
  /external/python/cpython2/Lib/test/
test_signal.py 67 def wait(self, child): member in class:InterProcessSignalTests
68 """Wait for child to finish, ignoring EINTR."""
71 child.wait()
96 self.wait(child)
109 # This wait should be interrupted by the signal's exception.
110 self.wait(child)
121 self.wait(child) # Nothing should happen.
  /external/python/cpython3/Lib/asyncio/
tasks.py 6 'wait', 'wait_for', 'as_completed', 'sleep',
328 # wait() and as_completed() similar to those in PEP 3148.
335 async def wait(fs, *, loop=None, timeout=None, return_when=ALL_COMPLETED): function
336 """Wait for the Futures and coroutines given by fs to complete.
346 done, pending = await asyncio.wait(fs)
372 """Wait for the single Future or coroutine to complete, with timeout.
380 If the wait is cancelled, the task is also cancelled.
407 # wait until the future completes or the timeout
429 """Internal helper for wait().
472 """Cancel the *fut* future or task and wait until it completes.""
    [all...]
  /external/python/cpython3/Lib/concurrent/futures/
_base.py 57 """Provides the event that wait() and as_completed() block on."""
94 """Used by wait(return_when=FIRST_COMPLETED)."""
109 """Used by wait(return_when=FIRST_EXCEPTION and ALL_COMPLETED)."""
202 timeout: The maximum number of seconds to wait. If None, then there
203 is no limit on the wait time.
240 waiter.event.wait(wait_timeout)
260 def wait(fs, timeout=None, return_when=ALL_COMPLETED): function
261 """Wait for the futures in the given sequence to complete.
265 wait upon.
266 timeout: The maximum number of seconds to wait. If None, then ther
    [all...]
  /external/python/cpython3/Lib/multiprocessing/
pool.py 590 # We must wait for the worker handler to exit before terminating
647 def wait(self, timeout=None): member in class:ApplyResult
648 self._event.wait(timeout)
651 self.wait(timeout)
737 self._cond.wait(timeout)
  /external/python/cpython3/Lib/
subprocess.py 221 # exited at the time its __del__ method got called: those processes are wait()ed
316 """Run command with arguments. Wait for command to complete or
325 return p.wait(timeout=timeout)
326 except: # Including KeyboardInterrupt, wait handled that.
328 # We don't call p.wait() again as p.__exit__ does that for us.
333 """Run command with arguments. Wait for command to complete. If
482 # We don't call process.wait() as .__exit__ does that for us.
573 according to the rules for the function 'wait'. Example:
666 # updated to prevent clobbering returncode if wait() or poll() are
837 # an interrupted .wait() or .communicate() call, do so her
985 def wait(self, timeout=None): member in class:Popen
    [all...]
  /external/python/futures/concurrent/futures/
_base.py 59 """Provides the event that wait() and as_completed() block on."""
96 """Used by wait(return_when=FIRST_COMPLETED)."""
111 """Used by wait(return_when=FIRST_EXCEPTION and ALL_COMPLETED)."""
204 timeout: The maximum number of seconds to wait. If None, then there
205 is no limit on the wait time.
244 waiter.event.wait(wait_timeout)
266 def wait(fs, timeout=None, return_when=ALL_COMPLETED): function
267 """Wait for the futures in the given sequence to complete.
271 wait upon.
272 timeout: The maximum number of seconds to wait. If None, then ther
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
EventReporter.java 36 mLock.wait();
GameThread.java 112 mPauseLock.wait();
114 // No big deal if this wait is interrupted.
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowLooper.java 107 realObject.wait();
  /external/skia/src/image/
SkSurface.cpp 271 bool SkSurface::wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { function in class:SkSurface
  /external/skqp/src/image/
SkSurface.cpp 255 bool SkSurface::wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) { function in class:SkSurface
  /external/squashfs-tools/squashfs-tools/
caches-queues-lists.h 151 pthread_cond_t wait; member in struct:seq_queue
  /external/swiftshader/src/Common/
Thread.hpp 103 void wait();
225 inline void Event::wait() function in class:sw::Event
  /external/swiftshader/src/Reactor/
Thread.hpp 103 void wait();
225 inline void Event::wait() function in class:rr::Event
  /external/swiftshader/src/System/
Thread.hpp 103 void wait();
225 inline void Event::wait() function in class:sw::Event
  /external/syzkaller/pkg/ipc/
ipc.go 574 c.wait()
628 c.wait()
638 func (c *command) wait() error { func
639 err := c.cmd.Wait()
642 // c.exited closed by an earlier call to wait.
728 if err := c.wait(); <-hang {
770 // so let's better wait than report false misleading crashes.
  /external/tensorflow/tensorflow/python/distribute/
distribute_coordinator.py 72 `wait` pass to through this barrier.
81 def wait(self): member in class:_Barrier
82 """Waits until all other callers reach the same wait call."""
91 self._condition.wait()
216 self._worker_barrier.wait()
239 max_wait_secs: Maximum time to wait for the session to become available.
    [all...]
  /external/testng/src/main/java/org/testng/remote/strprotocol/
BaseMessageSender.java 203 m_ackLock.wait();
  /external/toybox/toys/other/
vmstat.c 33 uint64_t user, nice, sys, idle, wait, irq, sirq, intr, ctxt, running, blocked; member in struct:vmstat_proc
126 // add up user, sys, idle, and wait time used since last time
132 // cache, swap_in, swap_out, io_in, io_out, sirq, ctxt, user, sys, idle,wait
  /external/u-boot/board/freescale/common/
vid.c 92 #define WAIT_FOR_ADC 532 /* wait for 532 microseconds for ADC */
95 #define WAIT_FOR_ADC 138 /* wait for 138 microseconds for ADC */
230 /* wait until voltage starts to reach the target. Voltage slew
262 /* wait until voltage is stable */
282 int wait, vdd_last; local
302 wait = wait_for_new_voltage(vdd, i2caddress);
303 if (wait < 0)
305 debug("VID: Waited %d us\n", wait * NUM_READINGS * WAIT_FOR_ADC);
339 /* Wait for the volatge to get to the desired value */
  /external/u-boot/drivers/mmc/
tmio-common.c 136 long wait = 1000000; local
140 if (wait-- < 0) {
187 /* wait until the buffer is filled with data */
240 /* wait until the buffer becomes empty */
310 long wait = 1000000 + 10 * blocks; local
313 if (wait-- < 0) {
  /external/vogar/src/vogar/tasks/
TaskQueue.java 178 wait(); method

Completed in 3350 milliseconds

1 2 3 4 5 6 7 891011>>