/third_party/grpc/src/ruby/lib/grpc/ |
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 …]
|
/third_party/grpc/test/cpp/interop/ |
D | interop_client.cc | 166 if (!AssertStatusOk(s, context.debug_error_string())) { in DoEmpty() 196 if (!AssertStatusOk(s, context.debug_error_string())) { in PerformLargeUnary() 246 if (!AssertStatusOk(s, context.debug_error_string())) { in DoOauth2AuthToken() 274 if (!AssertStatusOk(s, context.debug_error_string())) { in DoPerRpcCreds() 435 if (!AssertStatusOk(s, context.debug_error_string())) { in DoRequestStreaming() 474 if (!AssertStatusOk(s, context.debug_error_string())) { in DoResponseStreaming() 539 if (!AssertStatusOk(s, context.debug_error_string())) { in DoClientCompressedStreaming() 600 if (!AssertStatusOk(s, context.debug_error_string())) { in DoServerCompressedStreaming() 641 if (!AssertStatusOk(s, context.debug_error_string())) { in DoResponseStreamingWithSlowConsumer() 688 if (!AssertStatusOk(s, context.debug_error_string())) { in DoHalfDuplex() [all …]
|
/third_party/grpc/src/python/grpcio_tests/tests/unit/ |
D | _rpc_part_1_test.py | 110 debug_error_string = exception_context.exception.debug_error_string() 111 self.assertIn('created', debug_error_string) 112 self.assertIn('description', debug_error_string) 113 self.assertIn('file', debug_error_string) 114 self.assertIn('file_line', debug_error_string)
|
D | _rpc_test.py | 293 self.assertEqual('', call.debug_error_string()) 715 debug_error_string = exception_context.exception.debug_error_string() 716 self.assertIn('created', debug_error_string) 717 self.assertIn('description', debug_error_string) 718 self.assertIn('file', debug_error_string) 719 self.assertIn('file_line', debug_error_string)
|
D | _rpc_part_2_test.py | 77 self.assertEqual('', call.debug_error_string())
|
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/aio/ |
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
|
D | rpc_status.pxd.pxi | 28 cpdef str debug_error_string(self) member in AioRpcStatus
|
D | call.pyx.pxi | 88 self._status.debug_error_string())
|
/third_party/grpc/src/python/grpcio_tests/tests_aio/unit/ |
D | aio_rpc_error_test.py | 39 debug_error_string=_TEST_DEBUG_ERROR_STRING) 46 self.assertEqual(aio_rpc_error.debug_error_string(),
|
D | client_stream_stream_interceptor_test.py | 104 self.assertEqual(await call.debug_error_string(), '') 146 self.assertEqual(await call.debug_error_string(), '') 189 self.assertEqual(await call.debug_error_string(), '')
|
D | client_stream_unary_interceptor_test.py | 98 self.assertEqual(await call.debug_error_string(), '') 137 self.assertEqual(await call.debug_error_string(), '') 236 self.assertEqual(await call.debug_error_string(), '')
|
D | client_unary_stream_interceptor_test.py | 102 self.assertEqual(await call.debug_error_string(), '')
|
D | client_unary_unary_interceptor_test.py | 269 self.assertEqual(await call.debug_error_string(), None)
|
/third_party/grpc/src/python/grpcio/grpc/experimental/aio/ |
D | _call.py | 73 debug_error_string: Optional[str] = None) -> None: 89 self._debug_error_string = debug_error_string 123 def debug_error_string(self) -> str: member in AioRpcError 151 debug_error_string=status.debug_error_string(), 223 async def debug_error_string(self) -> str: member in Call 224 return (await self._cython_call.status()).debug_error_string()
|
D | _interceptor.py | 414 async def debug_error_string(self) -> Optional[str]: member in InterceptedCall 418 return err.debug_error_string() 422 return await call.debug_error_string() 892 async def debug_error_string(self) -> Optional[str]: member in UnaryUnaryCallResponse 944 async def debug_error_string(self) -> Optional[str]: member in _StreamCallResponseIterator 945 return await self._call.debug_error_string()
|
/third_party/grpc/src/python/grpcio/grpc/aio/ |
D | _call.py | 73 debug_error_string: Optional[str] = None) -> None: 89 self._debug_error_string = debug_error_string 123 def debug_error_string(self) -> str: member in AioRpcError 151 debug_error_string=status.debug_error_string(), 223 async def debug_error_string(self) -> str: member in Call 224 return (await self._cython_call.status()).debug_error_string()
|
D | _interceptor.py | 413 async def debug_error_string(self) -> Optional[str]: member in InterceptedCall 417 return err.debug_error_string() 421 return await call.debug_error_string() 891 async def debug_error_string(self) -> Optional[str]: member in UnaryUnaryCallResponse 943 async def debug_error_string(self) -> Optional[str]: member in _StreamCallResponseIterator 944 return await self._call.debug_error_string()
|
/third_party/grpc/src/python/grpcio/grpc/ |
D | _channel.py | 105 self.debug_error_string = None 156 state.debug_error_string = batch_operation.error_string() 270 rpc_state.debug_error_string) 289 self._state.debug_error_string = copy.copy(state.debug_error_string) 303 def debug_error_string(self): member in _InactiveRpcError 304 return _common.decode(self._state.debug_error_string) 421 def debug_error_string(self): member in _Rendezvous 622 def debug_error_string(self): member in _SingleThreadedRendezvous 624 if self._state.debug_error_string is None: 627 return _common.decode(self._state.debug_error_string) [all …]
|
/third_party/grpc/include/grpcpp/impl/codegen/ |
D | client_context.h | 418 std::string debug_error_string() const { return debug_error_string_; } in debug_error_string() function 458 void set_debug_error_string(const std::string& debug_error_string) { in set_debug_error_string() argument 459 debug_error_string_ = debug_error_string; in set_debug_error_string()
|
D | client_context_impl.h | 411 std::string debug_error_string() const { return debug_error_string_; } in debug_error_string() function 450 void set_debug_error_string(const std::string& debug_error_string) { in set_debug_error_string() argument 451 debug_error_string_ = debug_error_string; in set_debug_error_string()
|
/third_party/grpc/test/cpp/ios/CronetTests/ |
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);
|
/third_party/grpc/test/cpp/end2end/ |
D | end2end_test.cc | 914 EXPECT_TRUE(context.debug_error_string().empty()); in TEST_P() 1460 EXPECT_TRUE(context.debug_error_string().find("created") != in TEST_P() 1462 EXPECT_TRUE(context.debug_error_string().find("file") != std::string::npos); in TEST_P() 1463 EXPECT_TRUE(context.debug_error_string().find("line") != std::string::npos); in TEST_P() 1464 EXPECT_TRUE(context.debug_error_string().find("status") != in TEST_P() 1466 EXPECT_TRUE(context.debug_error_string().find("13") != std::string::npos); in TEST_P()
|
/third_party/grpc/test/cpp/util/ |
D | proto_reflection_descriptor_database.cc | 56 ctx_.debug_error_string().c_str()); in ~ProtoReflectionDescriptorDatabase()
|
/third_party/grpc/src/ruby/lib/grpc/generic/ |
D | active_call.rb | 31 status.debug_error_string)
|