Searched refs:serialized_response (Results 1 - 3 of 3) sorted by relevance

/external/protobuf/conformance/
H A Dconformance_ruby.rb101 serialized_response = Conformance::ConformanceResponse.encode(response)
102 STDOUT.write([serialized_response.length].pack('V'))
103 STDOUT.write(serialized_response)
H A Dconformance_python.py111 serialized_response = response.SerializeToString()
112 sys.stdout.write(struct.pack("<I", len(serialized_response)))
113 sys.stdout.write(serialized_response)
H A Dconformance_test.cc224 string serialized_response; local
227 runner_->RunTest(test_name, serialized_request, &serialized_response);
229 if (!response->ParseFromString(serialized_response)) {

Completed in 73 milliseconds