Home
last modified time | relevance | path

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

/third_party/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, "", new CoreErrorDetailException("this Deb… in UnaryCall_StatusDebugErrorStringNotTransmittedFromServer()
[all …]
/third_party/grpc/src/ruby/lib/grpc/
Derrors.rb90 codes[UNAUTHENTICATED] = Unauthenticated
189 class Unauthenticated < BadStatus class
/third_party/grpc/src/csharp/Grpc.Core.Api/
DStatusCode.cs76 Unauthenticated = 16, enumerator