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

  /frameworks/base/vpn/java/android/net/vpn/
VpnState.java 27 * {@link CANCELLED} is a state when a VPN connection attempt is aborted, and
37 CONNECTING, DISCONNECTING, CANCELLED, CONNECTED, IDLE, UNUSABLE, UNKNOWN
  /frameworks/base/telephony/java/com/android/internal/telephony/
MmiCode.java 29 CANCELLED,
49 * State becomes CANCELLED unless already COMPLETE or FAILED
Connection.java 56 CDMA_REORDER, /* MS has been redirected, call is cancelled */
236 CANCELLED, /* The post dial string playback was cancelled
  /dalvik/libcore/concurrent/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/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 43 * completed, failed, or cancelled. Because this class does not implement
80 * Checks if the sync is in the cancelled state.
136 * Subclasses should invoke this method to mark the future as cancelled.
138 * AbstractFuture.Sync#CANCELLED} and call {@link #done()} if the state was
152 * Called by the success, failed, or cancelled methods to indicate that the
167 * {@link #COMPLETED} or {@link #CANCELLED}.
172 * computation, and only then transition to COMPLETED or CANCELLED.
185 static final int CANCELLED = 4;
230 * was cancelled, or a {@link ExecutionException} if the task completed with
256 case CANCELLED
    [all...]
  /cts/tools/host/src/com/android/cts/
HostTimer.java 36 private final static int CANCELLED = 2;
157 mStatus = 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...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmConnection.java 318 setPostDialState(PostDialState.CANCELLED);
567 if (postDialState == PostDialState.CANCELLED
598 if (postDialState == PostDialState.CANCELLED) {
599 //Log.v("GSM", "##### processNextPostDialChar: postDialState == CANCELLED, bail");
GsmMmiCode.java 399 // Complete or failed cannot be cancelled
404 state = State.CANCELLED;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaConnection.java 372 setPostDialState(PostDialState.CANCELLED);
643 if (postDialState == PostDialState.CANCELLED
693 if (postDialState == PostDialState.CANCELLED) {
695 //Log.v("CDMA", "##### processNextPostDialChar: postDialState == CANCELLED, bail");
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
AbstractQueuedSynchronizer.java 292 * needed to handle cancellation. If a node is cancelled, its
293 * successor is (normally) relinked to a non-cancelled
311 * nodes, we can miss noticing whether a cancelled node is
342 /** waitStatus value to indicate thread has cancelled */
343 static final int CANCELLED = 1;
363 * CANCELLED: This node is cancelled due to timeout or interrupt.
365 * a thread with cancelled node never again blocks.
395 * finding a non-cancelled one, which will always exist
396 * because the head node is never cancelled: A node become
    [all...]
  /packages/apps/Settings/src/com/android/settings/vpn/
VpnSettings.java 337 || (state == VpnState.CANCELLED));
731 case CANCELLED:
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMPhoneTest.java     [all...]
  /packages/apps/Phone/src/com/android/phone/
PhoneUtils.java     [all...]

Completed in 872 milliseconds