HomeSort by relevance Sort by last modified time
    Searched refs:IllegalMonitorStateException (Results 1 - 25 of 44) 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/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
IllegalMonitorStateExceptionTest.java 25 * java.lang.IllegalMonitorStateException#IllegalMonitorStateException()
28 IllegalMonitorStateException e = new IllegalMonitorStateException();
35 * java.lang.IllegalMonitorStateException#IllegalMonitorStateException(java.lang.String)
38 IllegalMonitorStateException e = new IllegalMonitorStateException("fixture");
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/opc_return/
Test_opc_return.java 38 IllegalMonitorStateException.class);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/return_void/
Test_return_void.java 38 IllegalMonitorStateException.class);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/return_wide/
Test_return_wide.java 38 IllegalMonitorStateException.class);
  /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/luni/src/test/java/libcore/java/lang/
OldObjectTest.java 91 fail("IllegalMonitorStateException was not thrown.");
92 } catch(IllegalMonitorStateException imse) {
101 fail("IllegalMonitorStateException was not thrown.");
102 } catch(IllegalMonitorStateException imse) {
112 fail("IllegalMonitorStateException was not thrown.");
113 } catch(IllegalMonitorStateException imse) {
178 fail("IllegalMonitorStateException was not thrown.");
179 } catch(IllegalMonitorStateException imse) {
234 fail("IllegalMonitorStateException was not thrown.");
235 } catch(IllegalMonitorStateException imse)
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_exit/
Test_monitor_exit.java 41 fail("expected IllegalMonitorStateException");
110 } catch (IllegalMonitorStateException imse) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/opc_throw/
Test_opc_throw.java 86 * @title expected IllegalMonitorStateException
90 IllegalMonitorStateException.class);
  /art/test/088-monitor-verification/src/
Main.java 219 IllegalMonitorStateException.class);
221 IllegalMonitorStateException.class);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/return_object/
Test_return_object.java 92 IllegalMonitorStateException.class);
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantReadWriteLock.java 344 throw new IllegalMonitorStateException();
416 private IllegalMonitorStateException unmatchedUnlockException() {
417 return new IllegalMonitorStateException(
    [all...]
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
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...]
  /libcore/jsr166-tests/src/test/java/jsr166/
StampedLockTest.java 159 * write-unlocking an unlocked lock throws IllegalMonitorStateException
166 } catch (IllegalMonitorStateException success) {}
170 * write-unlocking an unlocked lock throws IllegalMonitorStateException
179 } catch (IllegalMonitorStateException success) {}
183 * write-unlocking after readlock throws IllegalMonitorStateException
191 } catch (IllegalMonitorStateException success) {}
195 * read-unlocking an unlocked lock throws IllegalMonitorStateException
204 } catch (IllegalMonitorStateException success) {}
208 * read-unlocking an unlocked lock throws IllegalMonitorStateException
215 } catch (IllegalMonitorStateException success) {
    [all...]
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...]
ReentrantLockTest.java 212 * Unlocking an unlocked lock throws IllegalMonitorStateException
221 } catch (IllegalMonitorStateException success) {}
493 * Calling await without holding lock throws IllegalMonitorStateException
505 } catch (IllegalMonitorStateException success) {
512 * Calling signal without holding lock throws IllegalMonitorStateException
522 } catch (IllegalMonitorStateException success) {}
664 * hasWaiters throws IllegalMonitorStateException if not locked
674 } catch (IllegalMonitorStateException success) {}
693 * getWaitQueueLength throws IllegalMonitorStateException if not locked
703 } catch (IllegalMonitorStateException success) {
    [all...]
ReentrantReadWriteLockTest.java 285 * write-unlocking an unlocked lock throws IllegalMonitorStateException
294 } catch (IllegalMonitorStateException success) {}
298 * read-unlocking an unlocked lock throws IllegalMonitorStateException
307 } catch (IllegalMonitorStateException success) {}
    [all...]
TimeUnitTest.java 316 * IllegalMonitorStateException
327 } catch (IllegalMonitorStateException success) {}
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
MonitorTestCase.java 219 thread1.callAndAssertThrows(IllegalMonitorStateException.class, waitFor(), guard);
223 monitor.enter(); // Inhibit IllegalMonitorStateException
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 132 class IllegalMonitorStateException;
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java     [all...]

Completed in 1179 milliseconds

1 2