Home
last modified time | relevance | path

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

/external/grpc-grpc/test/cpp/interop/
Dinterop_client.cc162 if (!AssertStatusOk(s, context.debug_error_string())) { in DoEmpty()
192 if (!AssertStatusOk(s, context.debug_error_string())) { in PerformLargeUnary()
242 if (!AssertStatusOk(s, context.debug_error_string())) { in DoOauth2AuthToken()
270 if (!AssertStatusOk(s, context.debug_error_string())) { in DoPerRpcCreds()
413 if (!AssertStatusOk(s, context.debug_error_string())) { in DoRequestStreaming()
452 if (!AssertStatusOk(s, context.debug_error_string())) { in DoResponseStreaming()
517 if (!AssertStatusOk(s, context.debug_error_string())) { in DoClientCompressedStreaming()
579 if (!AssertStatusOk(s, context.debug_error_string())) { in DoServerCompressedStreaming()
620 if (!AssertStatusOk(s, context.debug_error_string())) { in DoResponseStreamingWithSlowConsumer()
667 if (!AssertStatusOk(s, context.debug_error_string())) { in DoHalfDuplex()
[all …]
/external/grpc-grpc/include/grpcpp/impl/codegen/
Dclient_context.h367 grpc::string debug_error_string() const { return debug_error_string_; } in debug_error_string() function
398 void set_debug_error_string(const grpc::string& debug_error_string) { in set_debug_error_string() argument
399 debug_error_string_ = debug_error_string; in set_debug_error_string()
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_state.h122 << context_->debug_error_string(); in OnCompleted()
135 context_->debug_error_string())); in OnCompleted()
Dgrpc_remote_master.cc157 << ctx.debug_error_string() << "\", maybe retrying the RPC";
177 return errors::DeadlineExceeded(ctx.debug_error_string());
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/
D_rpc_test.py228 self.assertEqual("", call.debug_error_string())
712 debug_error_string = exception_context.exception.debug_error_string()
713 self.assertIn("created", debug_error_string)
714 self.assertIn("description", debug_error_string)
715 self.assertIn("file", debug_error_string)
716 self.assertIn("file_line", debug_error_string)
/external/grpc-grpc/src/python/grpcio/grpc/
D_channel.py108 self.debug_error_string = None
159 state.debug_error_string = batch_operation.error_string()
411 def debug_error_string(self): member in _Rendezvous
413 while self._state.debug_error_string is None:
415 return _common.decode(self._state.debug_error_string)
427 self._state.debug_error_string)
/external/grpc-grpc/test/cpp/end2end/
Dend2end_test.cc745 EXPECT_TRUE(context.debug_error_string().empty()); in TEST_P()
1243 EXPECT_TRUE(context.debug_error_string().find("created") != in TEST_P()
1245 EXPECT_TRUE(context.debug_error_string().find("file") != std::string::npos); in TEST_P()
1246 EXPECT_TRUE(context.debug_error_string().find("line") != std::string::npos); in TEST_P()
1247 EXPECT_TRUE(context.debug_error_string().find("status") != in TEST_P()
1249 EXPECT_TRUE(context.debug_error_string().find("13") != std::string::npos); in TEST_P()