Home
last modified time | relevance | path

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

12

/external/grpc-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
/external/grpc-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
/external/grpc-grpc/examples/csharp/HelloworldLegacyCsproj/Greeter/
DHelloworldGrpc.cs58 …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/
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()
/external/grpc-grpc/examples/csharp/Helloworld/Greeter/
DHelloworldGrpc.cs58 …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/interceptors/default_value/
Dhelloworld_pb2_grpc.py17 self.SayHello = channel.unary_unary(
28 def SayHello(self, request, context): member in GreeterServicer
39 servicer.SayHello,
/external/grpc-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,
/external/grpc-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,
Dgreeter_client.py35 response = stub.SayHello(helloworld_pb2.HelloRequest(name='you'))
/external/grpc-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,
Dgreeter_client.py30 response = stub.SayHello(helloworld_pb2.HelloRequest(name='you'))
/external/grpc-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()
82 std::string reply = greeter.SayHello(user); in main()
Dgreeter_async_client.cc44 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()
Dgreeter_async_client2.cc44 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/
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()
/external/grpc-grpc/doc/
Dcommand_line_tool.md113 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 \
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");
/external/flatbuffers/grpc/samples/greeter/
Dclient.cpp15 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()
Dgreeter.fbs15 SayHello(HelloRequest):HelloReply;
/external/grpc-grpc-java/documentation/
Dserver-reflection-tutorial.md111 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/grpc-grpc-java/examples/android/clientcache/app/src/main/proto/
Dhelloworld.proto26 rpc SayHello (HelloRequest) returns (HelloReply) {} rpc
33 rpc SayHello (HelloRequest) returns (HelloReply) {} rpc
/external/perfetto/src/ipc/test/
Dipc_integrationtest.cc51 void SayHello(const GreeterRequestMsg& request, in SayHello() function in ipc_test::__anon89bc8b760111::MockGreeterService
107 svc_proxy->SayHello(req, std::move(deferred_reply)); in TEST_F()
/external/grpc-grpc/examples/php/
Dgreeter_client.php36 list($reply, $status) = $client->SayHello($request)->wait();
/external/grpc-grpc/examples/csharp/HelloworldLegacyCsproj/GreeterClient/
DProgram.cs30 var reply = client.SayHello(new HelloRequest { Name = user }); in Main()
/external/grpc-grpc/examples/csharp/Helloworld/GreeterClient/
DProgram.cs30 var reply = client.SayHello(new HelloRequest { Name = user }); in Main()

12