HomeSort by relevance Sort by last modified time
    Searched refs:timed (Results 1 - 25 of 31) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/concurrent/
CyclicBarrier.java 165 private int dowait(boolean timed, long nanos)
197 // loop until tripped, broken, interrupted, or timed out
200 if (!timed)
222 if (timed && nanos <= 0L) {
322 * interrupted or timed out while the current thread was
392 * interrupted or timed out while the current thread was
SynchronousQueue.java 144 * @param timed if this operation should timeout
151 abstract E transfer(E e, boolean timed, long nanos);
158 * The number of times to spin before blocking in timed waits.
168 * This is greater than timed value because untimed waits spin
175 * rather than to use timed park. A rough estimate suffices.
297 E transfer(E e, boolean timed, long nanos) {
325 if (timed && nanos <= 0) { // can't wait
331 SNode m = awaitFulfill(s, timed, nanos);
378 * @param timed true if timed wai
    [all...]
Exchanger.java 190 * throw TimeoutExceptions in the timed version of the public
273 * timeout, to avoid need for separate timed versions of these
329 * @param timed true if the wait is timed
330 * @param ns if timed, the maximum wait time, else 0L
332 * TIMED_OUT if timed and timed out
334 private final Object arenaExchange(Object item, boolean timed, long ns) {
351 long end = (timed && m == 0) ? System.nanoTime() + ns : 0L;
372 (!timed ||
    [all...]
Phaser.java 755 * @throws TimeoutException if timed out while waiting
1065 final boolean timed; field in class:Phaser.QNode
    [all...]
AbstractExecutorService.java 111 boolean timed, long nanos)
132 final long deadline = timed ? System.nanoTime() + nanos : 0L;
150 else if (timed) {
FutureTask.java 363 * @param timed true if use timed waits
364 * @param nanos time to wait, if timed
367 private int awaitDone(boolean timed, long nanos)
369 final long deadline = timed ? System.nanoTime() + nanos : 0L;
391 else if (timed) {
405 * Tries to unlink a timed-out or interrupted wait node to avoid
LinkedTransferQueue.java 292 * the current thread was interrupted or the wait timed out. On
322 * may arise due to timed out or interrupted waits, or calls to
345 * can occur in practice; for example when a series of short timed
361 * caller is already timed-out, cancelled, or performing a
558 private static final int TIMED = 3; // for timed poll, tryTransfer
571 * @param how NOW, ASYNC, SYNC, or TIMED
572 * @param nanos timeout in nanosecs, used only if mode is TIMED
616 return awaitMatch(s, pred, e, (how == TIMED), nanos);
665 * @param timed if true, wait only until timeout elapse
    [all...]
ThreadPoolExecutor.java     [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractListeningExecutorService.java 63 private <T> T doInvokeAny(Collection<? extends Callable<T>> tasks, boolean timed, long nanos)
80 long lastTime = timed ? System.nanoTime() : 0;
97 } else if (timed) {
  /external/tcpdump/
Android.mk 106 print-timed.c\
  /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.
  /dalvik/vm/
Sync.cpp 621 bool timed; local
646 timed = false;
649 timed = true;
677 if (timed)
709 if (!timed) {
    [all...]
  /external/chromium_org/tools/page_cycler/database/
common.js 36 * transactionCallback: The transaction callback that should be timed. This
  /external/chromium/chrome/browser/extensions/
extension_bookmarks_module.cc 770 TimedLimit* timed = new TimedLimit(kLongLimitConfig, long_mapper); local
774 heuristics->push_back(timed);
  /external/iputils/
clockdiff.c 17 #include <protocols/timed.h>
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
popuplib.js 244 // Check to perform at each execution of the timed loop. It also triggers
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
popuplib.js 244 // Check to perform at each execution of the timed loop. It also triggers
  /external/chromium_org/tools/perf/page_sets/mse_cases/
startup_test.js 413 console.log('Test timed out.');
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
jquery.js     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js     [all...]
  /external/chromium_org/tools/win/split_link/viz.js/
viz.js     [all...]
  /external/chromium_org/v8/tools/profviz/
gnuplot-4.6.3-emscripten.js     [all...]
  /external/droiddriver/libs/
guava-13.0.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 

Completed in 774 milliseconds

1 2