Searched refs:tryAcquireShared (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCountDownLatch.java177 protected int tryAcquireShared(int acquires) { method in class:CountDownLatch.Sync
H A DSemaphore.java233 protected int tryAcquireShared(int acquires) { method in class:Semaphore.NonfairSync
248 protected int tryAcquireShared(int acquires) { method in class:Semaphore.FairSync
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DAbstractQueuedLongSynchronizer.java483 * @param propagate the return value from a tryAcquireShared
731 long r = tryAcquireShared(arg);
763 long r = tryAcquireShared(arg);
798 long r = tryAcquireShared(arg);
913 protected long tryAcquireShared(long arg) { method in class:AbstractQueuedLongSynchronizer
1048 * first invoking at least once {@link #tryAcquireShared},
1051 * #tryAcquireShared} until success.
1054 * {@link #tryAcquireShared} but is otherwise uninterpreted
1058 if (tryAcquireShared(arg) < 0)
1065 * {@link #tryAcquireShared}, returnin
[all...]
H A DAbstractQueuedSynchronizer.java114 * <li> {@link #tryAcquireShared}
153 * define <tt>tryAcquire</tt> and/or <tt>tryAcquireShared</tt> to
267 * protected int tryAcquireShared(int ignore) {
706 * @param propagate the return value from a tryAcquireShared
954 int r = tryAcquireShared(arg);
986 int r = tryAcquireShared(arg);
1021 int r = tryAcquireShared(arg);
1136 protected int tryAcquireShared(int arg) { method in class:AbstractQueuedSynchronizer
1271 * first invoking at least once {@link #tryAcquireShared},
1274 * #tryAcquireShared} unti
[all...]
H A DReentrantReadWriteLock.java451 protected final int tryAcquireShared(int unused) { method in class:ReentrantReadWriteLock.Sync
496 * and reentrant reads not dealt with in tryAcquireShared.
501 * tryAcquireShared but is simpler overall by not
502 * complicating tryAcquireShared with interactions between
576 * This is identical in effect to tryAcquireShared except for

Completed in 263 milliseconds