/third_party/flatbuffers/grpc/src/compiler/ |
D | swift_generator.cc | 70 if (method->ClientStreaming()) { in GenerateClientFuncName() 116 if (method->ClientStreaming()) { in GenerateClientFuncBody() 245 if (method->ClientStreaming()) { in GenerateServerFuncName() 283 if (method->ClientStreaming()) { in GenerateServerExtensionBody()
|
D | java_generator.cc | 356 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()
|
D | ts_generator.cc | 120 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()
|
D | schema_interface.h | 73 virtual bool ClientStreaming() const = 0;
|
D | python_generator.cc | 35 if (method->ClientStreaming()) in GenerateMethodType()
|
D | go_generator.cc | 48 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 52 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming()
|
D | cpp_generator.cc | 55 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 59 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming()
|
/third_party/grpc/src/compiler/ |
D | python_generator.cc | 138 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()
|
D | schema_interface.h | 74 virtual bool ClientStreaming() const = 0;
|
D | protobuf_plugin.h | 81 bool ClientStreaming() const { return method_->client_streaming(); } in ClientStreaming() function
|
D | cpp_generator.cc | 36 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 40 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming()
|
/third_party/grpc/src/csharp/Grpc.Core.Api/ |
D | Method.cs | 33 ClientStreaming, enumerator
|
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | MethodDescriptor.cs | 66 public bool IsClientStreaming { get { return proto.ClientStreaming; } }
|
D | Descriptor.cs | 4404 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/ |
D | InteropClientServerTest.cs | 81 public async Task ClientStreaming() in ClientStreaming() method in Grpc.IntegrationTesting.InteropClientServerTest
|
D | BenchmarkServiceGrpc.cs | 80 grpc::MethodType.ClientStreaming,
|
D | TestGrpc.cs | 104 grpc::MethodType.ClientStreaming,
|
/third_party/grpc/src/csharp/Grpc.Core.Tests/ |
D | MockServiceHelper.cs | 69 MethodType.ClientStreaming, in MockServiceHelper()
|
/third_party/grpc/src/csharp/Grpc.Core.Tests/Interceptors/ |
D | ClientInterceptorTest.cs | 125 …voker.AsyncClientStreamingCall(new Method<string, string>(MethodType.ClientStreaming, MockServiceH… in CountNumberOfRequestsInClientInterceptors()
|
/third_party/grpc/src/csharp/Grpc.Examples/ |
D | MathGrpc.cs | 87 grpc::MethodType.ClientStreaming,
|
/third_party/flatbuffers/src/ |
D | idl_gen_grpc.cpp | 101 bool ClientStreaming() const { return streaming_ == kClient; } in ClientStreaming() function in flatbuffers::FlatBufMethod
|
/third_party/grpc/src/objective-c/tests/InteropTests/ |
D | InteropTests.m | 907 __weak XCTestExpectation *expectation = [self expectationWithDescription:@"ClientStreaming"];
|