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

/libcore/libdvm/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.java636 * Posts an interrupt request to this {@code Thread}. The behavior depends on
642 * be woken up, their interrupt status will be cleared, and they receive an
646 * {@link java.nio.channels.InterruptibleChannel} will have their interrupt
652 * their interrupt status set and return immediately. They don't receive an
659 public void interrupt() { method in class:Thread
661 // threads that observe the interrupt as a result of an action
665 vmt.interrupt();
677 * <code>currentThread()</code>) has a pending interrupt request (<code>
681 * @return a <code>boolean</code> indicating the interrupt status
683 * @see Thread#interrupt
[all...]
/libcore/libart/src/main/java/java/lang/
H A DDaemons.java81 public synchronized void interrupt() { method in class:Daemons.Daemon
85 thread.interrupt();
101 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.java626 * Posts an interrupt request to this {@code Thread}. The behavior depends on
632 * be woken up, their interrupt status will be cleared, and they receive an
636 * {@link java.nio.channels.InterruptibleChannel} will have their interrupt
642 * their interrupt status set and return immediately. They don't receive an
649 public void interrupt() { method in class:Thread
651 // threads that observe the interrupt as a result of an action
666 * <code>currentThread()</code>) has a pending interrupt request (<code>
670 * @return a <code>boolean</code> indicating the interrupt status
672 * @see Thread#interrupt
702 * pending interrupt reques
[all...]

Completed in 465 milliseconds