Home
last modified time | relevance | path

Searched refs:response_text (Results 1 – 3 of 3) sorted by relevance

/third_party/grpc/test/core/http/
Dparser_test.cc98 const char* response_text, int expect_status, in test_succeeds() argument
101 grpc_slice input_slice = grpc_slice_from_copied_string(response_text); in test_succeeds()
153 const char* response_text) { in test_fails() argument
155 grpc_slice input_slice = grpc_slice_from_copied_string(response_text); in test_fails()
/third_party/python/Lib/test/
Dtest_httplib.py2019 response_text = (
2026 self.conn._create_connection = self._create_connection(response_text)
2031 def _create_connection(self, response_text): argument
2033 return FakeSocket(response_text, host=address[0], port=address[1])
2095 response_text = 'HTTP/1.0 200 OK\r\n{}\r\n\r\n'.format(expected_header)
2098 self.conn._create_connection = self._create_connection(response_text)
/third_party/grpc/test/cpp/util/
Dgrpc_tool.cc695 std::string response_text = parser->GetFormattedStringFromMethod( in CallMethod() local
702 if (!callback(response_text)) { in CallMethod()