Searched refs:Unauthenticated (Results 1 – 8 of 8) sorted by relevance
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | ClientServerTest.cs | 90 throw new RpcException(new Status(StatusCode.Unauthenticated, "")); in UnaryCall_ServerHandlerThrowsRpcException() 94 Assert.AreEqual(StatusCode.Unauthenticated, ex.Status.StatusCode); in UnaryCall_ServerHandlerThrowsRpcException() 98 Assert.AreEqual(StatusCode.Unauthenticated, ex2.Status.StatusCode); in UnaryCall_ServerHandlerThrowsRpcException() 108 throw new RpcException(new Status(StatusCode.Unauthenticated, ""), trailers); in UnaryCall_ServerHandlerThrowsRpcExceptionWithTrailers() 112 Assert.AreEqual(StatusCode.Unauthenticated, ex.Status.StatusCode); in UnaryCall_ServerHandlerThrowsRpcExceptionWithTrailers() 118 Assert.AreEqual(StatusCode.Unauthenticated, ex2.Status.StatusCode); in UnaryCall_ServerHandlerThrowsRpcExceptionWithTrailers() 129 context.Status = new Status(StatusCode.Unauthenticated, ""); in UnaryCall_ServerHandlerSetsStatus() 134 Assert.AreEqual(StatusCode.Unauthenticated, ex.Status.StatusCode); in UnaryCall_ServerHandlerSetsStatus() 138 Assert.AreEqual(StatusCode.Unauthenticated, ex2.Status.StatusCode); in UnaryCall_ServerHandlerSetsStatus() 147 context.Status = new Status(StatusCode.Unauthenticated, ""); in UnaryCall_ServerHandlerSetsStatusAndTrailers() [all …]
|
/external/syzkaller/vendor/google.golang.org/grpc/codes/ |
D | codes.go | 146 Unauthenticated Code = 16 const 168 `"UNAUTHENTICATED"`: Unauthenticated,
|
D | code_string.go | 57 case Unauthenticated:
|
/external/grpc-grpc/src/ruby/lib/grpc/ |
D | errors.rb | 64 codes[UNAUTHENTICATED] = Unauthenticated 140 class Unauthenticated < BadStatus class
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | StatusCode.cs | 76 Unauthenticated = 16, enumerator
|
/external/tensorflow/tensorflow/core/lib/core/ |
D | errors.h | 118 DECLARE_ERROR(Unauthenticated, UNAUTHENTICATED) in DECLARE_ERROR()
|
/external/syzkaller/vendor/google.golang.org/grpc/transport/ |
D | http_util.go | 86 http.StatusUnauthorized: codes.Unauthenticated,
|
D | http2_client.go | 467 return nil, streamErrorf(codes.Unauthenticated, "transport: %v", err) 485 …return nil, streamErrorf(codes.Unauthenticated, "transport: cannot send secure credentials on an i…
|