Searched refs:Unauthenticated (Results 1 – 17 of 17) 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/pigweed/pw_status/ |
D | status_with_size_test.cc | 123 static_assert(StatusWithSize::Unauthenticated().status() == Status::Unauthenticated()); in TEST() 141 static_assert(StatusWithSize::Unauthenticated(123).status() == Status::Unauthenticated()); in TEST() 161 static_assert(StatusWithSize::Unauthenticated().size() == 0u); in TEST() 181 static_assert(StatusWithSize::Unauthenticated(123).size() == 123u); in TEST() 208 static_assert(StatusWithSize::Unauthenticated().IsUnauthenticated()); in TEST()
|
D | status_test.cc | 71 static_assert(PW_STATUS_UNAUTHENTICATED == Status::Unauthenticated().code()); in TEST() 93 static_assert(PW_STATUS_UNAUTHENTICATED == Status::Unauthenticated()); in TEST() 112 static_assert(Status::Unauthenticated().IsUnauthenticated()); in TEST() 152 EXPECT_STREQ("UNAUTHENTICATED", Status::Unauthenticated().str()); in TEST()
|
D | docs.rst | 86 // Instead, use `Unauthenticated` for those errors. 163 // Unauthenticated (gRPC code "UNAUTHENTICATED") indicates that the request 166 pw::Status::Unauthenticated()
|
/external/pigweed/pw_rpc/nanopb/ |
D | method_lookup_test.cc | 43 return Status::Unauthenticated(); in TestRpc() 70 EXPECT_EQ(Status::Unauthenticated(), status); in TEST()
|
D | nanopb_method_union_test.cc | 72 return Status::Unauthenticated(); in AddFive() 127 EXPECT_EQ(response.status(), Status::Unauthenticated()); in TEST()
|
D | nanopb_method_test.cc | 136 return Status::Unauthenticated(); in AddFive() 174 EXPECT_EQ(response.status(), Status::Unauthenticated()); in TEST()
|
/external/grpc-grpc/src/ruby/lib/grpc/ |
D | errors.rb | 64 codes[UNAUTHENTICATED] = Unauthenticated 140 class Unauthenticated < BadStatus class
|
/external/pigweed/pw_rpc/raw/ |
D | raw_method_union_test.cc | 70 return StatusWithSize::Unauthenticated(payload.size()); in AddFive() 116 EXPECT_EQ(response.status(), Status::Unauthenticated()); in TEST()
|
D | codegen_test.cc | 137 test_request.WriteStatusCode(Status::Unauthenticated().code()); in TEST() 141 EXPECT_EQ(Status::Unauthenticated(), context.status()); in TEST()
|
D | raw_method_test.cc | 123 return StatusWithSize::Unauthenticated(payload.size()); in AddFive() 158 EXPECT_EQ(response.status(), Status::Unauthenticated()); in TEST()
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | StatusCode.cs | 76 Unauthenticated = 16, enumerator
|
/external/pigweed/pw_status/public/pw_status/ |
D | status_with_size.h | 71 static constexpr StatusWithSize Unauthenticated(size_t size = 0) { 72 return StatusWithSize(Status::Unauthenticated(), size);
|
D | status.h | 239 [[nodiscard]] static constexpr Status Unauthenticated() { in Unauthenticated() function
|
/external/pigweed/pw_rpc/ |
D | base_server_writer_test.cc | 133 context.output().set_send_status(Status::Unauthenticated()); in TEST() 135 EXPECT_EQ(Status::Unauthenticated(), writer.Finish()); in TEST()
|
/external/tensorflow/tensorflow/core/platform/ |
D | errors.h | 121 DECLARE_ERROR(Unauthenticated, UNAUTHENTICATED) in DECLARE_ERROR()
|
/external/pigweed/pw_kvs/ |
D | key_value_store_binary_format_test.cc | 253 FlashError::InRange(Status::Unauthenticated(), kEntry1.size())); in TEST_F() 466 FlashError::InRange(Status::Unauthenticated(), kEntry1.size())); in TEST_F()
|