HomeSort by relevance Sort by last modified time
    Searched defs:interrupted (Results 76 - 100 of 268) sorted by null

1 2 34 5 6 7 8 91011

  /external/libpcap/
pcap-rpcap.h 336 u_int interrupted; member in struct:pcap_md
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ServerSocketTest.java 54 boolean interrupted; field in class:ServerSocketTest
201 interrupted = false;
209 interrupted = true;
229 if (interrupted) {
230 fail("accept interrupted");
237 interrupted = false;
244 interrupted = true;
246 assertTrue("accept not interrupted", interrupted);
    [all...]
SocketTest.java 115 boolean interrupted; field in class:SocketTest
148 this.interrupted = false;
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileIOInterruptTest.java 93 // Clear the interrupted state, if set.
94 Thread.interrupted();
243 // Check but also clear the interrupted status, so we can wait for the FifoWriter thread in
245 assertTrue(Thread.interrupted());
375 // Check but also clear the interrupted status, so we can wait for the FifoReader thread in
377 assertTrue(Thread.interrupted());
476 wasInterrupted = Thread.interrupted();
513 wasInterrupted = Thread.interrupted();
564 wasInterrupted = Thread.interrupted();
615 wasInterrupted = Thread.interrupted();
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
LinkedTransferQueue.java 323 * the current thread was interrupted or the wait timed out. On
353 * may arise due to timed out or interrupted waits, or calls to
    [all...]
SynchronousQueue.java 184 * by checking Thread.interrupted.
    [all...]
CompletableFuture.java 348 if (r == null) // by convention below, null means interrupted
1692 boolean interrupted; field in class:CompletableFuture.Signaller
    [all...]
ForkJoinPool.java     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
fileobject.c 1083 int interrupted; local
1088 interrupted = ferror(f->f_fp) && errno == EINTR;
1090 if (interrupted) {
1098 if (interrupted)
1114 if (bytesread < buffersize && !interrupted) {
1155 int interrupted; local
    [all...]
  /external/openssh/
sftp.c 105 volatile sig_atomic_t interrupted = 0; variable
253 interrupted = 1;
636 for (i = 0; g.gl_pathv[i] && !interrupted; i++) {
723 for (i = 0; g.gl_pathv[i] && !interrupted; i++) {
840 for (n = 0; d[n] != NULL && !interrupted; n++) {
909 if (interrupted)
936 for (i = 0; g.gl_pathv[i] && !interrupted; i++) {
    [all...]
  /external/python/cpython2/Objects/
fileobject.c 1081 int interrupted; local
1086 interrupted = ferror(f->f_fp) && errno == EINTR;
1088 if (interrupted) {
1096 if (interrupted)
1112 if (bytesread < buffersize && !interrupted) {
1153 int interrupted; local
1158 interrupted = ferror(f->f_fp) && errno == EINTR;
1160 if (interrupted) {
1168 if (interrupted)
    [all...]
  /external/strace/
strace.c 167 static volatile sig_atomic_t interrupted; variable
169 static volatile int interrupted; variable
1177 if (interrupted)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
system_error.h 151 interrupted, // EINTR
530 interrupted = EINTR, enumerator in enum:llvm::errc::_
  /frameworks/base/core/java/android/database/sqlite/
SQLiteConnectionPool.java 726 // Clear the interrupted flag, just in case.
727 Thread.interrupted();
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Thread.java 309 * if any thread has interrupted the current thread. The
310 * <i>interrupted status</i> of the current thread is
339 * if any thread has interrupted the current thread. The
340 * <i>interrupted status</i> of the current thread is
358 // ...but we still have to handle being interrupted.
359 if (Thread.interrupted()) {
949 public static native boolean interrupted(); method in class:Thread
    [all...]
  /art/runtime/
thread.h 498 // Implements java.lang.Thread.interrupted.
499 bool Interrupted();
504 tls32_.interrupted.StoreSequentiallyConsistent(i);
596 OFFSETOF_MEMBER(tls_32bit_sized_values, interrupted));
1460 Atomic<bool32_t> interrupted; variable
    [all...]
thread.cc 2346 bool interrupted = tls32_.interrupted.LoadSequentiallyConsistent(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 1800 interrupted(); \/\/ Clear interrupt flag if execute called exit. method
    [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.cc 1771 bool interrupted = local
1788 bool interrupted = false; local
    [all...]
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.jobs_3.7.0.v20150330-2103.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.jobs_3.5.300.v20130429-1813.jar 
  /external/robolectric/v3/
shadows-httpclient-3.1-SNAPSHOT.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-connector-basic/1.0.2.v20150114/
aether-connector-basic-1.0.2.v20150114.jar 
  /prebuilts/misc/common/robolectric/lib/
shadows-httpclient-3.1.1.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-common/4.1.0.CR3/
netty-common-4.1.0.CR3.jar 

Completed in 2276 milliseconds

1 2 34 5 6 7 8 91011