Searched defs:checkThreadState (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DUtils.java54 public static void checkThreadState(Thread t, Thread.State expected) { method in class:Utils
H A DSynchronizationStatistics.java93 checkThreadState(examiner, Thread.State.WAITING);
125 private static void checkThreadState(Thread thread, Thread.State s) method in class:SynchronizationStatistics
142 private static void checkThreadState(Thread thread, method in class:SynchronizationStatistics
/openjdk7/jdk/test/java/lang/Thread/
H A DThreadStateTest.java55 checkThreadState(myThread, Thread.State.NEW);
59 checkThreadState(myThread, Thread.State.RUNNABLE);
63 checkThreadState(myThread, Thread.State.BLOCKED);
67 checkThreadState(myThread, Thread.State.WAITING);
70 checkThreadState(myThread, Thread.State.TIMED_WAITING);
80 checkThreadState(myThread, Thread.State.WAITING);
83 checkThreadState(myThread, Thread.State.TIMED_WAITING);
88 checkThreadState(myThread, Thread.State.TIMED_WAITING);
91 checkThreadState(myThread, Thread.State.TERMINATED);
106 private static void checkThreadState(Threa method in class:ThreadStateTest
[all...]

Completed in 70 milliseconds