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

1 2 3 4 5 6 7 8 9

  /external/guava/guava/src/com/google/common/util/concurrent/
Uninterruptibles.java 33 * In all cases, if a thread is interrupted during such a call, the call
51 boolean interrupted = false;
58 interrupted = true;
62 if (interrupted) {
75 boolean interrupted = false;
85 interrupted = true;
90 if (interrupted) {
100 boolean interrupted = false;
107 interrupted = true;
111 if (interrupted) {
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java 40 volatile boolean interrupted = false; field in class:AbstractInterruptibleChannel
45 interrupted = true;
111 if (interrupted) {
112 interrupted = false;
  /frameworks/base/core/java/android/os/
SystemClock.java 72 * be interrupted with {@link Thread#interrupt Thread.interrupt()}, and
79 * preserve the interrupted state of the thread.
117 boolean interrupted = false;
123 interrupted = true;
128 if (interrupted) {
131 // call to Thread.sleep() or Object.wait() will be interrupted.
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoDownloadRunnable.java 132 // interrupted
133 if (Thread.interrupted()) {
161 // hasn't been interrupted
162 if (Thread.interrupted()) {
169 if (Thread.interrupted()) {
238 if (Thread.interrupted()) {
325 if (Thread.interrupted()) {
332 if (Thread.interrupted()) {
392 Thread.interrupted();
PhotoDecodeRunnable.java 153 // been interrupted
154 if (Thread.interrupted()) {
198 if (Thread.interrupted()) {
241 if (Thread.interrupted()) {
283 Thread.interrupted();
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
InterruptionUtil.java 101 Thread.interrupted();
119 boolean interrupted = false;
130 interrupted = true;
135 if (interrupted) {
  /external/okhttp/okio/src/main/java/okio/
Deadline.java 55 // If the thread is interrupted, do not proceed with further I/O.
56 if (Thread.interrupted()) throw new InterruptedIOException();
  /external/guava/guava-tests/test/com/google/common/testing/
GcFinalizationTest.java 123 Thread.interrupted();
139 Thread.interrupted();
155 Thread.interrupted();
174 Thread.interrupted();
  /libcore/jsr166-tests/src/test/java/jsr166/
CountDownLatchTest.java 101 * await throws IE if interrupted before counted down
113 assertFalse(Thread.interrupted());
120 assertFalse(Thread.interrupted());
132 * timed await throws IE if interrupted before counted down
144 assertFalse(Thread.interrupted());
151 assertFalse(Thread.interrupted());
ExchangerTest.java 113 * If one exchanging thread is interrupted, another succeeds.
118 final CountDownLatch interrupted = new CountDownLatch(1); local
129 interrupted.await();
134 interrupted.await();
141 interrupted.countDown();
BlockingQueueTest.java 222 assertFalse(Thread.interrupted());
229 assertFalse(Thread.interrupted());
256 assertFalse(Thread.interrupted());
266 * take() throws InterruptedException immediately if interrupted
278 assertFalse(Thread.interrupted());
297 assertFalse(Thread.interrupted());
308 * interrupted before waiting
319 assertFalse(Thread.interrupted());
LinkedBlockingDequeTest.java 563 assertFalse(Thread.interrupted());
570 assertFalse(Thread.interrupted());
601 assertFalse(Thread.interrupted());
668 assertFalse(Thread.interrupted());
675 assertFalse(Thread.interrupted());
723 * Interrupted timed poll throws InterruptedException instead of
795 assertFalse(Thread.interrupted());
802 assertFalse(Thread.interrupted());
833 assertFalse(Thread.interrupted());
896 assertFalse(Thread.interrupted());
    [all...]
  /external/valgrind/main/gdbserver_tests/
nlvgdbsigqueue.stdoutB.exp 1 continuing to have vgdb interrupted by simulate_control_c
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 578 * Convenience method to park and then check if interrupted
580 * @return {@code true} if interrupted
584 return Thread.interrupted();
602 * @return {@code true} if interrupted while waiting
607 boolean interrupted = false;
614 return interrupted;
618 interrupted = true;
682 if (Thread.interrupted())
699 boolean interrupted = false;
707 if (interrupted)
    [all...]
AbstractQueuedSynchronizer.java     [all...]
  /external/guava/guava/src/com/google/common/collect/
Queues.java 201 * @throws InterruptedException if interrupted while waiting
231 * but with a different behavior in case it is interrupted while waiting. In that case, the
247 boolean interrupted = false;
260 interrupted = true; // note interruption and retry
271 if (interrupted) {
  /libcore/luni/src/test/java/libcore/java/io/
InterruptedStreamTest.java 50 // Clear the interrupted bit to make sure an earlier test did
52 Thread.interrupted();
61 Thread.interrupted(); // clear interrupted bit
209 // validate and clear interrupted bit before join
211 assertTrue(Thread.interrupted());
  /external/llvm/include/llvm/Support/
Errc.h 52 interrupted = int(std::errc::interrupted), member in class:llvm::errc
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
error_constants.h 71 interrupted = EINTR, member in class:errc
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
error_constants.h 71 interrupted = EINTR, member in class:errc
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 245 private static boolean interrupted = false; field in class:OldThreadGroupTest
259 assertFalse("Incorrect state of thread", interrupted);
261 assertFalse("Incorrect state of thread", interrupted);
267 assertTrue("Incorrect state of thread", interrupted);
321 interrupted = true;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadTest.java 479 boolean interrupted = false;
488 interrupted = true;
490 assertTrue("Failed to Interrupt thread1", interrupted);
492 interrupted = false;
503 interrupted = true;
505 assertTrue("Failed to Interrupt thread2", interrupted);
510 * java.lang.Thread#interrupted()
513 assertFalse("Interrupted returned true for non-interrupted thread", Thread
514 .interrupted());
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
buildbot_run.py 132 buildbot_common.ErrorExit('buildbot_run: interrupted')
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadUtils.java 63 Thread.interrupted(); // consume the interrupt signal
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
strace_profiler.py 52 # Map of tid:interrupted_call for the interrupted call on each thread. It is
65 # If this line is interrupted, then remember it and continue.
73 interrupted = False
76 interrupted = True
112 if interrupted:
113 args['interrupted'] = True

Completed in 703 milliseconds

1 2 3 4 5 6 7 8 9