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

/libcore/libart/src/main/java/java/lang/
H A DDaemons.java87 public synchronized void interrupt() { method in class:Daemons.Daemon
88 interrupt(thread);
91 public synchronized void interrupt(Thread thread) { method in class:Daemons.Daemon
95 thread.interrupt();
111 interrupt(threadToStop);
340 public synchronized void interrupt(Thread thread) { method in class:Daemons.HeapTaskDaemon
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 1171 milliseconds