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

1 2 3 4 5 6 7 8 91011

  /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);
  /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;
  /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/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";
  /external/protobuf/src/google/protobuf/stubs/
status_test.cc 48 EXPECT_EQ(util::error::CANCELLED, util::Status::CANCELLED.error_code());
107 const util::Status a = util::Status(util::error::CANCELLED, "message");
108 const util::Status b = util::Status(util::error::CANCELLED, "message");
113 const util::Status a = util::Status(util::error::CANCELLED, "message");
119 const util::Status a = util::Status(util::error::CANCELLED, "message");
125 const util::Status a = util::Status(util::error::CANCELLED, "message");
126 const util::Status b = util::Status(util::error::CANCELLED, "another");
statusor_test.cc 78 StatusOr<int> thing(Status::CANCELLED);
80 EXPECT_EQ(Status::CANCELLED, thing.status());
99 StatusOr<int> original(Status::CANCELLED);
113 StatusOr<int> original(Status::CANCELLED);
128 StatusOr<int> source(Status::CANCELLED);
144 StatusOr<int> source(Status::CANCELLED);
153 StatusOr<int> bad(Status::CANCELLED);
155 EXPECT_EQ(Status::CANCELLED, bad.status());
177 StatusOr<int*> thing(Status::CANCELLED);
179 EXPECT_EQ(Status::CANCELLED, thing.status())
    [all...]
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;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MmiCode.java 33 CANCELLED,
57 * State becomes CANCELLED unless already COMPLETE or FAILED
  /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;
  /packages/services/BuiltInPrintService/jni/include/
wtypes.h 34 /* Request failed because it was cancelled */
35 CANCELLED = -2,
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
status.h 46 CANCELLED = 1,
81 static const Status CANCELLED;
  /external/tensorflow/tensorflow/compiler/xla/
statusor_test.cc 80 StatusOr<NoDefaultConstructor> statusor(tensorflow::errors::Cancelled(""));
82 EXPECT_EQ(statusor.status().code(), tensorflow::error::CANCELLED);
103 StatusOr<std::unique_ptr<int>> thing(tensorflow::errors::Cancelled(""));
224 StatusOr<int> thing(Status(tensorflow::error::CANCELLED, ""));
226 EXPECT_EQ(thing.status().code(), tensorflow::error::CANCELLED);
245 StatusOr<int> original(Status(tensorflow::error::CANCELLED, ""));
268 StatusOr<int> original(Status(tensorflow::error::CANCELLED, ""));
283 StatusOr<int> source(Status(tensorflow::error::CANCELLED, ""));
292 StatusOr<int> bad(Status(tensorflow::error::CANCELLED, ""));
294 EXPECT_EQ(bad.status(), Status(tensorflow::error::CANCELLED, ""));
    [all...]
  /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...]
  /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;
  /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/core/lib/core/
status_test.cc 41 status = Status(error::CANCELLED, "Error message");
42 EXPECT_EQ(status.code(), error::CANCELLED);
errors.h 71 DECLARE_ERROR(Cancelled, CANCELLED)
  /hardware/interfaces/radio/1.0/vts/functional/
vts_test_util.cpp 28 RadioError::REQUEST_NOT_SUPPORTED, RadioError::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...]
  /external/protobuf/src/google/protobuf/util/internal/
json_stream_parser.cc 244 // If we were cancelled, save our state and try again later.
245 if (!finishing_ && result == util::Status::CANCELLED) {
285 return util::Status::CANCELLED;
324 return util::Status::CANCELLED;
393 return util::Status::CANCELLED;
410 return util::Status::CANCELLED;
427 return util::Status::CANCELLED;
521 return util::Status::CANCELLED;
671 if (result == util::Status::CANCELLED) {
672 // If we were cancelled, pop back off the ARRAY_MID so we don't try t
    [all...]
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/utils/
CancelWorkRunnable.java 19 import static androidx.work.State.CANCELLED;
77 workSpecDao.setState(CANCELLED, workSpecId);
188 // No need to call reschedule pending workers here as we just cancelled everything.
  /external/autotest/client/cros/cellular/pseudomodem/
register_cdma_machine.py 37 pm_errors.MMCoreError(pm_errors.MMCoreError.CANCELLED,
38 'Cancelled'))
  /external/tensorflow/tensorflow/c/
tf_status_helper.cc 29 case tensorflow::error::CANCELLED:

Completed in 1440 milliseconds

1 2 3 4 5 6 7 8 91011