Searched refs:serialized_response (Results 1 – 3 of 3) sorted by relevance
101 serialized_response = Conformance::ConformanceResponse.encode(response)102 STDOUT.write([serialized_response.length].pack('V'))103 STDOUT.write(serialized_response)
111 serialized_response = response.SerializeToString()112 sys.stdout.write(struct.pack("<I", len(serialized_response)))113 sys.stdout.write(serialized_response)
224 string serialized_response; in RunTest() local227 runner_->RunTest(test_name, serialized_request, &serialized_response); in RunTest()229 if (!response->ParseFromString(serialized_response)) { in RunTest()