Searched refs:hasQueuedThreads (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/test/java/util/concurrent/Semaphore/
H A DRacingReleases.java96 sem.hasQueuedThreads() ? "true" : "false"));
102 if (sem.hasQueuedThreads())
103 throw new Error(String.valueOf(sem.hasQueuedThreads()));
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadExecutionSynchronizer.java54 while(!semaphore.hasQueuedThreads()) {
H A DMyOwnSynchronizer.java143 public boolean hasQueuedThreads() { return sync.hasQueuedThreads(); } method in class:MyOwnSynchronizer.Mutex
/openjdk7/jdk/test/java/util/concurrent/locks/Lock/
H A DFlakyMutex.java102 check(hasQueuedThreads());
106 do {} while (hasQueuedPredecessors() != hasQueuedThreads());
133 public boolean hasQueuedThreads() { return sync.hasQueuedThreads(); } method in class:FlakyMutex
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DSemaphore.java672 public final boolean hasQueuedThreads() { method in class:Semaphore
673 return sync.hasQueuedThreads();
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DReentrantLock.java635 public final boolean hasQueuedThreads() { method in class:ReentrantLock
636 return sync.hasQueuedThreads();
H A DReentrantReadWriteLock.java1349 public final boolean hasQueuedThreads() { method in class:ReentrantReadWriteLock
1350 return sync.hasQueuedThreads();
H A DAbstractQueuedLongSynchronizer.java1137 public final boolean hasQueuedThreads() { method in class:AbstractQueuedLongSynchronizer
1253 * hasQueuedThreads()}</pre>
1393 String q = hasQueuedThreads() ? "non" : "";
H A DAbstractQueuedSynchronizer.java175 * and/or {@link #hasQueuedThreads} to only do so if the synchronizer
245 * public boolean hasQueuedThreads() { return sync.hasQueuedThreads(); }
1360 public final boolean hasQueuedThreads() { method in class:AbstractQueuedSynchronizer
1476 * hasQueuedThreads()}</pre>
1616 String q = hasQueuedThreads() ? "non" : "";
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DThreadMXBeanProxy.java229 public boolean hasQueuedThreads() { return sync.hasQueuedThreads(); } method in class:ThreadMXBeanProxy.Mutex
/openjdk7/jdk/test/java/util/concurrent/locks/ReentrantReadWriteLock/
H A DCount.java129 check(! rl.hasQueuedThreads());
130 check(! rwl.hasQueuedThreads());

Completed in 319 milliseconds