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

1 2 3 4

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MmiCode.java 29 CANCELLED,
54 * State becomes CANCELLED unless already COMPLETE or FAILED
Connection.java 376 CANCELLED, /* The post dial string playback was cancelled
  /frameworks/base/services/core/java/com/android/server/notification/
RankingReconsideration.java 31 private static final int CANCELLED = 3;
70 mState = CANCELLED;
77 return mState == CANCELLED;
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 50 * completed, failed, or cancelled.
154 * Returns true if this future was cancelled with {@code
213 * {@link #COMPLETED}, {@link #CANCELLED}, or {@link #INTERRUPTED}
218 * computation, and only then transition to COMPLETED, CANCELLED, or
232 static final int CANCELLED = 4;
278 * was cancelled, or a {@link ExecutionException} if the task completed with
304 case CANCELLED:
307 "Task was cancelled.", exception);
316 * Checks if the state is {@link #COMPLETED}, {@link #CANCELLED}, or {@link
320 return (getState() & (COMPLETED | CANCELLED | INTERRUPTED)) != 0
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 19 * or cancelled (unless the computation is invoked using
61 * NEW -> CANCELLED
69 private static final int CANCELLED = 4;
92 if (s >= CANCELLED)
129 return state >= CANCELLED;
139 mayInterruptIfRunning ? INTERRUPTING : CANCELLED)))
188 * has been cancelled.
194 * this future has already been set or has been cancelled.
212 * already been set or has been cancelled.
262 * computation encounters an exception or is cancelled. This i
    [all...]
ForkJoinTask.java 101 * (including the case where a task was cancelled without executing);
104 * true if the task was cancelled (in which case {@link #getException}
107 * cancelled or encountered an exception, in which case {@link
195 * DONE_MASK) holds value NORMAL, CANCELLED, or EXCEPTIONAL. Tasks
216 static final int CANCELLED = 0xc0000000; // must be < NORMAL
217 static final int EXCEPTIONAL = 0x80000000; // must be < CANCELLED
225 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
630 if (s == CANCELLED)
701 * other may be cancelled. However, the execution status of
705 * cancelled, completed normally or exceptionally, or lef
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/
GenericRequest.java 51 /** Cancelled by the user, may not be restarted. */
52 CANCELLED,
275 * Cancelled requests can be restarted with a subsequent call to {@link #begin()}.
281 status = Status.CANCELLED;
356 return status == Status.CANCELLED;
  /external/libusb/libusb/os/
linux_usbfs.c 78 * cancellation, all URBs within that transfer will be cancelled with the
87 * transfer get cancelled) is already in effect, and setting this flag is
119 /* cancelled by user or timeout */
120 CANCELLED,
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 86 * needed to handle cancellation. If a node is cancelled, its
87 * successor is (normally) relinked to a non-cancelled
105 * nodes, we can miss noticing whether a cancelled node is
136 /** waitStatus value to indicate thread has cancelled */
137 static final int CANCELLED = 1;
157 * CANCELLED: This node is cancelled due to timeout or interrupt.
159 * a thread with cancelled node never again blocks.
189 * finding a non-cancelled one, which will always exist
190 * because the head node is never cancelled: A node become
    [all...]
AbstractQueuedSynchronizer.java 312 * needed to handle cancellation. If a node is cancelled, its
313 * successor is (normally) relinked to a non-cancelled
331 * nodes, we can miss noticing whether a cancelled node is
362 /** waitStatus value to indicate thread has cancelled */
363 static final int CANCELLED = 1;
383 * CANCELLED: This node is cancelled due to timeout or interrupt.
385 * a thread with cancelled node never again blocks.
415 * finding a non-cancelled one, which will always exist
416 * because the head node is never cancelled: A node become
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.2.0/
lint-api-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.4.0/
lint-api-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.4.2/
lint-api-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.5.0/
lint-api-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.5.1/
lint-api-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.5.3/
lint-api-22.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.7.0/
lint-api-22.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.7.1/
lint-api-22.7.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.7.3/
lint-api-22.7.3.jar 
  /prebuilts/devtools/tools/lib/
lint-api.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.8.0/
lint-api-22.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.9.2/
lint-api-22.9.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.0.1/
lint-api-23.0.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.0.2/
lint-api-23.0.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.1.0/
lint-api-23.1.0.jar 

Completed in 318 milliseconds

1 2 3 4