Searched refs:serialized_response (Results 1 – 10 of 10) sorted by relevance
/third_party/protobuf/conformance/ |
D | conformance_ruby.rb | 116 serialized_response = Conformance::ConformanceResponse.encode(response) 117 STDOUT.write([serialized_response.length].pack('V')) 118 STDOUT.write(serialized_response)
|
D | conformance_php.php | 104 $serialized_response = $response->serializeToString(); 105 fwrite(STDOUT, pack("V", strlen($serialized_response))); 106 fwrite(STDOUT, $serialized_response);
|
D | conformance_python.py | 194 serialized_response = response.SerializeToString() 195 sys.stdout.write(struct.pack("<I", len(serialized_response))) 196 sys.stdout.write(serialized_response)
|
D | conformance_test.cc | 318 string serialized_response; in RunTest() local 321 runner_->RunTest(test_name, serialized_request, &serialized_response); in RunTest() 323 if (!response->ParseFromString(serialized_response)) { in RunTest()
|
/third_party/grpc/src/python/grpcio/grpc/ |
D | _server.py | 470 serialized_response = _common.serialize(response, response_serializer) 471 if serialized_response is None: 477 return serialized_response 492 def _send_response(rpc_event, state, serialized_response): argument 501 serialized_response, 508 serialized_response, 521 def _status(rpc_event, state, serialized_response): argument 533 if serialized_response is not None: 536 serialized_response, 555 serialized_response = _serialize_response( [all …]
|
D | _channel.py | 135 serialized_response = batch_operation.message() 136 if serialized_response is not None: 137 response = _common.deserialize(serialized_response,
|
/third_party/grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/ |
D | load_balancer_api.cc | 158 bool GrpcLbResponseParse(const grpc_slice& serialized_response, in GrpcLbResponseParse() argument 163 GRPC_SLICE_START_PTR(serialized_response)), in GrpcLbResponseParse() 164 GRPC_SLICE_LENGTH(serialized_response), arena); in GrpcLbResponseParse()
|
D | load_balancer_api.h | 68 bool GrpcLbResponseParse(const grpc_slice& serialized_response,
|
/third_party/grpc/src/python/grpcio/grpc/aio/ |
D | _call.py | 497 serialized_response = await self._cython_call.unary_unary( 504 return _common.deserialize(serialized_response, 580 serialized_response = await self._cython_call.stream_unary( 587 return _common.deserialize(serialized_response,
|
/third_party/grpc/src/python/grpcio/grpc/experimental/aio/ |
D | _call.py | 498 serialized_response = await self._cython_call.unary_unary( 505 return _common.deserialize(serialized_response, 581 serialized_response = await self._cython_call.stream_unary( 588 return _common.deserialize(serialized_response,
|