Searched refs:interrupt (Results 176 - 191 of 191) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/java/util/concurrent/locks/
H A DAbstractQueuedSynchronizer.java407 * CANCELLED: This node is cancelled due to timeout or interrupt.
822 * Convenience method to interrupt current thread.
825 Thread.currentThread().interrupt();
1204 * Implemented by first checking interrupt status, then invoking
1227 * checking interrupt status, then invoking at least once {@link
1287 * by first checking interrupt status, then invoking at least once
1309 * checking interrupt status, then invoking at least once {@link
2000 * Checks for interrupt, returning THROW_IE if interrupted
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLSocketImpl.java796 Thread.currentThread().interrupt();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileChannelImpl.java486 // target closed by interrupt as ClosedByInterruptException needs
882 Thread.currentThread().interrupt();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDOMParserImpl.java931 //reset interrupt state
946 // issued an interrupt or an abort.
988 //reset interrupt state
1003 // issued an interrupt or an abort.
1138 currentThread.interrupt();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParser.java2043 curThread.interrupt(); // resignal the interrupt
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DCommandInterpreter.java450 // Command: interrupt
453 runtime.interrupt();
1384 } else if (cmd.equals("interrupt")) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.hpp328 static void interrupt(Thread* thr);
718 delay_interval = 10 // interrupt delay in milliseconds
H A Dthread.cpp789 void Thread::interrupt(Thread* thread) { function in class:Thread
790 trace("interrupt", thread);
792 os::interrupt(thread);
2205 Thread::interrupt(this);
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectStreamClass.java435 Thread.currentThread().interrupt();
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java1312 interrupted(); // clear interrupt bit
1341 interrupt();
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp934 Thread::interrupt(java_thread);
H A Djvm.cpp3037 // the hold-time. A cleaner interface would be to decompose interrupt into
3053 Thread::interrupt(thr);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp3597 // Poll() is likely a better choice, assuming that Thread.interrupt()
4082 // interrupt support
4084 void os::interrupt(Thread* thread) { function in class:os
4100 // For JSR166. Unpark even if interrupt status already was set
5675 // (c) thread.interrupt
5677 // Thread.interrupt and object.notify{All} both call Event::set.
5678 // That is, we treat thread.interrupt as a special case of notification.
5684 // TODO: properly differentiate simultaneous notify+interrupt.
5844 // Optional optimization -- avoid state transitions if there's an interrupt pending.
5845 // Check interrupt befor
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp3518 // Poll() is likely a better choice, assuming that Thread.interrupt()
3928 // interrupt support
3930 void os::interrupt(Thread* thread) { function in class:os
3946 // For JSR166. Unpark even if interrupt status already was set
5414 // (c) thread.interrupt
5416 // Thread.interrupt and object.notify{All} both call Event::set.
5417 // That is, we treat thread.interrupt as a special case of notification.
5423 // TODO: properly differentiate simultaneous notify+interrupt.
5583 // Optional optimization -- avoid state transitions if there's an interrupt pending.
5584 // Check interrupt befor
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3495 void os::interrupt(Thread* thread) { function in class:os
3504 // the interrupt event.
3523 // There is no synchronization between the setting of the interrupt
3525 // we only clear the interrupt state, and reset the interrupt event,
3527 // an interrupt can be "lost", leading to spurious wakeups or lost wakeups
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp391 // its former state whether or not an interrupt is received.
4380 void os::interrupt(Thread* thread) { function in class:os
4427 // "false" but that the interrupt event will be set. This is
4637 vm_exit_during_initialization("Signal chaining detected for VM interrupt signal, try -XX:+UseAltSigs");
4756 vm_exit_during_initialization("Signal chaining not allowed for VM interrupt signal, try -XX:+UseAltSigs.");
6495 // Optional fast-exit: Check interrupt before trying to wait
6523 // unblocking. Also. check interrupt before trying wait

Completed in 194 milliseconds

12345678