/external/grpc-grpc/examples/csharp/HelloworldXamarin/iOS/ |
D | ViewController.cs | 46 var title = SayHello(); in ViewDidLoad() 57 private string SayHello() in SayHello() method in HelloworldXamarin.iOS.ViewController 71 var reply = client.SayHello(new HelloRequest { Name = user }); in SayHello() 85 … public override Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context) in SayHello() method in HelloworldXamarin.iOS.ViewController.GreeterImpl
|
/external/grpc-grpc/examples/csharp/HelloworldXamarin/Droid/ |
D | MainActivity.cs | 45 button.Click += delegate { SayHello(button); }; in OnCreate() 48 private void SayHello(Button button) in SayHello() method in HelloworldXamarin.Droid.MainActivity 64 var reply = client.SayHello(new HelloRequest { Name = user }); in SayHello() 77 … public override Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context) in SayHello() method in HelloworldXamarin.Droid.MainActivity.GreeterImpl
|
/external/grpc-grpc/examples/csharp/HelloworldLegacyCsproj/Greeter/ |
D | HelloworldGrpc.cs | 58 …public virtual global::System.Threading.Tasks.Task<global::Helloworld.HelloReply> SayHello(global:… in SayHello() method in Helloworld.Greeter.GreeterBase 96 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello() method in Helloworld.Greeter.GreeterClient 98 return SayHello(request, new grpc::CallOptions(headers, deadline, cancellationToken)); in SayHello() 106 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello() method in Helloworld.Greeter.GreeterClient 144 .AddMethod(__Method_SayHello, serviceImpl.SayHello).Build(); in BindService()
|
/external/grpc-grpc/examples/csharp/HelloworldXamarin/HelloworldXamarin/ |
D | HelloworldGrpc.cs | 59 …public virtual global::System.Threading.Tasks.Task<global::Helloworld.HelloReply> SayHello(global:… in SayHello() method in Helloworld.Greeter.GreeterBase 97 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello() method in Helloworld.Greeter.GreeterClient 99 return SayHello(request, new grpc::CallOptions(headers, deadline, cancellationToken)); in SayHello() 107 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello() method in Helloworld.Greeter.GreeterClient 145 .AddMethod(__Method_SayHello, serviceImpl.SayHello).Build(); in BindService()
|
/external/grpc-grpc/examples/csharp/Helloworld/Greeter/ |
D | HelloworldGrpc.cs | 58 …public virtual global::System.Threading.Tasks.Task<global::Helloworld.HelloReply> SayHello(global:… in SayHello() method in Helloworld.Greeter.GreeterBase 96 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello() method in Helloworld.Greeter.GreeterClient 98 return SayHello(request, new grpc::CallOptions(headers, deadline, cancellationToken)); in SayHello() 106 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello() method in Helloworld.Greeter.GreeterClient 144 .AddMethod(__Method_SayHello, serviceImpl.SayHello).Build(); in BindService()
|
/external/grpc-grpc/examples/python/multiplex/ |
D | helloworld_pb2_grpc.py | 17 self.SayHello = channel.unary_unary( 28 def SayHello(self, request, context): member in GreeterServicer 39 servicer.SayHello,
|
/external/grpc-grpc/examples/python/helloworld/ |
D | helloworld_pb2_grpc.py | 17 self.SayHello = channel.unary_unary( 28 def SayHello(self, request, context): member in GreeterServicer 39 servicer.SayHello,
|
D | greeter_client.py | 30 response = stub.SayHello(helloworld_pb2.HelloRequest(name='you'))
|
/external/grpc-grpc/examples/python/interceptors/default_value/ |
D | helloworld_pb2_grpc.py | 17 self.SayHello = channel.unary_unary( 28 def SayHello(self, request, context): member in GreeterServicer 39 servicer.SayHello,
|
/external/grpc-grpc/examples/python/interceptors/headers/ |
D | helloworld_pb2_grpc.py | 17 self.SayHello = channel.unary_unary( 28 def SayHello(self, request, context): member in GreeterServicer 39 servicer.SayHello,
|
/external/flatbuffers/tests/FlatBuffers.GRPC.Swift/Sources/Model/ |
D | greeter.grpc.swift | 24 …func SayHello(_ request: Message<HelloRequest>, callOptions: CallOptions?) -> UnaryCall<Message<He… in SayHello() function 37 …public func SayHello(_ request: Message<HelloRequest>, callOptions: CallOptions? = nil) -> UnaryCa… in SayHello() function 47 …func SayHello(_ request: Message<HelloRequest>, context: StatusOnlyCallContext) -> EventLoopFuture… in SayHello() function 58 self.SayHello(request, context: context) in SayHello()
|
/external/grpc-grpc/examples/cpp/helloworld/ |
D | greeter_client.cc | 45 std::string SayHello(const std::string& user) { in SayHello() function in GreeterClient 58 Status status = stub_->SayHello(&context, request, &reply); in SayHello() 82 std::string reply = greeter.SayHello(user); in main()
|
D | greeter_async_client.cc | 44 std::string SayHello(const std::string& user) { in SayHello() function in GreeterClient 113 std::string reply = greeter.SayHello(user); // The actual RPC call! in main()
|
D | greeter_async_client2.cc | 44 void SayHello(const std::string& user) { in SayHello() function in GreeterClient 136 greeter.SayHello(user); // The actual RPC call! in main()
|
/external/grpc-grpc/examples/android/helloworld/app/src/main/cpp/ |
D | grpc-helloworld.cc | 40 Status SayHello(ServerContext* context, const HelloRequest* request, in SayHello() function in GreeterServiceImpl 80 std::string SayHello(const std::string& user) { in SayHello() function in GreeterClient 92 Status status = stub_->SayHello(&context, request, &reply); in SayHello() 124 std::string reply = greeter.SayHello(message); in Java_io_grpc_helloworldexample_cpp_HelloworldActivity_sayHello()
|
/external/grpc-grpc/doc/ |
D | command_line_tool.md | 113 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {} 126 $ grpc_cli ls localhost:50051 helloworld.Greeter.SayHello -l 129 `helloworld.Greeter.SayHello` is full name of the method. 134 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {} 165 $ grpc_cli call localhost:50051 SayHello "name: 'gRPC CLI'" 170 `SayHello` is (part of) the gRPC method string. Then `"name: 'world'"` is 181 $ grpc_cli call localhost:50051 SayHello "name: 'world'" \ 195 $ grpc_cli call localhost:50051 /helloworld.Greeter/SayHello \
|
D | server_reflection_tutorial.md | 89 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {} 102 $ grpc_cli ls localhost:50051 helloworld.Greeter.SayHello -l 107 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {} 135 $ grpc_cli call localhost:50051 SayHello "name: 'gRPC CLI'" 178 desc_pool->FindMethodByName("helloworld.Greeter.SayHello");
|
/external/flatbuffers/grpc/samples/greeter/ |
D | client.cpp | 15 std::string SayHello(const std::string &name) { in SayHello() function in GreeterClient 26 auto status = stub_->SayHello(&context, request_msg, &response_msg); in SayHello() 76 std::string message = greeter.SayHello(name); in main()
|
/external/rust/crates/grpcio-sys/grpc/test/distrib/csharp/DistribTest/ |
D | Program.cs | 46 var reply = client.SayHello(new HelloRequest { Name = user }); in Main() 69 public override Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context) in SayHello() method in TestGrpcPackage.GreeterImpl
|
/external/rust/crates/grpcio-sys/grpc/bazel/test/python_test_repo/ |
D | helloworld_moved.py | 35 def SayHello(self, request, context): member in Greeter 65 response = stub.SayHello(helloworld_pb2.HelloRequest(
|
D | helloworld.py | 35 def SayHello(self, request, context): member in Greeter 65 response = stub.SayHello(helloworld_pb2.HelloRequest(
|
/external/grpc-grpc-java/examples/android/clientcache/app/src/main/proto/ |
D | helloworld.proto | 26 rpc SayHello (HelloRequest) returns (HelloReply) {} rpc 33 rpc SayHello (HelloRequest) returns (HelloReply) {} rpc
|
/external/oss-fuzz/projects/grpc-go/ |
D | fuzz_hello.go | 20 func (s *server) SayHello(ctx context.Context, in *pb.HelloRequest) (*pb.HelloReply, error) { func 107 r, err := c.SayHello(ctx, &pb.HelloRequest{Name: "world"})
|
/external/grpc-grpc-java/documentation/ |
D | server-reflection-tutorial.md | 111 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {} 124 $ ./grpc_cli ls localhost:50051 helloworld.Greeter.SayHello -l 129 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {} 157 $ ./grpc_cli call localhost:50051 SayHello "name: 'gRPC CLI'"
|
/external/perfetto/src/ipc/test/ |
D | ipc_integrationtest.cc | 52 void SayHello(const GreeterRequestMsg& request, in SayHello() function in ipc_test::__anon1865cfd40111::MockGreeterService 109 svc_proxy->SayHello(req, std::move(deferred_reply)); in TEST_F()
|