Home
last modified time | relevance | path

Searched refs:ClientStreaming (Results 1 – 22 of 22) sorted by relevance

/third_party/flatbuffers/grpc/src/compiler/
Dswift_generator.cc70 if (method->ClientStreaming()) { in GenerateClientFuncName()
116 if (method->ClientStreaming()) { in GenerateClientFuncBody()
245 if (method->ClientStreaming()) { in GenerateServerFuncName()
283 if (method->ClientStreaming()) { in GenerateServerExtensionBody()
Djava_generator.cc356 bool client_streaming = method->ClientStreaming() || method->BidiStreaming(); in PrintMethodFields()
549 bool client_streaming = method->ClientStreaming() || method->BidiStreaming(); in PrintStub()
711 return method1->ClientStreaming() < method2->ClientStreaming(); in CompareMethodClientStreaming()
760 if (method->ClientStreaming() || method->BidiStreaming()) { in PrintMethodHandlerClass()
794 if (!(method->ClientStreaming() || method->BidiStreaming())) { in PrintMethodHandlerClass()
930 bool client_streaming = method->ClientStreaming() || method->BidiStreaming(); in PrintBindServiceMethodBody()
Dts_generator.cc120 auto client_streaming = method->ClientStreaming() || method->BidiStreaming(); in GetStreamType()
272 method->ClientStreaming() || method->BidiStreaming(); in GenerateInterfaces()
312 if (method->ClientStreaming()) { in GenerateExportedInterface()
442 if (method->ClientStreaming()) { in GenerateClientInterface()
484 if (method->ClientStreaming()) { in GenerateClientClassInterface()
Dschema_interface.h73 virtual bool ClientStreaming() const = 0;
Dpython_generator.cc35 if (method->ClientStreaming()) in GenerateMethodType()
Dgo_generator.cc48 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming()
52 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming()
Dcpp_generator.cc55 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming()
59 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming()
/third_party/grpc/src/compiler/
Dpython_generator.cc138 method->ClientStreaming() ? "request_iterator" : "request"; in PrintBetaServicer()
174 method->ClientStreaming() ? "request_iterator" : "request"; in PrintBetaStub()
218 std::string(method->ClientStreaming() ? "stream_" : "unary_") + in PrintBetaServerFactory()
327 std::string(method->ClientStreaming() ? "STREAM" : "UNARY") + "_" + in PrintBetaStubFactory()
434 std::string(method->ClientStreaming() ? "stream" : "unary") + "_" + in PrintStub()
490 method->ClientStreaming() ? "request_iterator" : "request"; in PrintServicer()
526 std::string(method->ClientStreaming() ? "stream" : "unary") + "_" + in PrintAddServicerToServer()
619 method->ClientStreaming() ? "request_iterator" : "request"); in PrintServiceClass()
639 std::string(method->ClientStreaming() ? "stream" : "unary") + "_" + in PrintServiceClass()
Dschema_interface.h74 virtual bool ClientStreaming() const = 0;
Dprotobuf_plugin.h81 bool ClientStreaming() const { return method_->client_streaming(); } in ClientStreaming() function
Dcpp_generator.cc36 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming()
40 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming()
/third_party/grpc/src/csharp/Grpc.Core.Api/
DMethod.cs33 ClientStreaming, enumerator
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DMethodDescriptor.cs66 public bool IsClientStreaming { get { return proto.ClientStreaming; } }
DDescriptor.cs4404 public bool ClientStreaming { property in Google.Protobuf.Reflection.MethodDescriptorProto
4466 if (ClientStreaming != other.ClientStreaming) return false; in Equals()
4478 if (HasClientStreaming) hash ^= ClientStreaming.GetHashCode(); in GetHashCode()
4514 output.WriteBool(ClientStreaming); in WriteTo()
4547 output.WriteBool(ClientStreaming); in IBufferMessage.InternalWriteTo()
4607 ClientStreaming = other.ClientStreaming; in MergeFrom()
4646 ClientStreaming = input.ReadBool(); in MergeFrom()
4687 ClientStreaming = input.ReadBool(); in IBufferMessage.InternalMergeFrom()
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DInteropClientServerTest.cs81 public async Task ClientStreaming() in ClientStreaming() method in Grpc.IntegrationTesting.InteropClientServerTest
DBenchmarkServiceGrpc.cs80 grpc::MethodType.ClientStreaming,
DTestGrpc.cs104 grpc::MethodType.ClientStreaming,
/third_party/grpc/src/csharp/Grpc.Core.Tests/
DMockServiceHelper.cs69 MethodType.ClientStreaming, in MockServiceHelper()
/third_party/grpc/src/csharp/Grpc.Core.Tests/Interceptors/
DClientInterceptorTest.cs125 …voker.AsyncClientStreamingCall(new Method<string, string>(MethodType.ClientStreaming, MockServiceH… in CountNumberOfRequestsInClientInterceptors()
/third_party/grpc/src/csharp/Grpc.Examples/
DMathGrpc.cs87 grpc::MethodType.ClientStreaming,
/third_party/flatbuffers/src/
Didl_gen_grpc.cpp101 bool ClientStreaming() const { return streaming_ == kClient; } in ClientStreaming() function in flatbuffers::FlatBufMethod
/third_party/grpc/src/objective-c/tests/InteropTests/
DInteropTests.m907 __weak XCTestExpectation *expectation = [self expectationWithDescription:@"ClientStreaming"];