HomeSort by relevance Sort by last modified time
    Searched defs:isHeldExclusively (Results 1 - 25 of 37) sorted by null

1 2

  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 162 protected final boolean isHeldExclusively() {
179 return isHeldExclusively() ? getState() : 0;
579 return sync.isHeldExclusively();
ReentrantReadWriteLock.java 372 if (!isHeldExclusively())
607 protected final boolean isHeldExclusively() {
635 return isHeldExclusively() ? exclusiveCount(getState()) : 0;
    [all...]
AbstractQueuedLongSynchronizer.java 739 protected boolean isHeldExclusively() {
    [all...]
AbstractQueuedSynchronizer.java 83 * #isHeldExclusively} reports whether synchronization is exclusively
117 * <li>{@link #isHeldExclusively}
204 * protected boolean isHeldExclusively() {
245 * public boolean isLocked() { return sync.isHeldExclusively(); }
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
AbstractQueuedLongSynchronizerTest.java 45 public boolean isHeldExclusively() {
274 * isHeldExclusively is false upon construction
278 assertFalse(sync.isHeldExclusively());
287 assertTrue(sync.isHeldExclusively());
289 assertFalse(sync.isHeldExclusively());
298 assertTrue(sync.isHeldExclusively());
300 assertFalse(sync.isHeldExclusively());
565 assertTrue(sync.isHeldExclusively());
567 assertFalse(sync.isHeldExclusively());
580 assertTrue(sync.isHeldExclusively());
    [all...]
AbstractQueuedSynchronizerTest.java 48 @Override public boolean isHeldExclusively() {
277 * isHeldExclusively is false upon construction
281 assertFalse(sync.isHeldExclusively());
290 assertTrue(sync.isHeldExclusively());
292 assertFalse(sync.isHeldExclusively());
301 assertTrue(sync.isHeldExclusively());
303 assertFalse(sync.isHeldExclusively());
568 assertTrue(sync.isHeldExclusively());
570 assertFalse(sync.isHeldExclusively());
583 assertTrue(sync.isHeldExclusively());
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 649 protected boolean isHeldExclusively() {
670 public boolean isLocked() { return isHeldExclusively(); }
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
android-all-7.0.0_r1-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 

Completed in 137 milliseconds

1 2