Searched refs:isInterrupted (Results 1 - 25 of 31) sorted by relevance

12

/openjdk7/hotspot/test/compiler/6772683/
H A DInterruptedTest.java28 * @summary Thread.isInterrupted() fails to return true on multiprocessor PC
38 while (!Thread.currentThread().isInterrupted()) {
51 if (workerThread.isInterrupted()) {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DResource.java96 boolean isInterrupted = Thread.interrupted();
104 isInterrupted = true;
127 isInterrupted = true;
145 isInterrupted = true;
148 if (isInterrupted) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DClientCommunicatorAdmin.java172 while (state != TERMINATED && !myThread.isInterrupted()) {
180 if (state == TERMINATED || myThread.isInterrupted()) {
188 if (state == TERMINATED || myThread.isInterrupted()) {
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DSession.java68 public boolean isInterrupted() { method in class:Session
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java235 if (isInterrupted()) {
241 if (isInterrupted()) {
261 if (isInterrupted()) {
298 if (isInterrupted()) {
316 if (isInterrupted()) {
323 if (isInterrupted()) {
/openjdk7/jdk/src/share/classes/java/nio/channels/spi/
H A DAbstractInterruptibleChannel.java172 if (me.isInterrupted())
H A DAbstractSelector.java215 if (me.isInterrupted())
/openjdk7/jdk/test/com/sun/jndi/ldap/
H A DNoWaitForReplyTest.java114 while (!isInterrupted()) {
/openjdk7/jdk/test/javax/swing/JFileChooser/6741890/
H A Dbug6741890.java67 while (!isInterrupted()) {
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExchanger.java502 else if (w.isInterrupted()) // Abort on interrupt
537 else if (w.isInterrupted())
542 else if (tryCancel(node, slot) && !w.isInterrupted())
H A DThreadPoolExecutor.java648 if (getState() >= 0 && (t = thread) != null && !t.isInterrupted()) {
785 if (!t.isInterrupted() && w.tryLock()) {
1139 !wt.isInterrupted())
H A DSynchronousQueue.java439 if (w.isInterrupted())
744 if (w.isInterrupted())
H A DLinkedTransferQueue.java710 if ((w.isInterrupted() || (timed && nanos <= 0)) &&
/openjdk7/jdk/src/share/classes/java/lang/
H A DThread.java958 * @see #isInterrupted()
962 return currentThread().isInterrupted(true);
978 public boolean isInterrupted() { method in class:Thread
979 return isInterrupted(false);
987 private native boolean isInterrupted(boolean ClearInterrupted); method in class:Thread
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DWakeup.java73 boolean intr = Thread.currentThread().isInterrupted();
/openjdk7/jdk/src/share/classes/java/awt/
H A DEventDispatchThread.java101 !doDispatch || isInterrupted()))
160 while (doDispatch && !isInterrupted() && cond.evaluate()) {
/openjdk7/jdk/test/javax/swing/JFileChooser/6798062/
H A Dbug6798062.java179 while (!isInterrupted()) {
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DInputStreamImageSource.java278 if ( Thread.currentThread().isInterrupted() || !Thread.currentThread().isAlive()) {
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DConfigChanges.java110 check(! Thread.currentThread().isInterrupted());
H A DThrowingTasks.java80 check(! Thread.currentThread().isInterrupted());
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDOMParserImpl.java930 if (abortNow && currentThread.isInterrupted()) {
937 if (abortNow && currentThread.isInterrupted()) {
987 if (abortNow && currentThread.isInterrupted()) {
994 if (abortNow && currentThread.isInterrupted()) {
/openjdk7/jdk/src/share/classes/javax/swing/filechooser/
H A DFileSystemView.java481 if (Thread.currentThread().isInterrupted()) {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileSystemModel.java412 if (isInterrupted()) {
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWToolkit.java168 if (Thread.currentThread().isInterrupted()) {
/openjdk7/jdk/src/windows/classes/sun/awt/shell/
H A DWin32ShellFolder2.java718 } while (childPIDL != 0 && !Thread.currentThread().isInterrupted());
723 return Thread.currentThread().isInterrupted()

Completed in 69 milliseconds

12