HomeSort by relevance Sort by last modified time
    Searched refs:INTERRUPTED (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 86 * InterruptedException} if the current thread is interrupted before or during
89 * @throws InterruptedException if the current thread was interrupted before
107 * InterruptedException} if the current thread is interrupted before or during
110 * @throws InterruptedException if the current thread was interrupted before
213 * {@link #COMPLETED}, {@link #CANCELLED}, or {@link #INTERRUPTED}
219 * INTERRUPTED.
233 static final int INTERRUPTED = 8;
305 case INTERRUPTED:
317 * INTERRUPTED}.
320 return (getState() & (COMPLETED | CANCELLED | INTERRUPTED)) != 0
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileDispatcher.java 37 public static final int INTERRUPTED = 2; // Request interrupted
IOStatus.java 38 @Native public static final int INTERRUPTED = -3; // System call interrupted
SimpleAsynchronousFileChannelImpl.java 114 } while ((n == IOStatus.INTERRUPTED) && isOpen());
137 } while ((n == IOStatus.INTERRUPTED) && isOpen());
143 } while ((n == IOStatus.INTERRUPTED) && isOpen());
163 } while ((n == IOStatus.INTERRUPTED) && isOpen());
207 } while ((n == FileDispatcher.INTERRUPTED) && isOpen());
263 } while ((n == FileDispatcher.INTERRUPTED) && isOpen());
270 if (n == FileDispatcher.INTERRUPTED)
321 } while ((n == IOStatus.INTERRUPTED) && isOpen());
375 } while ((n == IOStatus.INTERRUPTED) && isOpen());
FileChannelImpl.java 195 } while ((n == IOStatus.INTERRUPTED) && isOpen());
223 } while ((n == IOStatus.INTERRUPTED) && isOpen());
247 } while ((n == IOStatus.INTERRUPTED) && isOpen());
275 } while ((n == IOStatus.INTERRUPTED) && isOpen());
303 } while ((p == IOStatus.INTERRUPTED) && isOpen());
328 } while ((p == IOStatus.INTERRUPTED) && isOpen());
350 } while ((s == IOStatus.INTERRUPTED) && isOpen());
380 } while ((size == IOStatus.INTERRUPTED) && isOpen());
387 } while ((p == IOStatus.INTERRUPTED) && isOpen());
396 } while ((rv == IOStatus.INTERRUPTED) && isOpen())
    [all...]
SinkChannelImpl.java 168 } while ((n == IOStatus.INTERRUPTED) && isOpen());
191 } while ((n == IOStatus.INTERRUPTED) && isOpen());
SocketChannelImpl.java 353 // Either the current thread is already interrupted, so
372 // or this thread might be interrupted. We rely upon the
395 // with IOStatus.INTERRUPTED.
422 if ((n == IOStatus.INTERRUPTED) && isOpen()) {
423 // The system call was interrupted but the channel
445 // interrupted at the exact moment that a non-blocking I/O
482 if ((n == IOStatus.INTERRUPTED) && isOpen())
513 if ((n == IOStatus.INTERRUPTED) && isOpen())
546 if ((n == IOStatus.INTERRUPTED) && isOpen())
576 if ((n == IOStatus.INTERRUPTED) && isOpen()
    [all...]
SourceChannelImpl.java 172 } while ((n == IOStatus.INTERRUPTED) && isOpen());
203 } while ((n == IOStatus.INTERRUPTED) && isOpen());
DatagramChannelImpl.java 394 } while ((n == IOStatus.INTERRUPTED) && isOpen());
402 } while ((n == IOStatus.INTERRUPTED) && isOpen());
515 } while ((n == IOStatus.INTERRUPTED) && isOpen());
602 } while ((n == IOStatus.INTERRUPTED) && isOpen());
631 } while ((n == IOStatus.INTERRUPTED) && isOpen());
658 } while ((n == IOStatus.INTERRUPTED) && isOpen());
687 } while ((n == IOStatus.INTERRUPTED) && isOpen());
    [all...]
ServerSocketChannelImpl.java 251 if ((n == IOStatus.INTERRUPTED) && isOpen())
430 // connections are pending) or IOStatus.INTERRUPTED.
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/reporting/
GnssTestDetails.java 37 INTERRUPTED
79 resultCode = ResultCode.INTERRUPTED;
80 // the interrupted status must be restored, so other routines can consume it
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/reporting/
SensorTestDetails.java 39 INTERRUPTED
81 resultCode = ResultCode.INTERRUPTED;
82 // the interrupted status must be restored, so other routines can consume it
  /external/python/cpython3/Lib/test/libregrtest/
