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

/libcore/ojluni/src/main/java/sun/nio/ch/
H A DInterruptible.java34 public void interrupt(Thread t); method in interface:Interruptible
H A DPollArrayWrapper.java48 // File descriptor to write for interrupt
121 public void interrupt() { method in class:PollArrayWrapper
122 interrupt(interruptFD);
127 private static native void interrupt(int fd); method in class:PollArrayWrapper
H A DEPollArrayWrapper.java93 // The fd of the interrupt line going out
96 // The fd of the interrupt line coming in
99 // The index of the interrupt FD
301 // interrupt support
304 public void interrupt() { method in class:EPollArrayWrapper
305 interrupt(outgoingInterruptFD);
326 private static native void interrupt(int fd); method in class:EPollArrayWrapper
H A DDevPollArrayWrapper.java95 // The fd of the interrupt line going out
98 // The fd of the interrupt line coming in
101 // The index of the interrupt FD
296 public void interrupt() { method in class:DevPollArrayWrapper
297 interrupt(outgoingInterruptFD);
318 private static native void interrupt(int fd); method in class:DevPollArrayWrapper
/libcore/libart/src/main/java/java/lang/
H A DDaemons.java88 public synchronized void interrupt() { method in class:Daemons.Daemon
89 interrupt(thread);
92 public synchronized void interrupt(Thread thread) { method in class:Daemons.Daemon
96 thread.interrupt();
112 interrupt(threadToStop);
418 public synchronized void interrupt(Thread thread) { method in class:Daemons.HeapTaskDaemon
/libcore/ojluni/src/main/java/java/lang/
H A DThreadGroup.java633 * This method then calls the <code>interrupt</code> method on all the
639 * @see java.lang.Thread#interrupt()
644 public final void interrupt() { method in class:ThreadGroup
650 threads[i].interrupt();
660 groupsSnapshot[i].interrupt();
H A DThread.java238 * operation, if any. The blocker's interrupt method should be invoked
239 * after setting this thread's interrupt status.
823 * @see #interrupt()
844 * for example), the <code>interrupt</code> method should be used to
845 * interrupt the wait.
887 * @see #interrupt()
922 * methods of this class, then its interrupt status will be cleared and it
927 * channel<code>} then the channel will be closed, the thread's interrupt
932 * then the thread's interrupt status will be set and it will return
937 * <p> If none of the previous conditions hold then this thread's interrupt
948 public void interrupt() { method in class:Thread
[all...]

Completed in 1032 milliseconds