Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/
DThreadGroup.java685 public final void suspend() { in suspend() method in ThreadGroup
687 Thread.currentThread().suspend(); in suspend()
698 private boolean stopOrSuspend(boolean suspend) { in stopOrSuspend() argument
708 else if (suspend) in stopOrSuspend()
709 threads[i].suspend(); in stopOrSuspend()
720 suicide = groupsSnapshot[i].stopOrSuspend(suspend) || suicide; in stopOrSuspend()
DThread.java1027 public final void suspend() { in suspend() method in Thread
/libcore/luni/src/test/java/libcore/java/lang/
DOldThreadTest.java453 thread.suspend(); in test_suspend()