/aosp_15_r20/external/grpc-grpc/src/ruby/lib/grpc/ |
H A D | errors.rb | 43 debug_error_string = nil) argument 45 if debug_error_string 46 exception_message += ". debug_error_string:{#{debug_error_string}}" 52 @debug_error_string = debug_error_string 60 Struct::Status.new(code, details, metadata, debug_error_string) 80 debug_error_string = nil) argument 101 BadStatus.new(code, details, metadata, debug_error_string) 103 codes[code].new(details, metadata, debug_error_string) 112 debug_error_string = nil) argument 114 details, metadata, debug_error_string) [all …]
|
/aosp_15_r20/external/grpc-grpc/test/cpp/interop/ |
H A D | interop_client.cc | 231 if (!AssertStatusOk(s, context.debug_error_string())) { in DoEmpty() 261 if (!AssertStatusOk(s, context.debug_error_string())) { in PerformLargeUnary() 311 if (!AssertStatusOk(s, context.debug_error_string())) { in DoOauth2AuthToken() 339 if (!AssertStatusOk(s, context.debug_error_string())) { in DoPerRpcCreds() 500 if (!AssertStatusOk(s, context.debug_error_string())) { in DoRequestStreaming() 539 if (!AssertStatusOk(s, context.debug_error_string())) { in DoResponseStreaming() 604 return AssertStatusOk(s, context.debug_error_string()); in DoClientCompressedStreaming() 661 return AssertStatusOk(s, context.debug_error_string()); in DoServerCompressedStreaming() 699 if (!AssertStatusOk(s, context.debug_error_string())) { in DoResponseStreamingWithSlowConsumer() 746 if (!AssertStatusOk(s, context.debug_error_string())) { in DoHalfDuplex() [all …]
|
/aosp_15_r20/external/grpc-grpc/src/python/grpcio_tests/tests_aio/unit/ |
H A D | aio_rpc_error_test.py | 42 debug_error_string=_TEST_DEBUG_ERROR_STRING, 53 aio_rpc_error.debug_error_string(), _TEST_DEBUG_ERROR_STRING 62 debug_error_string=_TEST_DEBUG_ERROR_STRING, 75 loaded_error.debug_error_string(), _TEST_DEBUG_ERROR_STRING
|
H A D | client_stream_stream_interceptor_test.py | 110 self.assertEqual(await call.debug_error_string(), "") 155 self.assertEqual(await call.debug_error_string(), "") 200 self.assertEqual(await call.debug_error_string(), "")
|
H A D | client_stream_unary_interceptor_test.py | 106 self.assertEqual(await call.debug_error_string(), "") 151 self.assertEqual(await call.debug_error_string(), "") 263 self.assertEqual(await call.debug_error_string(), "")
|
H A D | client_unary_stream_interceptor_test.py | 113 self.assertEqual(await call.debug_error_string(), "")
|
/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/aio/ |
H A D | _call.py | 82 debug_error_string: Optional[str] = None, 99 self._debug_error_string = debug_error_string 133 def debug_error_string(self) -> str: member in AioRpcError 177 debug_error_string=status.debug_error_string(), 255 async def debug_error_string(self) -> str: member in Call 256 return (await self._cython_call.status()).debug_error_string()
|
H A D | _interceptor.py | 453 async def debug_error_string(self) -> Optional[str]: member in InterceptedCall 457 return err.debug_error_string() 461 return await call.debug_error_string() 1076 async def debug_error_string(self) -> Optional[str]: member in UnaryUnaryCallResponse 1129 async def debug_error_string(self) -> Optional[str]: member in _StreamCallResponseIterator 1130 return await self._call.debug_error_string()
|
/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/aio/ |
H A D | rpc_status.pyx.pxi | 25 str debug_error_string): argument 29 self._debug_error_string = debug_error_string 40 cpdef str debug_error_string(self): member in AioRpcStatus
|
H A D | rpc_status.pxd.pxi | 28 cpdef str debug_error_string(self) member in AioRpcStatus
|
/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/ |
H A D | _channel.py | 129 debug_error_string: Optional[str] 162 self.debug_error_string = None 227 state.debug_error_string = batch_operation.error_string() 368 rpc_state.debug_error_string, 394 self._state.debug_error_string = copy.copy(state.debug_error_string) 408 def debug_error_string(self) -> Optional[str]: member in _InactiveRpcError 409 return _common.decode(self._state.debug_error_string) 548 def debug_error_string(self) -> Optional[str]: member in _Rendezvous 778 def debug_error_string(self) -> Optional[str]: member in _SingleThreadedRendezvous 780 if self._state.debug_error_string is None: [all …]
|
/aosp_15_r20/external/grpc-grpc/src/python/grpcio_tests/tests/unit/ |
H A D | _rpc_part_1_test.py | 131 debug_error_string = exception_context.exception.debug_error_string() 132 self.assertIn("grpc_status", debug_error_string) 133 self.assertIn("grpc_message", debug_error_string)
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio/src/call/ |
D | mod.rs | 172 debug_error_string: String, field 214 debug_error_string: String, in with_details_and_error_string() 220 debug_error_string, in with_details_and_error_string() 253 pub fn debug_error_string(&self) -> &str { in debug_error_string() method 254 &self.debug_error_string in debug_error_string()
|
/aosp_15_r20/external/grpc-grpc/test/cpp/util/ |
H A D | channelz_sampler.cc | 136 get_channel_context.debug_error_string().c_str()); in GetChannelRPC() 155 get_subchannel_context.debug_error_string().c_str()); in GetSubchannelRPC() 173 get_socket_context.debug_error_string().c_str()); in GetSocketRPC() 334 get_servers_context.debug_error_string().c_str()); in GetServersRPC() 390 get_top_channels_context.debug_error_string().c_str()); in GetTopChannelsRPC()
|
H A D | proto_reflection_descriptor_database.cc | 58 ctx_.debug_error_string().c_str()); in ~ProtoReflectionDescriptorDatabase()
|
/aosp_15_r20/external/grpc-grpc/src/objective-c/tests/CppCronetTests/ |
H A D | CppCronetEnd2EndTests.mm | 217 XCTAssertTrue(context.debug_error_string().empty()); 485 XCTAssertTrue(context.debug_error_string().find("created") != std::string::npos); 486 XCTAssertTrue(context.debug_error_string().find("file") != std::string::npos); 487 XCTAssertTrue(context.debug_error_string().find("line") != std::string::npos); 488 XCTAssertTrue(context.debug_error_string().find("status") != std::string::npos); 489 XCTAssertTrue(context.debug_error_string().find("13") != std::string::npos);
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/ |
D | client_context.h | 413 std::string debug_error_string() const { return debug_error_string_; } in debug_error_string() function 454 void set_debug_error_string(const std::string& debug_error_string) { in set_debug_error_string() argument 455 debug_error_string_ = debug_error_string; in set_debug_error_string()
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/include/grpcpp/ |
D | client_context.h | 413 std::string debug_error_string() const { return debug_error_string_; } in debug_error_string() function 454 void set_debug_error_string(const std::string& debug_error_string) { in set_debug_error_string() argument 455 debug_error_string_ = debug_error_string; in set_debug_error_string()
|
/aosp_15_r20/external/grpc-grpc/include/grpcpp/ |
H A D | client_context.h | 413 std::string debug_error_string() const { return debug_error_string_; } in debug_error_string() function 454 void set_debug_error_string(const std::string& debug_error_string) { in set_debug_error_string() argument 455 debug_error_string_ = debug_error_string; in set_debug_error_string()
|
/aosp_15_r20/external/tensorflow/tensorflow/core/distributed_runtime/rpc/ |
H A D | grpc_remote_master.cc | 159 << ctx.debug_error_string() << "\", maybe retrying the RPC"; 179 return errors::DeadlineExceeded(ctx.debug_error_string());
|
H A D | grpc_state.h | 161 << context_->debug_error_string(); in OnCompleted() 180 strings::StrAppend(&error_msg, ":\n:", context_->debug_error_string()); in OnCompleted() 554 context_->debug_error_string())); in CallFinished()
|
/aosp_15_r20/external/grpc-grpc/test/cpp/end2end/xds/ |
H A D | xds_fault_injection_end2end_test.cc | 342 << context.debug_error_string(); in TEST_P() 532 << context.debug_error_string(); in TEST_P() 563 << context.debug_error_string(); in TEST_P()
|
/aosp_15_r20/external/grpc-grpc/test/cpp/end2end/ |
H A D | end2end_test.cc | 943 EXPECT_TRUE(context.debug_error_string().empty()); in TEST_P() 1520 EXPECT_TRUE(absl::StrContains(context.debug_error_string(), "created")); in TEST_P() 1523 EXPECT_TRUE(absl::StrContains(context.debug_error_string(), "file")); in TEST_P() 1524 EXPECT_TRUE(absl::StrContains(context.debug_error_string(), "line")); in TEST_P() 1526 EXPECT_TRUE(absl::StrContains(context.debug_error_string(), "status")); in TEST_P() 1527 EXPECT_TRUE(absl::StrContains(context.debug_error_string(), "13")); in TEST_P()
|
/aosp_15_r20/external/autotest/server/hosts/tls_client/ |
H A D | fake_omaha.py | 94 e.debug_error_string())
|
/aosp_15_r20/external/grpc-grpc/src/ruby/lib/grpc/generic/ |
H A D | active_call.rb | 31 status.debug_error_string)
|