Searched refs:suspend (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DThreadGroup.java670 * This method then calls the <code>suspend</code> method on all the
676 * @see java.lang.Thread#suspend()
681 * {@link Thread#suspend} for details.
684 public final void suspend() { method in class:ThreadGroup
686 Thread.currentThread().suspend();
696 private boolean stopOrSuspend(boolean suspend) { argument
706 else if (suspend)
707 threads[i].suspend();
718 suicide = groupsSnapshot[i].stopOrSuspend(suspend) || suicide;
740 * <tt>Thread.suspend</t
[all...]
H A DThread.java848 * are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
902 * are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
1004 * much the manner of {@link #suspend}. If the target thread held
1011 * Why are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
1054 * are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
1057 public final void suspend() { method in class:Thread
1074 * @see #suspend()
1075 * @deprecated This method exists solely for use with {@link #suspend},
1079 * are Thread.stop, Thread.suspend and Thread.resume Deprecated?</a>.
1249 * @deprecated The definition of this call depends on {@link #suspend},
[all...]
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldThreadTest.java453 thread.suspend();

Completed in 121 milliseconds