HomeSort by relevance Sort by last modified time
    Searched refs:isHeldExclusively (Results 1 - 8 of 8) sorted by null

  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 136 protected final boolean isHeldExclusively() {
153 return isHeldExclusively() ? getState() : 0;
554 return sync.isHeldExclusively();
ReentrantReadWriteLock.java 343 if (!isHeldExclusively())
578 protected final boolean isHeldExclusively() {
606 return isHeldExclusively() ? exclusiveCount(getState()) : 0;
    [all...]
AbstractQueuedSynchronizer.java 53 * #isHeldExclusively} reports whether synchronization is exclusively
87 * <li> {@link #isHeldExclusively}
164 * protected boolean isHeldExclusively() {
200 * public boolean isLocked() { return sync.isHeldExclusively(); }
    [all...]
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
AbstractQueuedSynchronizerTest.java 34 public boolean isHeldExclusively() { return getState() == 1; }
98 * isHeldExclusively is false upon construction
102 assertFalse(rl.isHeldExclusively());
111 assertTrue(rl.isHeldExclusively());
113 assertFalse(rl.isHeldExclusively());
122 assertTrue(rl.isHeldExclusively());
429 assertTrue(sync.isHeldExclusively());
431 assertFalse(sync.isHeldExclusively());
447 assertTrue(sync.isHeldExclusively());
449 assertFalse(sync.isHeldExclusively());
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 569 protected boolean isHeldExclusively() {
590 public boolean isLocked() { return isHeldExclusively(); }
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 130 milliseconds