/external/grpc-grpc/src/compiler/ |
D | python_generator.cc | 131 method->ClientStreaming() ? "request_iterator" : "request"; in PrintBetaServicer() 167 method->ClientStreaming() ? "request_iterator" : "request"; in PrintBetaStub() 211 grpc::string(method->ClientStreaming() ? "stream_" : "unary_") + in PrintBetaServerFactory() 318 grpc::string(method->ClientStreaming() ? "STREAM" : "UNARY") + "_" + in PrintBetaStubFactory() 423 grpc::string(method->ClientStreaming() ? "stream" : "unary") + "_" + in PrintStub() 477 method->ClientStreaming() ? "request_iterator" : "request"; in PrintServicer() 513 grpc::string(method->ClientStreaming() ? "stream" : "unary") + "_" + in PrintAddServicerToServer()
|
D | schema_interface.h | 68 virtual bool ClientStreaming() const = 0;
|
D | protobuf_plugin.h | 80 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()
|
/external/flatbuffers/grpc/src/compiler/ |
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 | schema_interface.h | 83 virtual bool ClientStreaming() const = 0;
|
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()
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | MethodDescriptor.cs | 63 public bool IsClientStreaming { get { return proto.ClientStreaming; } }
|
D | Descriptor.cs | 2359 public bool ClientStreaming { property in Google.Protobuf.Reflection.MethodDescriptorProto 2394 if (ClientStreaming != other.ClientStreaming) return false; in Equals() 2405 if (ClientStreaming != false) hash ^= ClientStreaming.GetHashCode(); in GetHashCode() 2431 if (ClientStreaming != false) { in WriteTo() 2433 output.WriteBool(ClientStreaming); in WriteTo() 2455 if (ClientStreaming != false) { in CalculateSize() 2483 if (other.ClientStreaming != false) { in MergeFrom() 2484 ClientStreaming = other.ClientStreaming; in MergeFrom() 2518 ClientStreaming = input.ReadBool(); in MergeFrom()
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | Method.cs | 33 ClientStreaming, enumerator
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | InteropClientServerTest.cs | 81 public async Task ClientStreaming() in ClientStreaming() method in Grpc.IntegrationTesting.InteropClientServerTest
|
D | BenchmarkServiceGrpc.cs | 50 grpc::MethodType.ClientStreaming,
|
D | TestGrpc.cs | 74 grpc::MethodType.ClientStreaming,
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | MockServiceHelper.cs | 69 MethodType.ClientStreaming, in MockServiceHelper()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/Interceptors/ |
D | ClientInterceptorTest.cs | 125 …voker.AsyncClientStreamingCall(new Method<string, string>(MethodType.ClientStreaming, MockServiceH… in CountNumberOfRequestsInClientInterceptors()
|
/external/grpc-grpc/src/csharp/Grpc.Examples/ |
D | MathGrpc.cs | 57 grpc::MethodType.ClientStreaming,
|
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/ |
D | RouteGuideGrpc.cs | 54 grpc::MethodType.ClientStreaming,
|
/external/flatbuffers/src/ |
D | idl_gen_grpc.cpp | 89 bool ClientStreaming() const { return streaming_ == kClient; } in ClientStreaming() function in flatbuffers::FlatBufMethod
|
/external/golang-protobuf/protoc-gen-go/descriptor/ |
D | descriptor.pb.go | 1226 …ClientStreaming *bool `protobuf:"varint,5,opt,name=client_streaming,json=clientStreaming,def=0" js… member 1291 if m != nil && m.ClientStreaming != nil { 1292 return *m.ClientStreaming
|
/external/syzkaller/vendor/github.com/golang/protobuf/protoc-gen-go/descriptor/ |
D | descriptor.pb.go | 1188 …ClientStreaming *bool `protobuf:"varint,5,opt,name=client_streaming,json=clientStreaming,def=0" js… member 1252 if m != nil && m.ClientStreaming != nil { 1253 return *m.ClientStreaming
|
/external/grpc-grpc/src/objective-c/tests/ |
D | InteropTests.m | 264 __weak XCTestExpectation *expectation = [self expectationWithDescription:@"ClientStreaming"];
|