/external/grpc-grpc/src/compiler/ |
D | python_generator.cc | 180 if (!method->ServerStreaming()) { in PrintBetaStub() 212 grpc::string(method->ServerStreaming() ? "stream_" : "unary_") + in PrintBetaServerFactory() 319 grpc::string(method->ServerStreaming() ? "STREAM" : "UNARY"); in PrintBetaStubFactory() 424 grpc::string(method->ServerStreaming() ? "stream" : "unary"); in PrintStub() 514 grpc::string(method->ServerStreaming() ? "stream" : "unary") + in PrintAddServicerToServer()
|
D | schema_interface.h | 69 virtual bool ServerStreaming() const = 0;
|
D | protobuf_plugin.h | 82 bool ServerStreaming() const { return method_->server_streaming(); } in ServerStreaming() function
|
D | cpp_generator.cc | 36 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 40 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming()
|
/external/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | MethodDescriptor.cs | 68 public bool IsServerStreaming { get { return proto.ServerStreaming; } }
|
D | Descriptor.cs | 2372 public bool ServerStreaming { property in Google.Protobuf.Reflection.MethodDescriptorProto 2395 if (ServerStreaming != other.ServerStreaming) return false; in Equals() 2406 if (ServerStreaming != false) hash ^= ServerStreaming.GetHashCode(); in GetHashCode() 2435 if (ServerStreaming != false) { in WriteTo() 2437 output.WriteBool(ServerStreaming); in WriteTo() 2458 if (ServerStreaming != false) { in CalculateSize() 2486 if (other.ServerStreaming != false) { in MergeFrom() 2487 ServerStreaming = other.ServerStreaming; in MergeFrom() 2522 ServerStreaming = input.ReadBool(); in MergeFrom()
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | Method.cs | 36 ServerStreaming, enumerator
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | InteropClientServerTest.cs | 87 public async Task ServerStreaming() in ServerStreaming() method in Grpc.IntegrationTesting.InteropClientServerTest
|
D | MetricsGrpc.cs | 41 grpc::MethodType.ServerStreaming,
|
D | BenchmarkServiceGrpc.cs | 57 grpc::MethodType.ServerStreaming,
|
D | TestGrpc.cs | 67 grpc::MethodType.ServerStreaming,
|
/external/flatbuffers/grpc/src/compiler/ |
D | schema_interface.h | 84 virtual bool ServerStreaming() const = 0;
|
D | go_generator.cc | 48 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 52 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming()
|
D | java_generator.cc | 357 bool server_streaming = method->ServerStreaming() || method->BidiStreaming(); in PrintMethodFields() 550 bool server_streaming = method->ServerStreaming() || method->BidiStreaming(); in PrintStub() 931 bool server_streaming = method->ServerStreaming() || method->BidiStreaming(); in PrintBindServiceMethodBody()
|
D | cpp_generator.cc | 55 return method->ClientStreaming() && !method->ServerStreaming(); in ClientOnlyStreaming() 59 return !method->ClientStreaming() && method->ServerStreaming(); in ServerOnlyStreaming()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | MockServiceHelper.cs | 76 MethodType.ServerStreaming, in MockServiceHelper()
|
/external/grpc-grpc/src/csharp/Grpc.Examples/ |
D | MathGrpc.cs | 50 grpc::MethodType.ServerStreaming,
|
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/ |
D | RouteGuideGrpc.cs | 47 grpc::MethodType.ServerStreaming,
|
/external/flatbuffers/src/ |
D | idl_gen_grpc.cpp | 91 bool ServerStreaming() const { return streaming_ == kServer; } in ServerStreaming() function in flatbuffers::FlatBufMethod
|
/external/golang-protobuf/protoc-gen-go/descriptor/ |
D | descriptor.pb.go | 1228 …ServerStreaming *bool `protobuf:"varint,6,opt,name=server_streaming,json=serverStreaming,d… member 1298 if m != nil && m.ServerStreaming != nil { 1299 return *m.ServerStreaming
|
/external/syzkaller/vendor/github.com/golang/protobuf/protoc-gen-go/descriptor/ |
D | descriptor.pb.go | 1190 …ServerStreaming *bool `protobuf:"varint,6,opt,name=server_streaming,json=serverStreaming,d… member 1259 if m != nil && m.ServerStreaming != nil { 1260 return *m.ServerStreaming
|
/external/grpc-grpc/src/objective-c/tests/ |
D | InteropTests.m | 299 __weak XCTestExpectation *expectation = [self expectationWithDescription:@"ServerStreaming"];
|