Lines Matching refs:response
57 response = conformance_pb2.ConformanceResponse()
110 response.protobuf_payload = failure_set.SerializeToString()
111 return response
128 response.parse_error = str(e)
129 return response
139 response.parse_error = str(e)
140 return response
146 response.parse_error = str(e)
147 return response
156 response.protobuf_payload = test_message.SerializeToString()
160 response.json_payload = json_format.MessageToJson(test_message)
162 response.serialize_error = str(e)
163 return response
166 response.text_payload = text_format.MessageToString(
170 response.runtime_error = str(e)
172 return response
192 response = do_test(request)
194 serialized_response = response.SerializeToString()
200 sys.stderr.write("conformance_python: request=%s, response=%s\n" % (
202 response.ShortDebugString().c_str()))