HomeSort by relevance Sort by last modified time
    Searched defs:await (Results 1 - 25 of 50) sorted by null

1 2

  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
WaitingThread.java 137 public boolean await(Date deadline) method in class:WaitingThread
141 // the lock would not be released on calling cond.await() below.
159 this.cond.await();
169 } // await
  /libcore/luni/src/main/java/java/util/concurrent/
CountDownLatch.java 16 * The {@link #await await} methods block until the current count reaches
19 * {@link #await await} return immediately. This is a one-shot phenomenon
26 * simple on/off latch, or gate: all threads invoking {@link #await await}
35 * thread from proceeding past an {@link #await await} until all
59 * doneSignal.await(); // wait for all to finish
72 * startSignal.await();
206 public void await() throws InterruptedException { method in class:CountDownLatch
251 public boolean await(long timeout, TimeUnit unit) method in class:CountDownLatch
    [all...]
CyclicBarrier.java 40 * barrier.await();
76 * {@link #await} returns the arrival index of that thread at the barrier.
79 * <pre> if (barrier.await() == 0) {
92 * {@code await()}
96 * corresponding {@code await()} in other threads.
198 trip.await();
235 * @param parties the number of threads that must invoke {@link #await}
253 * @param parties the number of threads that must invoke {@link #await}
272 * <tt>await</tt> on this barrier.
297 * <tt>await</tt> is invoked, or while any thread is waiting, the
324 public int await() throws InterruptedException, BrokenBarrierException { method in class:CyclicBarrier
394 public int await(long timeout, TimeUnit unit) method in class:CyclicBarrier
    [all...]
ArrayBlockingQueue.java 295 notFull.await();
345 notEmpty.await();
LinkedBlockingDeque.java 347 notFull.await();
364 notFull.await();
460 notEmpty.await();
473 notEmpty.await();
    [all...]
LinkedBlockingQueue.java 320 notFull.await();
413 notEmpty.await();
DelayQueue.java 51 * other threads await indefinitely. The leader thread must
180 available.await();
186 available.await();
Exchanger.java 331 await(me, slot);
462 private static Object await(Node node, Slot slot) { method in class:Exchanger
PriorityBlockingQueue.java 507 notEmpty.await();
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
Condition.java 58 * <b>notFull.await();</b>
72 * <b>notEmpty.await();</b>
104 * {@linkplain #await waiting} and {@linkplain #signal signalling} methods.
202 void await() throws InterruptedException; method in interface:Condition
345 boolean await(long time, TimeUnit unit) throws InterruptedException; method in interface:Condition
429 * lock before returning from {@code await}.
447 * return from {@code await}.
  /cts/tests/src/android/opengl/cts/
OpenGlEsVersionStubActivity.java 70 mSurfaceCreatedLatch.await(TIMEOUT_SECONDS, TimeUnit.SECONDS);
  /packages/apps/Browser/src/com/android/browser/
NfcHandler.java 85 mPrivateBrowsingSignal.await();
AutofillHandler.java 65 mLoaded.await();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
BarrierConsumer.java 59 mNotFull.await();
  /external/blktrace/btt/
iostat.c 60 "avgrq-sz avgqu-sz await svctm %%util Stamp\n");
87 double dt, nios, avgrq_sz, p_util, nrqm, await, svctm; local
109 await = ((nios + nrqm) > 0.0) ? TO_MSEC(sp->wait) / (nios+nrqm) : 0.0;
114 * For AWAIT: nios should be the same as number of inserts
129 fprintf(iostat_ofp, "%7.2lf ", await);
155 asp->await += await;
176 fprintf(iostat_ofp, "%7.2lf ", asp->await / asp->n);
  /libcore/luni/src/test/java/libcore/java/lang/ref/
FinalizeTest.java 101 latch.await();
  /packages/experimental/AndroidVendorSecurityTool/src/com/google/android/googlelogin/
GoogleLoginServiceBlockingHelper.java 186 mBindWaitCondition.await();
  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountManagerTest.java 341 latch.await(LATCH_TIMEOUT_MS, TimeUnit.MILLISECONDS);
539 latch1.await(LATCH_TIMEOUT_MS, TimeUnit.MILLISECONDS);
577 latch2.await(LATCH_TIMEOUT_MS, TimeUnit.MILLISECONDS);
696 latch.await(LATCH_TIMEOUT_MS, TimeUnit.MILLISECONDS);
788 latch.await(LATCH_TIMEOUT_MS, TimeUnit.MILLISECONDS);
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverSyncTestCase.java 104 latch.await(latchTimeoutMs, TimeUnit.MILLISECONDS);
126 latch.await(latchTimeoutMillis, TimeUnit.MILLISECONDS);
142 latch.await(latchTimeoutMillis, TimeUnit.MILLISECONDS);
  /cts/tests/tests/holo/src/android/holo/cts/
ThemeTestActivity.java 176 mLatch.await();
183 if (!mLatch.await(timeout, unit)) {
  /external/guava/src/com/google/common/util/concurrent/
AbstractService.java 284 done.await();
290 if (done.await(timeout, unit)) {
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 272 task.done.await();
  /frameworks/support/v4/java/android/support/v4/content/
AsyncTaskLoader.java 257 task.done.await();
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
FakeAsyncTaskExecutor.java 203 Assert.assertTrue(latch.await(mTimeoutMs, TimeUnit.MILLISECONDS));
  /libcore/luni/src/main/java/java/net/
InetAddress.java 715 latch.await();
    [all...]

Completed in 7383 milliseconds

1 2