Searched defs:tryAcquireShared (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
H A DCountDownLatch.java173 protected int tryAcquireShared(int acquires) { method in class:CountDownLatch.Sync
H A DSemaphore.java234 protected int tryAcquireShared(int acquires) { method in class:Semaphore.NonfairSync
249 protected int tryAcquireShared(int acquires) { method in class:Semaphore.FairSync
/libcore/ojluni/src/main/java/java/util/concurrent/locks/
H A DReentrantReadWriteLock.java450 protected final int tryAcquireShared(int unused) { method in class:ReentrantReadWriteLock.Sync
495 * and reentrant reads not dealt with in tryAcquireShared.
500 * tryAcquireShared but is simpler overall by not
501 * complicating tryAcquireShared with interactions between
575 * This is identical in effect to tryAcquireShared except for
H A DAbstractQueuedLongSynchronizer.java272 * @param propagate the return value from a tryAcquireShared
517 long r = tryAcquireShared(arg);
547 long r = tryAcquireShared(arg);
581 long r = tryAcquireShared(arg);
695 protected long tryAcquireShared(long arg) { method in class:AbstractQueuedLongSynchronizer
830 * first invoking at least once {@link #tryAcquireShared},
833 * #tryAcquireShared} until success.
836 * {@link #tryAcquireShared} but is otherwise uninterpreted
840 if (tryAcquireShared(arg) < 0)
847 * {@link #tryAcquireShared}, returnin
[all...]
H A DAbstractQueuedSynchronizer.java115 * <li>{@link #tryAcquireShared}
154 * define {@code tryAcquire} and/or {@code tryAcquireShared} to
268 * protected int tryAcquireShared(int ignore) {
738 * @param propagate the return value from a tryAcquireShared
983 int r = tryAcquireShared(arg);
1013 int r = tryAcquireShared(arg);
1047 int r = tryAcquireShared(arg);
1161 protected int tryAcquireShared(int arg) { method in class:AbstractQueuedSynchronizer
1296 * first invoking at least once {@link #tryAcquireShared},
1299 * #tryAcquireShared} unti
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DAbstractQueuedLongSynchronizerTest.java97 public long tryAcquireShared(long ignore) { method in class:AbstractQueuedLongSynchronizerTest.BooleanLatch
H A DAbstractQueuedSynchronizerTest.java101 public int tryAcquireShared(int ignore) { method in class:AbstractQueuedSynchronizerTest.BooleanLatch

Completed in 539 milliseconds