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

1 2 3 4 5 6 7 8 91011

  /prebuilts/go/darwin-x86/src/cmd/go/
signal.go 13 // interrupted is closed, if go process is interrupted.
14 var interrupted = make(chan struct{}) var
22 close(interrupted)
  /prebuilts/go/linux-x86/src/cmd/go/
signal.go 13 // interrupted is closed, if go process is interrupted.
14 var interrupted = make(chan struct{}) var
22 close(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/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;
  /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;
  /external/v8/src/
futex-emulation.cc 31 // hasn't been locked yet. In either of those cases, we set the interrupted
124 bool interrupted = node->interrupted_; local
135 // 2) After interrupted has been checked here, but before mutex_ is
136 // acquired: interrupted is checked again below, with mutex_ locked.
143 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();
  /packages/apps/TV/src/com/android/tv/search/
DataManagerSearch.java 83 Thread.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
  /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();
  /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
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
MoreExecutorsTest.java 675 final AtomicBoolean interrupted = new AtomicBoolean(); local
676 // we need to use another thread because it will be interrupted and thus using
682 interrupted.set(Thread.currentThread().isInterrupted());
690 assertTrue(interrupted.get());
  /external/google-breakpad/src/processor/
minidump_processor.cc 152 bool interrupted = false; local
259 interrupted = true;
271 if (interrupted) {
272 BPLOG(INFO) << "Processing interrupted for " << dump->path();
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
QueuesTest.java 64 // notice that if a Producer is interrupted (a bug), the Producer will go into an infinite
205 // so when this drains all elements, we know the thread has also been interrupted in between
206 assertTrue(Thread.interrupted());
273 // wait for interrupted status and clear it
274 while (!Thread.interrupted()) { Thread.yield(); }
  /external/parameter-framework/asio-1.10.6/include/asio/
error.hpp 75 /// Interrupted system call.
76 interrupted = ASIO_SOCKET_ERROR(EINTR), enumerator in enum:asio::error::basic_errors
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
error_constants.h 77 interrupted = EINTR, member in class:errc

Completed in 823 milliseconds

1 2 3 4 5 6 7 8 91011