Searched defs:interrupted (Results 1 - 15 of 15) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DOSThread.java54 public boolean interrupted() { method in class:OSThread
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAbstractInterruptibleChannel.java72 * exception or by returning normally. If a thread is interrupted or the
145 private volatile Thread interrupted; field in class:AbstractInterruptibleChannel
163 interrupted = target;
193 * If the thread blocked in the I/O operation was interrupted
199 Thread interrupted = this.interrupted;
200 if (interrupted != null && interrupted == Thread.currentThread()) {
201 interrupted = null;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DSession.java51 boolean interrupted = false; // Set false by JDIEventSource field in class:Session
66 * Determine if VM is interrupted, i.e, present and not running.
69 return interrupted;
H A DThreadInfo.java50 private boolean interrupted = false; field in class:ThreadInfo
53 if (!interrupted) {
86 interrupted = false;
108 interrupted = false;
117 interrupted = true;
121 interrupted = false;
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DEventPortWrapper.java185 interrupted = true;
242 private boolean interrupted; field in class:EventPortWrapper
255 boolean interrupted() { method in class:EventPortWrapper
256 return interrupted;
260 interrupted = false;
H A DEPollArrayWrapper.java261 interrupted = true;
302 private boolean interrupted = false; field in class:EPollArrayWrapper
312 boolean interrupted() { method in class:EPollArrayWrapper
313 return interrupted;
317 interrupted = false;
H A DDevPollArrayWrapper.java224 interrupted = true;
294 boolean interrupted = false; field in class:DevPollArrayWrapper
304 boolean interrupted() { method in class:DevPollArrayWrapper
305 return interrupted;
309 interrupted = false;
/openjdk7/hotspot/src/share/vm/runtime/
H A DosThread.hpp88 volatile bool interrupted() const { return _interrupted != 0; } function in class:OSThread
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DFiber.java154 private boolean interrupted; field in class:Fiber
483 if(interrupted) {
485 interrupted = false;
716 // remember that we are interrupted, but don't respond to it
719 interrupted = true;
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicatorServer.java222 /* This object controls access to the "state" and "interrupted" variables.
234 private boolean interrupted = false; field in class:CommunicatorServer
283 * @exception InterruptedException if the thread is interrupted or the
300 interrupted = false;
338 "start","interrupted", x);
367 if (!interrupted) {
368 interrupted = true;
471 "waitState", "wait interrupted");
498 * @exception InterruptedException if the thread is interrupted or the
537 // or until the thread is interrupted
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DThread.java297 * if any thread has interrupted the current thread. The
298 * <i>interrupted status</i> of the current thread is
321 * if any thread has interrupted the current thread. The
322 * <i>interrupted status</i> of the current thread is
945 * Tests whether the current thread has been interrupted. The
946 * <i>interrupted status</i> of the thread is cleared by this method. In
949 * interrupted again, after the first call had cleared its interrupted
956 * @return <code>true</code> if the current thread has been interrupted;
961 public static boolean interrupted() { method in class:Thread
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DRealTimeSequencer.java1252 /** true if playback is interrupted (in close) */
1253 boolean interrupted = false; field in class:RealTimeSequencer.PlayThread
1335 interrupted = true;
1363 while (!interrupted) {
1366 isPumping = !interrupted && running;
1367 while (!EOM && !interrupted && running) {
1380 if (interrupted) Printer.debug(" -> interrupted was set to true");
1401 while (!running && !interrupted) {
1407 } // end of while(!EOM && !interrupted
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp2613 // the program is interrupted by Ctrl-C, SIGINT is sent to every thread. We
4090 if (!osthread->interrupted()) {
4094 // to interrupted() to be visible to other threads before we execute unpark().
4115 bool interrupted = osthread->interrupted(); local
4117 if (interrupted && clear_interrupted) {
4122 return interrupted;
5634 // Treat this the same as if the wait was interrupted
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp2423 // the program is interrupted by Ctrl-C, SIGINT is sent to every thread. We
3936 if (!osthread->interrupted()) {
3940 // to interrupted() to be visible to other threads before we execute unpark().
3961 bool interrupted = osthread->interrupted(); local
3963 if (interrupted && clear_interrupted) {
3968 return interrupted;
5373 // Treat this the same as if the wait was interrupted
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3503 // to interrupted() to be visible to other threads before we post
3522 bool interrupted = osthread->interrupted(); local
3526 // if we are going to report that we were indeed interrupted - else
3529 if (interrupted && clear_interrupted) {
3532 } // Otherwise leave the interrupted state alone
3534 return interrupted;
4803 // Don't wait if interrupted or already triggered

Completed in 134 milliseconds