Searched defs:await (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DBarrier.java50 public void await() { method in class:Barrier
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DCondition.java87 * <b>notFull.await();</b>
101 * <b>notEmpty.await();</b>
133 * {@linkplain #await waiting} and {@linkplain #signal signalling} methods.
231 void await() throws InterruptedException; method in interface:Condition
374 boolean await(long time, TimeUnit unit) throws InterruptedException; method in interface:Condition
458 * lock before returning from {@code await}.
476 * return from {@code await}.
H A DAbstractQueuedLongSynchronizer.java147 * only accessed when exclusively held. Upon await, a node is
1815 public final void await() throws InterruptedException { method in class:AbstractQueuedLongSynchronizer.ConditionObject
1937 public final boolean await(long time, TimeUnit unit) method in class:AbstractQueuedLongSynchronizer.ConditionObject
H A DAbstractQueuedSynchronizer.java280 * public void await() throws InterruptedException {
370 * only accessed when exclusively held. Upon await, a node is
2036 public final void await() throws InterruptedException { method in class:AbstractQueuedSynchronizer.ConditionObject
2158 public final boolean await(long time, TimeUnit unit) method in class:AbstractQueuedSynchronizer.ConditionObject
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/concurrent/
H A DCondVar.java79 * notFull.await();
96 * notEmpty.await();
225 public void await() throws InterruptedException { method in class:CondVar
232 ORBUtility.dprintTrace( this, "await enter" ) ;
260 ORBUtility.dprintTrace( this, "await exit" ) ;
331 * normally (i.e., not via InterruptedException) from await or timedwait.
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCountDownLatch.java45 * The {@link #await await} methods block until the current count reaches
48 * {@link #await await} return immediately. This is a one-shot phenomenon
55 * simple on/off latch, or gate: all threads invoking {@link #await await}
64 * thread from proceeding past an {@link #await await} until all
88 * doneSignal.await(); // wait for all to finish
101 * startSignal.await();
235 public void await() throws InterruptedException { method in class:CountDownLatch
280 public boolean await(long timeout, TimeUnit unit) method in class:CountDownLatch
[all...]
H A DCyclicBarrier.java69 * barrier.await();
105 * {@link #await} returns the arrival index of that thread at the barrier.
108 * <pre> if (barrier.await() == 0) {
121 * {@code await()}
125 * corresponding {@code await()} in other threads.
227 trip.await();
264 * @param parties the number of threads that must invoke {@link #await}
282 * @param parties the number of threads that must invoke {@link #await}
301 * <tt>await</tt> on this barrier.
326 * <tt>await</t
353 public int await() throws InterruptedException, BrokenBarrierException { method in class:CyclicBarrier
423 public int await(long timeout, TimeUnit unit) method in class:CyclicBarrier
[all...]
H A DExchanger.java360 await(me, slot);
491 private static Object await(Node node, Slot slot) { method in class:Exchanger
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DBasic.java238 await(latch);
323 await(latch);
362 await(latch);
571 await(latch);
596 await(latch);
599 static void await(CountDownLatch latch) { method in class:Basic
604 latch.await();
/openjdk7/jdk/test/java/util/concurrent/ConcurrentQueues/
H A DRemovePollRace.java113 void await(CountDownLatch latch) { method in class:RemovePollRace
114 try { latch.await(); }
133 await(startingGate);
147 await(startingGate);
161 await(startingGate);
/openjdk7/jdk/test/javax/management/remote/mandatory/threads/
H A DExecutorTest.java161 listener.await();
200 void await() throws InterruptedException { method in class:ExecutorTest.SemaphoreListener
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/amx/
H A DMBeanListener.java118 public void await() method in class:MBeanListener.CallbackImpl
122 mLatch.await(); // wait until BootAMXMBean is ready
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java1065 private void await() { method in class:Activation.GroupEntry
1108 await();
1198 await();

Completed in 91 milliseconds