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

1 2

  /libcore/ojluni/src/main/java/java/lang/
IllegalMonitorStateException.java 42 class IllegalMonitorStateException extends RuntimeException {
46 * Constructs an <code>IllegalMonitorStateException</code> with no
49 public IllegalMonitorStateException() {
54 * Constructs an <code>IllegalMonitorStateException</code> with the
59 public IllegalMonitorStateException(String s) {
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 126 throw new IllegalMonitorStateException();
428 * lock then {@link IllegalMonitorStateException} is thrown.
430 * @throws IllegalMonitorStateException if the current thread does not
452 * IllegalMonitorStateException} is thrown.
663 * @throws IllegalMonitorStateException if this lock is not held
686 * @throws IllegalMonitorStateException if this lock is not held
711 * @throws IllegalMonitorStateException if this lock is not held
ReentrantReadWriteLock.java 344 throw new IllegalMonitorStateException();
416 private IllegalMonitorStateException unmatchedUnlockException() {
417 return new IllegalMonitorStateException(
    [all...]
AbstractQueuedLongSynchronizer.java 598 * @throws IllegalMonitorStateException if acquiring would place this
624 * @throws IllegalMonitorStateException if releasing would place this
660 * @throws IllegalMonitorStateException if acquiring would place this
685 * @throws IllegalMonitorStateException if releasing would place this
    [all...]
AbstractQueuedSynchronizer.java 193 * if (getState() == 0) throw new IllegalMonitorStateException();
    [all...]
StampedLock.java 505 * @throws IllegalMonitorStateException if the stamp does
511 throw new IllegalMonitorStateException();
522 * @throws IllegalMonitorStateException if the stamp does
530 throw new IllegalMonitorStateException();
548 * @throws IllegalMonitorStateException if the stamp does
576 throw new IllegalMonitorStateException();
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Monitor.java 286 * associated with, an {@link IllegalMonitorStateException} is thrown.
421 throw new IllegalMonitorStateException();
445 throw new IllegalMonitorStateException();
474 throw new IllegalMonitorStateException();
515 throw new IllegalMonitorStateException();
569 throw new IllegalMonitorStateException();
592 throw new IllegalMonitorStateException();
615 throw new IllegalMonitorStateException();
640 throw new IllegalMonitorStateException();
667 throw new IllegalMonitorStateException();
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
AbstractQueuedLongSynchronizerTest.java 57 if (getState() != LOCKED) throw new IllegalMonitorStateException();
618 * Calling await without holding sync throws IllegalMonitorStateException
628 } catch (IllegalMonitorStateException success) {
635 * Calling signal without holding sync throws IllegalMonitorStateException
643 } catch (IllegalMonitorStateException success) {}
648 * Calling signalAll without holding sync throws IllegalMonitorStateException
656 } catch (IllegalMonitorStateException success) {}
751 * hasWaiters throws IllegalMonitorStateException if not synced
759 } catch (IllegalMonitorStateException success) {}
778 * getWaitQueueLength throws IllegalMonitorStateException if not synce
    [all...]
AbstractQueuedSynchronizerTest.java 60 if (getState() != LOCKED) throw new IllegalMonitorStateException();
621 * Calling await without holding sync throws IllegalMonitorStateException
631 } catch (IllegalMonitorStateException success) {
638 * Calling signal without holding sync throws IllegalMonitorStateException
646 } catch (IllegalMonitorStateException success) {}
651 * Calling signalAll without holding sync throws IllegalMonitorStateException
659 } catch (IllegalMonitorStateException success) {}
754 * hasWaiters throws IllegalMonitorStateException if not synced
762 } catch (IllegalMonitorStateException success) {}
781 * getWaitQueueLength throws IllegalMonitorStateException if not synce
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 
  /prebuilts/tools/common/api-versions/android-1/
android.jar 

Completed in 2033 milliseconds

1 2