Searched defs:interrupt (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DVMThread.java34 native void interrupt(); method in class:VMThread
H A DDaemons.java78 public synchronized void interrupt() { method in class:Daemons.Daemon
82 thread.interrupt();
98 threadToStop.interrupt();
H A DThreadGroup.java410 * @see Thread#interrupt
412 public final void interrupt() { method in class:ThreadGroup
415 thread.interrupt();
420 group.interrupt();
H A DThread.java648 * Posts an interrupt request to this {@code Thread}. The behavior depends on
654 * be woken up, their interrupt status will be cleared, and they receive an
658 * {@link java.nio.channels.InterruptibleChannel} will have their interrupt
664 * their interrupt status set and return immediately. They don't receive an
671 public void interrupt() { method in class:Thread
680 vmt.interrupt();
686 * <code>currentThread()</code>) has a pending interrupt request (<code>
690 * @return a <code>boolean</code> indicating the interrupt status
692 * @see Thread#interrupt
728 * pending interrupt reques
[all...]

Completed in 448 milliseconds