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

1 2 3 4 5 6 7 8 91011>>

  /external/squashfs-tools/squashfs-tools/
restore.c 56 static int interrupted = 0; variable
73 if((sig == SIGINT || sig == SIGTERM) && !interrupted) {
77 interrupted = TRUE;
  /libcore/jsr166-tests/src/test/java/jsr166/
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();
  /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;
  /packages/apps/Dialer/java/com/android/dialer/commandline/impl/
Help.java 85 Thread.interrupted();
  /external/v8/src/
futex-emulation.cc 32 // hasn't been locked yet. In either of those cases, we set the interrupted
125 bool interrupted = node->interrupted_; local
136 // 2) After interrupted has been checked here, but before mutex_ is
137 // acquired: interrupted is checked again below, with mutex_ locked.
144 if (interrupted) {
  /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();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadUtils.java 63 Thread.interrupted(); // consume the interrupt signal
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoDecodeRunnable.java 153 // been interrupted
154 if (Thread.interrupted()) {
198 if (Thread.interrupted()) {
241 if (Thread.interrupted()) {
283 Thread.interrupted();
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();
  /cts/tests/autofillservice/src/android/autofillservice/cts/
AuthenticationActivity.java 202 Thread.interrupted();
203 throw new IllegalStateException("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/libnl/lib/
nl.c 777 int n, err = 0, multipart = 0, interrupted = 0, nrecv = 0; local
867 interrupted = 1;
977 if (interrupted)
  /external/llvm/include/llvm/Support/
Errc.h 52 interrupted = int(std::errc::interrupted), member in class:llvm::errc
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowSQLiteConnectionTest.java 151 Thread.interrupted();
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Errc.h 52 interrupted = int(std::errc::interrupted), member in class:llvm::errc
  /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());
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SelectorTest.java 64 // Clear the interrupted thread state so that it does not interfere with later tests.
65 Thread.interrupted();
  /libcore/ojluni/src/main/java/sun/nio/ch/
Invoker.java 132 Thread.interrupted();
  /packages/apps/TV/src/com/android/tv/search/
DataManagerSearch.java 82 Thread.interrupted();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Errc.h 52 interrupted = int(std::errc::interrupted), member in class:llvm::errc
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
Errc.h 52 interrupted = int(std::errc::interrupted), member in class:llvm::errc
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
Errc.h 52 interrupted = int(std::errc::interrupted), member in class:llvm::errc
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
Errc.h 52 interrupted = int(std::errc::interrupted), member in class:llvm::errc

Completed in 478 milliseconds

1 2 3 4 5 6 7 8 91011>>