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

1 2 3

  /external/guava/guava/src/com/google/common/util/concurrent/
Uninterruptibles.java 33 * 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...]
  /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 101 Thread.interrupted();
119 boolean interrupted = false;
130 interrupted = true;
135 if (interrupted) {
JSR166TestCase.java 342 if (Thread.interrupted())
707 * Throws AssertionFailedError if interrupted.
858 threadAssertFalse(Thread.interrupted());
888 threadAssertFalse(Thread.interrupted());
    [all...]
  /external/okhttp/okio/src/main/java/okio/
Deadline.java 55 // 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/
GcFinalizationTest.java 123 Thread.interrupted();
139 Thread.interrupted();
155 Thread.interrupted();
174 Thread.interrupted();
  /external/guava/guava/src/com/google/common/collect/
Queues.java 201 * @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) {
ComputingConcurrentHashMap.java 321 boolean interrupted = false;
328 interrupted = true;
333 if (interrupted) {
  /external/llvm/include/llvm/Support/
Errc.h 52 interrupted = int(std::errc::interrupted), member in class:llvm::errc
  /external/chromium_org/native_client_sdk/src/build_tools/
buildbot_run.py 134 buildbot_common.ErrorExit('buildbot_run: interrupted')
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
strace_profiler.py 52 # 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
  /art/test/050-sync-test/src/
Main.java 165 // Expecting this; interrupted should be false.
167 " interrupted, flag=" + Thread.interrupted());
174 System.out.println("NOT INTERRUPTED");
179 System.out.println("PESKY INTERRUPTED?");
  /external/chromium_org/third_party/libsrtp/srtp/test/
rtpw.c 132 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/
downloads.css 121 .interrupted {
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
PacketReflector.java 229 while (!interrupted() && mFd.valid()) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
JDWPUnitDebuggeeProcessWrapper.java 298 logWriter.println("Ignoring exception in ProcessWaiter thread interrupted: " + e);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_run_results.py 101 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/
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());
262 // wait for interrupted status and clear it
263 while (!Thread.interrupted()) { Thread.yield(); }
  /art/runtime/native/
java_lang_Thread.cc 37 return static_cast<JNIEnvExt*>(env)->self->Interrupted() ? JNI_TRUE : JNI_FALSE;
183 NATIVE_METHOD(Thread, interrupted, "!()Z"),
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
AdvancedSearchView.js 211 this._searchMessageElement.textContent = finished ? "" : WebInspector.UIString("Indexing interrupted.");
265 this._searchMessageElement.textContent = finished ? WebInspector.UIString("Search finished.") : WebInspector.UIString("Search interrupted.");
  /external/libcxx/test/diagnostics/syserr/
errc.pass.cpp 45 static_assert(static_cast<int>(std::errc::interrupted) == EINTR, "");
  /external/llvm/lib/Support/
ErrorHandling.cpp 196 MAP_ERR_TO_COND(WSAEINTR, interrupted);
  /external/chromium_org/remoting/webapp/
host_setup_dialog.js 393 console.error('Host setup was interrupted when starting the host');
428 console.error('Host setup was interrupted when updating PIN');
465 console.error('Host setup was interrupted when stopping the host');
  /external/libpcap/
pcap-bpf.c 158 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;
    [all...]

Completed in 913 milliseconds

1 2 3