Searched defs:isHeldExclusively (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DThreadMXBeanProxy.java183 protected boolean isHeldExclusively() { method in class:ThreadMXBeanProxy.Mutex.Sync
228 public boolean isLocked() { return sync.isHeldExclusively(); }
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DMyOwnSynchronizer.java101 protected boolean isHeldExclusively() { method in class:MyOwnSynchronizer.Mutex.Sync
142 public boolean isLocked() { return sync.isHeldExclusively(); }
/openjdk7/jdk/test/java/util/concurrent/locks/Lock/
H A DFlakyMutex.java95 public boolean isHeldExclusively() { return getState() == 1; } method in class:FlakyMutex.FlakySync
132 public boolean isLocked() { return sync.isHeldExclusively(); }
/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DReentrantLock.java165 protected final boolean isHeldExclusively() { method in class:ReentrantLock.Sync
182 return isHeldExclusively() ? getState() : 0;
584 return sync.isHeldExclusively();
H A DReentrantReadWriteLock.java373 if (!isHeldExclusively())
608 protected final boolean isHeldExclusively() { method in class:ReentrantReadWriteLock.Sync
636 return isHeldExclusively() ? exclusiveCount(getState()) : 0;
1206 return sync.isHeldExclusively();
1281 return sync.isHeldExclusively();
H A DAbstractQueuedLongSynchronizer.java957 protected boolean isHeldExclusively() { method in class:AbstractQueuedLongSynchronizer
1273 * if (isHeldExclusively()) {
1715 * @throws IllegalMonitorStateException if {@link #isHeldExclusively}
1719 if (!isHeldExclusively())
1730 * @throws IllegalMonitorStateException if {@link #isHeldExclusively}
1734 if (!isHeldExclusively())
1988 * @throws IllegalMonitorStateException if {@link #isHeldExclusively}
1992 if (!isHeldExclusively())
2007 * @throws IllegalMonitorStateException if {@link #isHeldExclusively}
2011 if (!isHeldExclusively())
[all...]
H A DAbstractQueuedSynchronizer.java82 * #isHeldExclusively} reports whether synchronization is exclusively
116 * <li> {@link #isHeldExclusively}
203 * protected boolean isHeldExclusively() {
244 * public boolean isLocked() { return sync.isHeldExclusively(); }
1180 protected boolean isHeldExclusively() { method in class:AbstractQueuedSynchronizer
1496 * if (isHeldExclusively()) {
1936 * @throws IllegalMonitorStateException if {@link #isHeldExclusively}
1940 if (!isHeldExclusively())
1951 * @throws IllegalMonitorStateException if {@link #isHeldExclusively}
1955 if (!isHeldExclusively())
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadPoolExecutor.java623 protected boolean isHeldExclusively() { method in class:ThreadPoolExecutor.Worker
644 public boolean isLocked() { return isHeldExclusively(); }

Completed in 54 milliseconds