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

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/util/concurrent/
Uninterruptibles.java 35 * In all cases, if a thread is interrupted during such a call, the call
53 boolean interrupted = false;
60 interrupted = true;
64 if (interrupted) {
77 boolean interrupted = false;
87 interrupted = true;
92 if (interrupted) {
102 boolean interrupted = false;
109 interrupted = true;
113 if (interrupted) {
    [all...]
Monitor.java 266 * interrupted.
273 * corresponding thread may have already been interrupted and is waiting to reacquire the lock
275 * bigger-picture signal is lost unless interrupted threads take special action by
361 * Enters this monitor. Blocks indefinitely, but may be interrupted.
379 boolean interrupted = Thread.interrupted();
385 interrupted = true;
390 if (interrupted) {
397 * Enters this monitor. Blocks at most the given time, and may be interrupted.
417 * Enters this monitor when the guard is satisfied. Blocks indefinitely, but may be interrupted
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
intrcheck.c 81 int interrupted = 0; local
84 interrupted = 1;
86 return interrupted;
104 static int interrupted; variable
109 interrupted = 1;
126 switch (interrupted++) {
137 interrupted = 0;
163 if (!interrupted)
165 interrupted = 0;
  /external/python/cpython2/Parser/
intrcheck.c 81 int interrupted = 0; local
84 interrupted = 1;
86 return interrupted;
104 static int interrupted; variable
109 interrupted = 1;
126 switch (interrupted++) {
137 interrupted = 0;
163 if (!interrupted)
165 interrupted = 0;
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractInterruptibleChannel.java 73 * exception or by returning normally. If a thread is interrupted or the
146 private volatile Thread interrupted; field in class:AbstractInterruptibleChannel
164 interrupted = target;
194 * If the thread blocked in the I/O operation was interrupted
200 Thread interrupted = this.interrupted; local
201 if (interrupted != null && interrupted == Thread.currentThread()) {
202 interrupted = null;
  /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 103 Thread.interrupted();
121 boolean interrupted = false;
132 interrupted = true;
137 if (interrupted) {
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeThreadSet.java 86 boolean interrupted = false;
103 interrupted = true;
108 if (interrupted)
  /frameworks/base/core/java/android/os/
SystemClock.java 79 * be interrupted with {@link Thread#interrupt Thread.interrupt()}, and
86 * preserve the interrupted state of the thread.
124 boolean interrupted = false;
130 interrupted = true;
135 if (interrupted) {
138 // call to Thread.sleep() or Object.wait() will be interrupted.
  /frameworks/base/core/java/android/speech/tts/
UtteranceProgressListener.java 71 * @param interrupted If true, then the utterance was interrupted while being synthesized
75 public void onStop(String utteranceId, boolean interrupted) {
177 public void onStop(String utteranceId, boolean interrupted) {
  /external/squashfs-tools/squashfs-tools/
restore.c 56 static int interrupted = 0; variable
73 if((sig == SIGINT || sig == SIGTERM) && !interrupted) {
77 interrupted = TRUE;
  /libcore/ojluni/src/main/java/sun/misc/
Resource.java 92 // Even if a thread has been interrupted when loading resources,
96 boolean isInterrupted = Thread.interrupted();
103 Thread.interrupted();
126 Thread.interrupted();
  /cts/hostsidetests/usage/src/android/app/usage/cts/
AppIdleHostTest.java 187 boolean interrupted;
191 interrupted = false;
193 interrupted = true;
195 } while (interrupted);
  /external/guava/guava-testlib/test/com/google/common/testing/
GcFinalizationTest.java 137 Thread.interrupted();
153 Thread.interrupted();
169 Thread.interrupted();
188 Thread.interrupted();
  /external/jline/src/src/main/java/jline/
UnsupportedTerminal.java 70 while (!interrupted()) {
  /libcore/jsr166-tests/src/test/java/jsr166/
CountDownLatchTest.java 112 * await throws IE if interrupted before counted down
124 assertFalse(Thread.interrupted());
131 assertFalse(Thread.interrupted());
143 * timed await throws IE if interrupted before counted down
155 assertFalse(Thread.interrupted());
162 assertFalse(Thread.interrupted());
ExchangerTest.java 125 * If one exchanging thread is interrupted, another succeeds.
130 final CountDownLatch interrupted = new CountDownLatch(1); local
141 interrupted.await();
146 interrupted.await();
153 interrupted.countDown();
PhaserTest.java 471 assertFalse(Thread.interrupted());
478 assertFalse(Thread.interrupted());
488 assertFalse(Thread.interrupted());
495 assertFalse(Thread.interrupted());
511 * awaitAdvance continues waiting if interrupted before waiting
526 assertTrue(Thread.interrupted());
536 assertTrue(Thread.interrupted());
540 * awaitAdvance continues waiting if interrupted while waiting
554 assertTrue(Thread.interrupted());
565 assertTrue(Thread.interrupted());
    [all...]
  /external/valgrind/gdbserver_tests/
nlvgdbsigqueue.stdoutB.exp 1 continuing to have vgdb interrupted by simulate_control_c
  /packages/apps/Car/Messenger/src/com/android/car/messenger/tts/
FakeTTSEngine.java 70 void interruptRequest(String utteranceId, boolean interrupted) {
72 mProgressListener.onStop(utteranceId, interrupted);
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 397 * Convenience method to park and then check if interrupted.
399 * @return {@code true} if interrupted
403 return Thread.interrupted();
421 * @return {@code true} if interrupted while waiting
425 boolean interrupted = false;
431 return interrupted;
435 interrupted = true;
497 if (Thread.interrupted())
513 boolean interrupted = false;
521 if (interrupted)
    [all...]
AbstractQueuedSynchronizer.java     [all...]
  /frameworks/base/packages/SettingsProvider/test/src/com/android/providers/settings/
InstallNonMarketAppsDeprecationTest.java 56 boolean interrupted = false;
64 interrupted = true;
68 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());

Completed in 377 milliseconds

1 2 3 4 5 6 7 8 91011>>