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

  /frameworks/base/telephony/java/com/android/internal/telephony/
MmiCode.java 29 CANCELLED,
49 * State becomes CANCELLED unless already COMPLETE or FAILED
Connection.java 63 CDMA_REORDER, /* MS has been redirected, call is cancelled */
243 CANCELLED, /* The post dial string playback was cancelled
  /external/bluetooth/glib/gio/
gcancellable.c 51 CANCELLED,
59 guint cancelled : 1; member in struct:_GCancellable
102 * GCancellable::cancelled:
105 * Emitted when the operation has been cancelled.
108 * operation is cancelled from another thread, the signal will be
109 * emitted in the thread that cancelled the operation, not the
122 * id = g_signal_connect (cancellable, "cancelled",
151 * id = g_signal_connect_data (cancellable, "cancelled",
164 signals[CANCELLED] =
165 g_signal_new (I_("cancelled"),
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 50 * completed, failed, or cancelled.
205 * {@link #COMPLETED} or {@link #CANCELLED}.
210 * computation, and only then transition to COMPLETED or CANCELLED.
223 static final int CANCELLED = 4;
268 * was cancelled, or a {@link ExecutionException} if the task completed with
294 case CANCELLED:
295 throw new CancellationException("Task was cancelled.");
304 * Checks if the state is {@link #COMPLETED} or {@link #CANCELLED}.
307 return (getState() & (COMPLETED | CANCELLED)) != 0;
311 * Checks if the state is {@link #CANCELLED}
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 18 * or cancelled.
100 * has been cancelled.
106 * this future has already been set or has been cancelled.
118 * already been set or has been cancelled.
134 * unless it has been cancelled.
143 * computation encounters an exception or is cancelled. This is
169 /** State value representing that task was cancelled */
170 private static final int CANCELLED = 4;
191 return (state & (RAN | CANCELLED)) != 0;
195 * Implements AQS base acquire to succeed if ran or cancelled
    [all...]
  /external/chromium/chrome/browser/download/
download_item.h 48 // Download has been cancelled.
49 CANCELLED,
234 // Returns true if the download has been cancelled or was interrupted.
  /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 84 * needed to handle cancellation. If a node is cancelled, its
85 * successor is (normally) relinked to a non-cancelled
103 * nodes, we can miss noticing whether a cancelled node is
134 /** waitStatus value to indicate thread has cancelled */
135 static final int CANCELLED = 1;
155 * CANCELLED: This node is cancelled due to timeout or interrupt.
157 * a thread with cancelled node never again blocks.
187 * finding a non-cancelled one, which will always exist
188 * because the head node is never cancelled: A node become
    [all...]
AbstractQueuedSynchronizer.java 315 * needed to handle cancellation. If a node is cancelled, its
316 * successor is (normally) relinked to a non-cancelled
334 * nodes, we can miss noticing whether a cancelled node is
365 /** waitStatus value to indicate thread has cancelled */
366 static final int CANCELLED = 1;
386 * CANCELLED: This node is cancelled due to timeout or interrupt.
388 * a thread with cancelled node never again blocks.
418 * finding a non-cancelled one, which will always exist
419 * because the head node is never cancelled: A node become
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 182 milliseconds