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

1 2

  /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 188 } while ((n == IOStatus.INTERRUPTED) && isOpen());
216 } while ((n == IOStatus.INTERRUPTED) && isOpen());
240 } while ((n == IOStatus.INTERRUPTED) && isOpen());
268 } while ((n == IOStatus.INTERRUPTED) && isOpen());
296 } while ((p == IOStatus.INTERRUPTED) && isOpen());
321 } while ((p == IOStatus.INTERRUPTED) && isOpen());
343 } while ((s == IOStatus.INTERRUPTED) && isOpen());
373 } while ((size == IOStatus.INTERRUPTED) && isOpen());
380 } while ((p == IOStatus.INTERRUPTED) && isOpen());
389 } while ((rv == IOStatus.INTERRUPTED) && isOpen())
    [all...]
SinkChannelImpl.java 168 } while ((n == IOStatus.INTERRUPTED) && isOpen());
191 } while ((n == IOStatus.INTERRUPTED) && isOpen());
SocketChannelImpl.java 351 // Either the current thread is already interrupted, so
370 // or this thread might be interrupted. We rely upon the
393 // with IOStatus.INTERRUPTED.
420 if ((n == IOStatus.INTERRUPTED) && isOpen()) {
421 // The system call was interrupted but the channel
443 // interrupted at the exact moment that a non-blocking I/O
480 if ((n == IOStatus.INTERRUPTED) && isOpen())
511 if ((n == IOStatus.INTERRUPTED) && isOpen())
544 if ((n == IOStatus.INTERRUPTED) && isOpen())
574 if ((n == IOStatus.INTERRUPTED) && isOpen()
    [all...]
SourceChannelImpl.java 172 } while ((n == IOStatus.INTERRUPTED) && isOpen());
203 } while ((n == IOStatus.INTERRUPTED) && isOpen());
DatagramChannelImpl.java 390 } while ((n == IOStatus.INTERRUPTED) && isOpen());
398 } while ((n == IOStatus.INTERRUPTED) && isOpen());
511 } while ((n == IOStatus.INTERRUPTED) && isOpen());
598 } while ((n == IOStatus.INTERRUPTED) && isOpen());
627 } while ((n == IOStatus.INTERRUPTED) && isOpen());
654 } while ((n == IOStatus.INTERRUPTED) && isOpen());
683 } while ((n == IOStatus.INTERRUPTED) && isOpen());
    [all...]
ServerSocketChannelImpl.java 252 if ((n == IOStatus.INTERRUPTED) && isOpen())
431 // 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
  /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...]
  /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...]
  /prebuilts/python/linux-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...]
  /hardware/interfaces/wifi/1.0/
types.hal 510 * Indicates that a scan was interrupted/did not occur so results may be
513 INTERRUPTED = 1 << 0,
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiVendorHal.java     [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiVendorHalTest.java     [all...]

Completed in 3421 milliseconds

1 2