runtest_mp.py 17 runtest, INTERRUPTED, CHILD_ERROR, PROGRESS_MIN_TIME,
25 # If interrupted, display the wait progress every N seconds
73 result = INTERRUPTED, ''
89 self.interrupted = False
98 if self.interrupted:
99 raise StopIteration('tests interrupted')
202 if (ok not in (CHILD_ERROR, INTERRUPTED)
217 if result[0] == INTERRUPTED:
224 regrtest.interrupted = True
225 pending.interrupted = Tru
    [all...]
runtest.py 20 INTERRUPTED = -4
29 INTERRUPTED: '%s interrupted',
83 INTERRUPTED KeyboardInterrupt when run under -j
main.py 17 INTERRUPTED, CHILD_ERROR,
84 self.interrupted = False
106 if ok not in (CHILD_ERROR, INTERRUPTED):
257 self.interrupted = True
270 if self.interrupted:
273 print("Test suite interrupted by signal SIGINT.")
287 and not self.interrupted
345 self.interrupted = True
346 self.accumulate_result(test, (INTERRUPTED, None))
439 elif self.interrupted
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsVerifierTestActivity.java 112 case INTERRUPTED:
BaseSensorTestActivity.java 226 * NOTE: implementers must be aware of the interrupted status of the worker thread, and let
237 * NOTE: implementers must be aware of the interrupted status of the worker thread, and handle
240 * - if it is invoked with the interrupted status, prevent from showing any UI
467 case INTERRUPTED:
497 // clean-up executes for all states, even on SKIPPED and INTERRUPTED there might be some
516 } else if (resultCode != SensorTestDetails.ResultCode.INTERRUPTED) {
604 case INTERRUPTED:
605 // do nothing, the test was interrupted so do we
  /libcore/ojluni/src/main/java/java/util/concurrent/
FutureTask.java 91 * NEW -> INTERRUPTING -> INTERRUPTED
100 private static final int INTERRUPTED = 6;
177 U.putOrderedInt(this, STATE, INTERRUPTED);
337 // assert state == INTERRUPTED;
345 // Thread.interrupted();
418 else if (Thread.interrupted()) {
455 * Tries to unlink a timed-out or interrupted wait node to avoid
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
StampedLock.java 297 private static final long INTERRUPTED = 1L;
368 * given time and the current thread has not been interrupted.
376 * @throws InterruptedException if the current thread is interrupted
382 if (!Thread.interrupted()) {
390 if ((next = acquireWrite(true, deadline)) != INTERRUPTED)
398 * until available or the current thread is interrupted.
403 * @throws InterruptedException if the current thread is interrupted
408 if (!Thread.interrupted() &&
409 (next = acquireWrite(true, 0L)) != INTERRUPTED)
449 * given time and the current thread has not been interrupted
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
BaseGnssTestActivity.java 195 * NOTE: implementers must be aware of the interrupted status of the worker thread, and let
206 * NOTE: implementers must be aware of the interrupted status of the worker thread, and handle
209 * - if it is invoked with the interrupted status, prevent from showing any UI
349 case INTERRUPTED:
379 // clean-up executes for all states, even on SKIPPED and INTERRUPTED there might be some
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
regrtest.py 211 INTERRUPTED = -4
355 result = INTERRUPTED, e.__class__.__name__
375 interrupted = False
543 if result[0] == INTERRUPTED:
548 interrupted = True
570 interrupted = True
588 if interrupted:
591 print "Test suite interrupted by signal SIGINT."
596 if not bad and not skipped and not interrupted and len(good) > 1:
660 sys.exit(len(bad) > 0 or interrupted)
    [all...]
  /external/python/cpython2/Lib/test/
regrtest.py 222 INTERRUPTED = -4
366 result = INTERRUPTED, e.__class__.__name__
388 interrupted = False
565 if result[0] == INTERRUPTED:
576 interrupted = True
601 interrupted = True
619 if interrupted and not pgo:
622 print "Test suite interrupted by signal SIGINT."
627 if not bad and not skipped and not interrupted and len(good) > 1:
694 sys.exit(len(bad) > 0 or interrupted)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
regrtest.py 212 INTERRUPTED = -4
356 result = INTERRUPTED, e.__class__.__name__
376 interrupted = False
546 if result[0] == INTERRUPTED:
551 interrupted = True
573 interrupted = True
591 if interrupted:
594 print "Test suite interrupted by signal SIGINT."
599 if not bad and not skipped and not interrupted and len(good) > 1:
663 sys.exit(len(bad) > 0 or interrupted)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
regrtest.py 212 INTERRUPTED = -4
356 result = INTERRUPTED, e.__class__.__name__
376 interrupted = False
546 if result[0] == INTERRUPTED:
551 interrupted = True
573 interrupted = True
591 if interrupted:
594 print "Test suite interrupted by signal SIGINT."
599 if not bad and not skipped and not interrupted and len(good) > 1:
663 sys.exit(len(bad) > 0 or interrupted)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
regrtest.py 212 INTERRUPTED = -4
356 result = INTERRUPTED, e.__class__.__name__
376 interrupted = False
546 if result[0] == INTERRUPTED:
551 interrupted = True
573 interrupted = True
591 if interrupted:
594 print "Test suite interrupted by signal SIGINT."
599 if not bad and not skipped and not interrupted and len(good) > 1:
663 sys.exit(len(bad) > 0 or interrupted)
    [all...]

Completed in 894 milliseconds

1 2 3