Home
last modified time | relevance | path

Searched refs:Unauthenticated (Results 1 – 8 of 8) sorted by relevance

/external/grpc-grpc/src/csharp/Grpc.Core.Tests/
DClientServerTest.cs90 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/
Dcodes.go146 Unauthenticated Code = 16 const
168 `"UNAUTHENTICATED"`: Unauthenticated,
Dcode_string.go57 case Unauthenticated:
/external/grpc-grpc/src/ruby/lib/grpc/
Derrors.rb64 codes[UNAUTHENTICATED] = Unauthenticated
140 class Unauthenticated < BadStatus class
/external/grpc-grpc/src/csharp/Grpc.Core/
DStatusCode.cs76 Unauthenticated = 16, enumerator
/external/tensorflow/tensorflow/core/lib/core/
Derrors.h118 DECLARE_ERROR(Unauthenticated, UNAUTHENTICATED) in DECLARE_ERROR()
/external/syzkaller/vendor/google.golang.org/grpc/transport/
Dhttp_util.go86 http.StatusUnauthorized: codes.Unauthenticated,
Dhttp2_client.go467 return nil, streamErrorf(codes.Unauthenticated, "transport: %v", err)
485 …return nil, streamErrorf(codes.Unauthenticated, "transport: cannot send secure credentials on an i…