Searched refs:interrupted (Results 1 - 25 of 58) sorted by relevance

123

/external/guava/guava/src/com/google/common/util/concurrent/
H A DUninterruptibles.java33 * 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...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DInterruptionUtil.java101 Thread.interrupted();
119 boolean interrupted = false;
130 interrupted = true;
135 if (interrupted) {
H A DJSR166TestCase.java342 if (Thread.interrupted())
707 * Throws AssertionFailedError if interrupted.
858 threadAssertFalse(Thread.interrupted());
888 threadAssertFalse(Thread.interrupted());
H A DAbstractServiceTest.java116 Thread.interrupted(); // clear interrupt for future tests
H A DFuturesTest.java90 Thread.interrupted();
1530 Thread.interrupted();
1610 Thread.interrupted();
1699 Thread.interrupted();
/external/okhttp/okio/src/main/java/okio/
H A DDeadline.java55 // 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/
H A DGcFinalizationTest.java123 Thread.interrupted();
139 Thread.interrupted();
155 Thread.interrupted();
174 Thread.interrupted();
/external/valgrind/main/gdbserver_tests/
H A Dnlvgdbsigqueue.stdoutB.exp1 continuing to have vgdb interrupted by simulate_control_c
/external/guava/guava/src/com/google/common/collect/
H A DQueues.java201 * @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) {
H A DComputingConcurrentHashMap.java321 boolean interrupted = false;
328 interrupted = true;
333 if (interrupted) {
/external/llvm/include/llvm/Support/
H A DErrc.h52 interrupted = int(std::errc::interrupted), member in class:llvm::errc
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dstrace_profiler.py52 # 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
/external/chromium_org/third_party/libsrtp/srtp/test/
H A Drtpw.c132 volatile int interrupted = 0; variable
455 while (!interrupted && fgets(word, MAX_WORD_LEN, dict) != NULL) {
499 while (!interrupted) {
570 interrupted = 1;
/external/chromium_org/chrome/browser/resources/downloads/
H A Ddownloads.css121 .interrupted {
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPUnitDebuggeeProcessWrapper.java298 logWriter.println("Ignoring exception in ProcessWaiter thread interrupted: " + e);
/external/llvm/lib/Support/
H A DErrorHandling.cpp196 MAP_ERR_TO_COND(WSAEINTR, interrupted);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_run_results.py101 self.interrupted = False
311 results['interrupted'] = initial_results.interrupted # Does results.html have enough information to compute this itself? (by checking total number of results vs. total number of tests?)
/external/guava/guava-tests/test/com/google/common/collect/
H A DQueuesTest.java64 // 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());
262 // wait for interrupted status and clear it
263 while (!Thread.interrupted()) { Thread.yield(); }
/external/strace/
H A Dstrace.c171 static volatile sig_atomic_t interrupted; variable
173 static volatile int interrupted; variable
1037 if (interrupted)
2002 /* 'interrupted' is a volatile object, fetch it only once */
2003 fatal_sig = interrupted;
2027 interrupted = sig;
2057 if (interrupted)
2393 if (interrupted)
/external/libcxx/test/diagnostics/syserr/
H A Derrc.pass.cpp45 static_assert(static_cast<int>(std::errc::interrupted) == EINTR, "");
/external/libpcap/
H A Dpcap-bpf.c158 u_int interrupted; member in struct:pcap_bpf
334 * If a previous sleep was interrupted due to signal delivery, make
344 if (pb->interrupted && p->opt.timeout) {
349 pb->interrupted = 0;
376 if (!pb->interrupted && p->opt.timeout) {
377 pb->interrupted = 1;
387 pb->interrupted = 0;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
H A Dmanager.py160 # run was interrupted even before testing started. In those cases, don't archive the folder.
259 # Don't retry failures when interrupted by user or failures limit exception.
260 should_retry_failures = should_retry_failures and not (initial_results.interrupted or initial_results.keyboard_interrupted)
311 if initial_results.interrupted:
/external/libunwind/doc/
H A Dunw_resume.tex29 \Var{cp} was interrupted by a signal, then \Func{unw\_resume}() will
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.jobs_3.5.1.R36x_v20100824.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultRequestDirector.java332 } catch(InterruptedException interrupted) {
334 iox.initCause(interrupted);

Completed in 683 milliseconds

123