/libcore/luni/src/main/java/java/util/concurrent/ |
CyclicBarrier.java | 170 private int dowait(boolean timed, long nanos) 202 // loop until tripped, broken, interrupted, or timed out 205 if (!timed) 227 if (timed && nanos <= 0L) { 327 * interrupted or timed out while the current thread was 398 * interrupted or timed out while the current thread was
|
SynchronousQueue.java | 150 * @param timed if this operation should timeout 157 abstract E transfer(E e, boolean timed, long nanos); 161 * The number of times to spin before blocking in timed waits. 172 * This is greater than timed value because untimed waits spin 179 * rather than to use timed park. A rough estimate suffices. 299 E transfer(E e, boolean timed, long nanos) { 327 if (timed && nanos <= 0L) { // can't wait 333 SNode m = awaitFulfill(s, timed, nanos); 380 * @param timed true if timed wai [all...] |
Exchanger.java | 188 * throw TimeoutExceptions in the timed version of the public 271 * timeout, to avoid need for separate timed versions of these 324 * @param timed true if the wait is timed 325 * @param ns if timed, the maximum wait time, else 0L 327 * TIMED_OUT if timed and timed out 329 private final Object arenaExchange(Object item, boolean timed, long ns) { 346 long end = (timed && m == 0) ? System.nanoTime() + ns : 0L; 367 (!timed || [all...] |
Phaser.java | 750 * @throws TimeoutException if timed out while waiting 1059 final boolean timed; field in class:Phaser.QNode [all...] |
AbstractExecutorService.java | 119 boolean timed, long nanos) 140 final long deadline = timed ? System.nanoTime() + nanos : 0L; 158 else if (timed) { 269 // Timed out before all the tasks could be completed; cancel remaining
|
FutureTask.java | 362 * @param timed true if use timed waits 363 * @param nanos time to wait, if timed 366 private int awaitDone(boolean timed, long nanos) 394 if (timed && nanos <= 0L) 401 else if (timed) { 426 * Tries to unlink a timed-out or interrupted wait node to avoid
|
ThreadPoolExecutor.java | [all...] |
LinkedTransferQueue.java | 294 * the current thread was interrupted or the wait timed out. On 324 * may arise due to timed out or interrupted waits, or calls to 347 * can occur in practice; for example when a series of short timed 363 * caller is already timed-out, cancelled, or performing a 558 private static final int TIMED = 3; // for timed poll, tryTransfer 565 * @param how NOW, ASYNC, SYNC, or TIMED 566 * @param nanos timeout in nanosecs, used only if mode is TIMED 611 return awaitMatch(s, pred, e, (how == TIMED), nanos); 660 * @param timed if true, wait only until timeout elapse [all...] |
/external/chromium-trace/catapult/devil/devil/utils/ |
lsusb.py | 95 logging.info('lsusb -v %s:%s timed out.', bus_num, dev_num)
|
/prebuilts/go/darwin-x86/doc/progs/ |
timeout1.go | 25 // the read from ch has timed out
|
/prebuilts/go/linux-x86/doc/progs/ |
timeout1.go | 25 // the read from ch has timed out
|
/external/guava/guava-bootstrap/src/java/util/concurrent/ |
AbstractExecutorService.java | 39 boolean timed, long nanos) 52 long lastTime = (timed)? System.nanoTime() : 0; 69 else if (timed) {
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/bench/ |
main.py | 180 '%.2f' % (timed / times[-1]) for timed in times[:-1]
|
write.py | 281 '%.2f' % (timed / time) for timed in times[:-1]
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/ |
main.py | 193 '%.2f' % (timed / times[-1]) for timed in times[:-1]
|
write.py | 284 '%.2f' % (timed / time) for timed in times[:-1]
|
/prebuilts/go/darwin-x86/src/syscall/ |
errors_plan9.go | 40 ETIMEDOUT = NewError("connection timed out")
|
/prebuilts/go/linux-x86/src/syscall/ |
errors_plan9.go | 40 ETIMEDOUT = NewError("connection timed out")
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
messages.properties | 39 RemoteAdtTestRunner_RunTimeoutException=Connection with device timed out.
|
/external/tcpdump/ |
Android.mk | 142 print-timed.c \
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
MoreExecutors.java | 673 Collection<? extends Callable<T>> tasks, boolean timed, long nanos) 691 long lastTime = timed ? System.nanoTime() : 0; 707 } else if (timed) { [all...] |
/device/google/marlin/ |
system.prop | 71 persist.timed.enable=true
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/testharness/ |
testharness.js | 783 this.set_status(this.TIMEOUT, "Test timed out"); 886 this.set_status(this.TIMEOUT, "Test timed out"); [all...] |
/external/tcpdump/win32/prj/ |
GNUmakefile | 136 ../../print-timed.o \
|
/external/v8/tools/ |
logreader.js | 38 * @param {boolean} timedRange Ignore ticks outside timed range. 122 // In pairwise mode, a "current-time" line ends the timed range.
|