Home | History | Annotate | Download | only in lang

Lines Matching refs:isAlive

442         while (t.isAlive())
521 * java.lang.Thread#isAlive()
524 // Test for method boolean java.lang.Thread.isAlive()
527 assertFalse("A thread that wasn't started is alive.", st.isAlive());
535 assertTrue("Started thread returned false", st.isAlive());
541 assertTrue("Stopped thread returned true", !st.isAlive());
597 // cause isAlive() to be compiled by the JIT, as it must be called
599 assertTrue("Thread is alive", !st.isAlive());
608 assertTrue("Joined thread is still alive", !st.isAlive());
628 // cause isAlive() to be compiled by the JIT, as it must be called
630 assertTrue("Thread is alive", !st.isAlive());
639 assertTrue("Join failed to timeout", st.isAlive());
653 assertTrue("Joined thread is still alive", !st.isAlive());
693 assertTrue("Thread is alive", !st.isAlive());
705 assertTrue("Joined thread is not alive", st.isAlive());
765 assertTrue("Joined thread is still alive", !t.isAlive());
860 assertTrue("Thread is not running1", ct.isAlive());