Home
last modified time | relevance | path

Searched refs:debug_error_string (Results 1 – 25 of 29) sorted by relevance

12

/aosp_15_r20/external/grpc-grpc/src/ruby/lib/grpc/
H A Derrors.rb43 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 Dinterop_client.cc231 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 Daio_rpc_error_test.py42 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 Dclient_stream_stream_interceptor_test.py110 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 Dclient_stream_unary_interceptor_test.py106 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 Dclient_unary_stream_interceptor_test.py113 self.assertEqual(await call.debug_error_string(), "")
/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/aio/
H A D_call.py82 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.py453 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 Drpc_status.pyx.pxi25 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 Drpc_status.pxd.pxi28 cpdef str debug_error_string(self) member in AioRpcStatus
/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/
H A D_channel.py129 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.py131 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/
Dmod.rs172 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 Dchannelz_sampler.cc136 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 Dproto_reflection_descriptor_database.cc58 ctx_.debug_error_string().c_str()); in ~ProtoReflectionDescriptorDatabase()
/aosp_15_r20/external/grpc-grpc/src/objective-c/tests/CppCronetTests/
H A DCppCronetEnd2EndTests.mm217 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/
Dclient_context.h413 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/
Dclient_context.h413 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 Dclient_context.h413 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 Dgrpc_remote_master.cc159 << ctx.debug_error_string() << "\", maybe retrying the RPC";
179 return errors::DeadlineExceeded(ctx.debug_error_string());
H A Dgrpc_state.h161 << 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 Dxds_fault_injection_end2end_test.cc342 << 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 Dend2end_test.cc943 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 Dfake_omaha.py94 e.debug_error_string())
/aosp_15_r20/external/grpc-grpc/src/ruby/lib/grpc/generic/
H A Dactive_call.rb31 status.debug_error_string)

12