Home
last modified time | relevance | path

Searched refs:response_streaming (Results 1 – 14 of 14) sorted by relevance

/external/grpc-grpc/src/python/grpcio_tests/tests/unit/
D_compression_test.py45 def __init__(self, request_streaming, response_streaming): argument
47 self.response_streaming = response_streaming
54 if self.request_streaming and self.response_streaming:
56 elif not self.request_streaming and not self.response_streaming:
D_empty_message_test.py53 def __init__(self, request_streaming, response_streaming): argument
55 self.response_streaming = response_streaming
62 if self.request_streaming and self.response_streaming:
66 elif self.response_streaming:
D_metadata_test.py138 def __init__(self, test, request_streaming, response_streaming): argument
140 self.response_streaming = response_streaming
147 if self.request_streaming and self.response_streaming:
151 elif self.response_streaming:
D_exit_scenarios.py95 def __init__(self, request_streaming, response_streaming, partial_hang): argument
97 self.response_streaming = response_streaming
104 if self.request_streaming and self.response_streaming:
114 elif self.response_streaming:
D_resource_exhausted_test.py96 def __init__(self, trigger, request_streaming, response_streaming): argument
98 self.response_streaming = response_streaming
105 if self.request_streaming and self.response_streaming:
110 elif self.response_streaming:
D_invocation_defects_test.py116 def __init__(self, request_streaming, response_streaming, argument
120 self.response_streaming = response_streaming
D_interceptor_test.py116 def __init__(self, request_streaming, response_streaming, argument
120 self.response_streaming = response_streaming
D_channel_close_test.py33 response_streaming = True variable in _MethodHandler
D_rpc_test.py120 def __init__(self, request_streaming, response_streaming, argument
124 self.response_streaming = response_streaming
/external/grpc-grpc/examples/python/interceptors/headers/
Dheader_manipulator_client_interceptor.py33 response_streaming): argument
/external/protobuf/src/google/protobuf/
Dapi.pb.cc1209 if (this->response_streaming() != 0) { in SerializeWithCachedSizes()
1210 ::google::protobuf::internal::WireFormatLite::WriteBool(5, this->response_streaming(), output); in SerializeWithCachedSizes()
1270 if (this->response_streaming() != 0) { in SerializeWithCachedSizesToArray()
1271 …oogle::protobuf::internal::WireFormatLite::WriteBoolToArray(5, this->response_streaming(), target); in SerializeWithCachedSizesToArray()
1322 if (this->response_streaming() != 0) { in ByteSize()
1380 if (from.response_streaming() != 0) { in MergeFrom()
1381 set_response_streaming(from.response_streaming()); in MergeFrom()
1584 bool Method::response_streaming() const { in response_streaming() function in google::protobuf::Method
Dapi.pb.h297 bool response_streaming() const;
825 inline bool Method::response_streaming() const { in response_streaming() function
Dapi.proto109 bool response_streaming = 5; field
/external/grpc-grpc/src/python/grpcio/grpc/
D_server.py600 if method_handler.response_streaming:
607 if method_handler.response_streaming: