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

1 2 3 4 5 6 7 8 9

  /frameworks/support/work/workmanager/src/main/java/androidx/work/
State.java 51 * The status for work that has been cancelled and will not execute
53 CANCELLED;
58 * @return {@code true} for {@link #SUCCEEDED}, {@link #FAILED}, and {@link #CANCELLED} States
61 return (this == SUCCEEDED || this == FAILED || this == CANCELLED);
  /external/protobuf/src/google/protobuf/stubs/
status.cc 45 case CANCELLED:
46 return "CANCELLED";
86 const Status Status::CANCELLED = Status(error::CANCELLED, "");
status.h 46 CANCELLED = 1,
81 static const Status CANCELLED;
  /libcore/ojluni/src/main/java/java/util/
TimerTask.java 60 * executing) and has not been cancelled.
65 * This task has been cancelled (with a call to TimerTask.cancel).
67 static final int CANCELLED = 3;
112 * the task was already cancelled. (Loosely speaking, this method
119 state = CANCELLED;
  /packages/services/BuiltInPrintService/jni/include/
wtypes.h 34 /* Request failed because it was cancelled */
35 CANCELLED = -2,
  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
MojoResult.java 12 public static final int CANCELLED = 1;
43 case CANCELLED:
44 return "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;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MmiCode.java 33 CANCELLED,
57 * State becomes CANCELLED unless already COMPLETE or FAILED
Connection.java 523 CANCELLED, /* The post dial string playback was cancelled
572 if (mPostDialState == PostDialState.CANCELLED
    [all...]
  /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/ojluni/src/main/java/sun/nio/ch/
PendingFuture.java 38 private static final CancellationException CANCELLED =
53 // optional timer task that is cancelled when result becomes available
183 if (exc == CANCELLED)
200 if (exc == CANCELLED)
208 return (exc != CANCELLED) ? exc : null;
217 return (exc == CANCELLED);
236 exc = CANCELLED;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
status.h 46 CANCELLED = 1,
81 static const Status CANCELLED;
  /external/python/cpython3/Lib/concurrent/futures/
_base.py 19 # The future was cancelled by the user...
20 CANCELLED = 'CANCELLED'
28 CANCELLED,
36 CANCELLED: "cancelled",
37 CANCELLED_AND_NOTIFIED: "cancelled",
49 """The Future was cancelled."""
184 cancelled). If any given Futures are duplicated, they will be returned
245 cancelled
340 def cancelled(self): member in class:Future
    [all...]
  /external/python/futures/concurrent/futures/
_base.py 21 # The future was cancelled by the user...
22 CANCELLED = 'CANCELLED'
30 CANCELLED,
38 CANCELLED: "cancelled",
39 CANCELLED_AND_NOTIFIED: "cancelled",
51 """The Future was cancelled."""
209 cancelled). If any given Futures are duplicated, they will be returned
278 cancelled
390 def cancelled(self): member in class:Future
    [all...]
  /external/tensorflow/tensorflow/python/framework/
errors_impl.py 139 CANCELLED = error_codes_pb2.CANCELLED
140 tf_export("errors.CANCELLED").export_constant(__name__, "CANCELLED")
181 """Raised when an operation or step is cancelled.
185 cancelled by running another operation (e.g.
196 super(CancelledError, self).__init__(node_def, op, message, CANCELLED)
458 CANCELLED: CancelledError,
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/model/
WorkTypeConverters.java 22 import static androidx.work.State.CANCELLED;
57 int CANCELLED = 5;
59 String COMPLETED_STATES = "(" + SUCCEEDED + ", " + FAILED + ", " + CANCELLED + ")";
105 case CANCELLED:
106 return StateIds.CANCELLED;
138 case StateIds.CANCELLED:
139 return CANCELLED;
  /frameworks/base/services/core/jni/BroadcastRadio/
TunerCallback.cpp 79 CANCELLED = 2,
222 TunerError cause = TunerError::CANCELLED;
  /libcore/ojluni/src/main/java/java/util/concurrent/
FutureTask.java 48 * or cancelled (unless the computation is invoked using
90 * NEW -> CANCELLED
98 private static final int CANCELLED = 4;
121 if (s >= CANCELLED)
158 return state >= CANCELLED;
168 mayInterruptIfRunning ? INTERRUPTING : CANCELLED)))
217 * has been cancelled.
223 * this future has already been set or has been cancelled.
241 * already been set or has been cancelled.
291 * computation encounters an exception or is cancelled. This i
    [all...]
ForkJoinTask.java 135 * (including the case where a task was cancelled without executing);
138 * true if the task was cancelled (in which case {@link #getException}
141 * cancelled or encountered an exception, in which case {@link
229 * DONE_MASK) holds value NORMAL, CANCELLED, or EXCEPTIONAL. Tasks
250 static final int CANCELLED = 0xc0000000; // must be < NORMAL
251 static final int EXCEPTIONAL = 0x80000000; // must be < CANCELLED
259 * @param completion one of NORMAL, CANCELLED, EXCEPTIONAL
666 if (s == CANCELLED)
737 * other may be cancelled. However, the execution status of
741 * cancelled, completed normally or exceptionally, or lef
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
pm_errors.py 62 CANCELLED = 1
80 self.CANCELLED : '.Cancelled',
  /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;
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
AbstractQueuedSynchronizer.java 336 * needed to handle cancellation. If a node is cancelled, its
337 * successor is (normally) relinked to a non-cancelled
355 * nodes, we can miss noticing whether a cancelled node is
386 /** waitStatus value to indicate thread has cancelled. */
387 static final int CANCELLED = 1;
407 * CANCELLED: This node is cancelled due to timeout or interrupt.
409 * a thread with cancelled node never again blocks.
439 * finding a non-cancelled one, which will always exist
440 * because the head node is never cancelled: A node become
    [all...]
StampedLock.java 296 // Special value from cancelled acquire methods so caller can throw IE
301 private static final int CANCELLED = 1;
313 volatile int status; // 0, WAITING, or CANCELLED
    [all...]
  /external/libusb/libusb/os/
linux_usbfs.c 87 * URBs within that transfer will be cancelled and no more URBs will be
158 /* cancelled by user or timeout */
159 CANCELLED,
    [all...]
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-core/0.13.2/
grpc-core-0.13.2.jar 

Completed in 817 milliseconds

1 2 3 4 5 6 7 8 9