Home
last modified time | relevance | path

Searched refs:SayHello (Results 1 – 25 of 64) sorted by relevance

123

/third_party/grpc/examples/csharp/HelloworldXamarin/iOS/
DViewController.cs46 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
/third_party/grpc/examples/csharp/HelloworldXamarin/Droid/
DMainActivity.cs45 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
/third_party/grpc/examples/csharp/HelloworldXamarin/HelloworldXamarin/
DHelloworldGrpc.cs59 …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()
/third_party/grpc/examples/csharp/HelloworldUnity/Assets/Scripts/
DHelloworldGrpc.cs59 …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()
DHelloWorldTest.cs64 var reply = client.SayHello(new HelloRequest { Name = greeting }); in Greet()
76 public override Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context) in SayHello() method in HelloWorldTest.GreeterImpl
/third_party/grpc/examples/python/helloworld/
Dhelloworld_pb2_grpc.py17 self.SayHello = channel.unary_unary(
28 def SayHello(self, request, context): member in GreeterServicer
39 servicer.SayHello,
/third_party/grpc/examples/python/interceptors/headers/
Dhelloworld_pb2_grpc.py17 self.SayHello = channel.unary_unary(
28 def SayHello(self, request, context): member in GreeterServicer
39 servicer.SayHello,
/third_party/grpc/examples/python/interceptors/default_value/
Dhelloworld_pb2_grpc.py17 self.SayHello = channel.unary_unary(
28 def SayHello(self, request, context): member in GreeterServicer
39 servicer.SayHello,
/third_party/grpc/examples/python/xds/
Dhelloworld_pb2_grpc.py17 self.SayHello = channel.unary_unary(
28 def SayHello(self, request, context): member in GreeterServicer
39 servicer.SayHello,
/third_party/grpc/examples/python/metadata/
Dhelloworld_pb2_grpc.py17 self.SayHello = channel.unary_unary(
28 def SayHello(self, request, context): member in GreeterServicer
39 servicer.SayHello,
/third_party/grpc/examples/python/multiplex/
Dhelloworld_pb2_grpc.py17 self.SayHello = channel.unary_unary(
28 def SayHello(self, request, context): member in GreeterServicer
39 servicer.SayHello,
/third_party/grpc/examples/cpp/load_balancing/
Dgreeter_client.cc46 std::string SayHello(const std::string& user) { in SayHello() function in GreeterClient
59 Status status = stub_->SayHello(&context, request, &reply); in SayHello()
86 std::string reply = greeter.SayHello(user); in main()
/third_party/grpc/examples/cpp/compression/
Dgreeter_client.cc46 std::string SayHello(const std::string& user) { in SayHello() function in GreeterClient
62 Status status = stub_->SayHello(&context, request, &reply); in SayHello()
89 std::string reply = greeter.SayHello(user); in main()
/third_party/grpc/examples/cpp/metadata/
Dgreeter_client.cc45 std::string SayHello(const std::string& user) { in SayHello() function in CustomHeaderClient
66 Status status = stub_->SayHello(&context, request, &reply); in SayHello()
92 std::string reply = greeter.SayHello(user); in main()
/third_party/grpc/examples/android/helloworld/app/src/main/cpp/
Dgrpc-helloworld.cc40 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()
/third_party/grpc/examples/cpp/helloworld/
Dgreeter_client.cc45 std::string SayHello(const std::string& user) { in SayHello() function in GreeterClient
58 Status status = stub_->SayHello(&context, request, &reply); in SayHello()
103 std::string reply = greeter.SayHello(user); in main()
Dgreeter_async_client.cc48 std::string SayHello(const std::string& user) { in SayHello() function in GreeterClient
117 std::string reply = greeter.SayHello(user); // The actual RPC call! in main()
Dgreeter_async_client2.cc48 void SayHello(const std::string& user) { in SayHello() function in GreeterClient
140 greeter.SayHello(user); // The actual RPC call! in main()
/third_party/grpc/doc/
Dcommand_line_tool.md117 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {}
130 $ grpc_cli ls localhost:50051 helloworld.Greeter.SayHello -l
133 `helloworld.Greeter.SayHello` is full name of the method.
138 rpc SayHello(helloworld.HelloRequest) returns (helloworld.HelloReply) {}
169 $ grpc_cli call localhost:50051 SayHello "name: 'gRPC CLI'"
174 `SayHello` is (part of) the gRPC method string. Then `"name: 'world'"` is
185 $ grpc_cli call localhost:50051 SayHello "name: 'world'" \
203 $ grpc_cli call localhost:50051 /helloworld.Greeter/SayHello \
Dserver_reflection_tutorial.md89 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");
/third_party/grpc/test/distrib/csharp/DistribTest/
DProgram.cs46 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
/third_party/grpc/bazel/test/python_test_repo/
Dhelloworld.py35 def SayHello(self, request, context): member in Greeter
65 response = stub.SayHello(helloworld_pb2.HelloRequest(
Dhelloworld_moved.py35 def SayHello(self, request, context): member in Greeter
65 response = stub.SayHello(helloworld_pb2.HelloRequest(
/third_party/grpc/examples/python/wait_for_ready/
Dwait_for_ready_example.py46 def SayHello(self, request, unused_context): member in Greeter
60 response = stub.SayHello(helloworld_pb2.HelloRequest(name='you'),
/third_party/grpc/examples/python/compression/
DREADME.md33 response = stub.SayHello(helloworld_pb2.HelloRequest(name='you'),
52 def SayHello(self, request, context):

123