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

1 2

  /external/grpc-grpc/src/cpp/util/
status.cc 24 const Status& Status::CANCELLED = Status(StatusCode::CANCELLED, "");
  /external/grpc-grpc/include/grpcpp/impl/codegen/
status.h 40 StatusCode::CANCELLED == static_cast<StatusCode>(GRPC_STATUS_CANCELLED),
106 /// A CANCELLED pre-defined instance.
107 static const Status& CANCELLED;
status_code_enum.h 28 /// The operation was cancelled (typically by the caller).
29 CANCELLED = 1,
  /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;
  /external/grpc-grpc-java/core/src/test/java/io/grpc/
StatusTest.java 36 assertEquals("CANCELLED: This is a test",
37 Status.CANCELLED.withDescription("This is a test").asRuntimeException().getMessage());
39 assertEquals("CANCELLED: This is a test",
40 Status.CANCELLED.withDescription("This is a test").asException().getMessage());
50 assertSame(Status.CANCELLED, Status.CANCELLED.withCause(null));
55 assertSame(Status.CANCELLED, Status.CANCELLED.withDescription(null));
56 assertSame(Status.CANCELLED, Status.CANCELLED.augmentDescription(null))
    [all...]
  /external/libchrome/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/grpc-grpc/src/python/grpcio/grpc/framework/interfaces/base/
base.py 77 CANCELLED = '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...]
  /external/opencensus-java/api/src/main/java/io/opencensus/trace/
Status.java 58 * The operation was cancelled (typically by the caller).
62 CANCELLED(1),
263 * The operation was cancelled (typically by the caller).
267 public static final Status CANCELLED = CanonicalCode.CANCELLED.toStatus();
  /external/grpc-grpc/src/python/grpcio/grpc/framework/interfaces/face/
face.py 85 CANCELLED = 'cancelled'
120 """Indicates that an RPC has been 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."""
207 cancelled). If any given Futures are duplicated, they will be returned
272 cancelled
367 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 164 CANCELLED = error_codes_pb2.CANCELLED
165 tf_export("errors.CANCELLED").export_constant(__name__, "CANCELLED")
206 """Raised when an operation or step is cancelled.
210 cancelled by running another operation (e.g.
221 super(CancelledError, self).__init__(node_def, op, message, CANCELLED)
483 CANCELLED: CancelledError,
  /external/grpc-grpc-java/core/src/main/java/io/grpc/
Status.java 66 * The operation was cancelled (typically by the caller).
68 CANCELLED(1),
248 /** The operation was cancelled (typically by the caller). */
249 public static final Status CANCELLED = Code.CANCELLED.toStatus();
  /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;
  /external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/
NettyClientStreamTest.java 150 stream().cancel(Status.CANCELLED);
154 assertEquals(commandCaptor.getValue().reason(), Status.CANCELLED);
170 stream().cancel(Status.CANCELLED);
377 Metadata trailers = Utils.convertTrailers(grpcResponseTrailers(Status.CANCELLED));
378 stream().transportState().transportReportStatus(Status.CANCELLED, true, trailers);
385 verify(listener).closed(eq(Status.CANCELLED), same(PROCESSED), eq(trailers));
524 stream().cancel(Status.CANCELLED);
NettyClientHandlerTest.java 199 cancelStream(Status.CANCELLED);
202 verify(streamListener).closed(eq(Status.CANCELLED), same(PROCESSED), any(Metadata.class));
215 cancelStream(Status.CANCELLED);
241 ChannelFuture cancelFuture = cancelStream(Status.CANCELLED);
256 cancelStream(Status.CANCELLED);
261 ChannelFuture future = cancelStream(Status.CANCELLED);
274 ChannelFuture future = cancelStream(Status.CANCELLED);
383 assertEquals(Status.CANCELLED.getCode(), captor.getValue().getCode());
399 assertEquals(Status.CANCELLED.getCode(), status.getCode());
414 assertEquals(Status.CANCELLED.getCode(), status.getCode())
    [all...]
  /external/grpc-grpc/src/python/grpcio/grpc/
__init__.py 32 """Indicates that the computation underlying a Future was cancelled."""
60 def cancelled(self): member in class:Future
61 """Describes whether the computation was cancelled.
67 Returns True if the computation was cancelled before its result became
70 1. computation was not cancelled.
85 Returns False if the computation already executed or was cancelled.
97 Returns True if the computation already executed or was cancelled.
112 finish or be cancelled. If None, the call will block until the
121 FutureCancelledError: If the computation was cancelled.
135 terminate or be cancelled. If None, the call will block until th
    [all...]
  /external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
ClientCallImplTest.java 197 assertThat(callListenerStatus.getCode()).isEqualTo(Status.Code.CANCELLED);
232 assertThat(callListenerStatus.getCode()).isEqualTo(Status.Code.CANCELLED);
267 assertThat(callListenerStatus.getCode()).isEqualTo(Status.Code.CANCELLED);
602 assertEquals(Status.Code.CANCELLED, streamStatus.getCode());
635 assertEquals(Status.Code.CANCELLED, status.getCode());
648 fail("Call has been cancelled");
847 // Run the deadline timer, which should have been cancelled by the previous call to cancel()
852 assertEquals(Status.CANCELLED.getCode(), statusCaptor.getValue().getCode());
    [all...]
RetriableStreamTest.java 357 retriableStream.cancel(Status.CANCELLED);
392 retriableStream.cancel(Status.CANCELLED);
471 retriableStream.cancel(Status.CANCELLED);
476 assertEquals(Status.CANCELLED.getCode(), statusCaptor.getValue().getCode());
510 retriableStream.cancel(Status.CANCELLED);
515 assertEquals(Status.CANCELLED.getCode(), statusCaptor.getValue().getCode());
546 retriableStream.cancel(Status.CANCELLED);
582 retriableStream.cancel(Status.CANCELLED);
605 retriableStream.cancel(Status.CANCELLED);
618 final Status cancelStatus = Status.CANCELLED.withDescription("c")
    [all...]
CensusModulesTest.java     [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...]
  /external/grpc-grpc-java/okhttp/src/test/java/io/grpc/okhttp/
OkHttpClientTransportTest.java 476 getStream(3).cancel(Status.CANCELLED);
499 getStream(3).cancel(Status.CANCELLED);
518 getStream(3).cancel(Status.CANCELLED);
552 stream.cancel(Status.CANCELLED);
633 stream1.cancel(Status.CANCELLED);
639 stream2.cancel(Status.CANCELLED);
672 getStream(3).cancel(Status.CANCELLED);
712 stream.cancel(Status.CANCELLED);
758 stream.cancel(Status.CANCELLED);
792 stream.cancel(Status.CANCELLED);
    [all...]

Completed in 2990 milliseconds

1 2