Home
last modified time | relevance | path

Searched refs:HelloReply (Results 1 – 25 of 79) sorted by relevance

1234

/third_party/flatbuffers/grpc/examples/ts/greeter/src/models/
Dhello-reply.ts7 export class HelloReply { class
10 __init(i:number, bb:flatbuffers.ByteBuffer):HelloReply {
16 static getRootAsHelloReply(bb:flatbuffers.ByteBuffer, obj?:HelloReply):HelloReply {
17 return (obj || new HelloReply()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
20 static getSizePrefixedRootAsHelloReply(bb:flatbuffers.ByteBuffer, obj?:HelloReply):HelloReply {
22 return (obj || new HelloReply()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
46 HelloReply.startHelloReply(builder);
47 HelloReply.addMessage(builder, messageOffset);
48 return HelloReply.endHelloReply(builder);
55 static deserialize(buffer: Uint8Array):HelloReply {
[all …]
/third_party/grpc/examples/node/static_codegen/
Dhelloworld_pb.js184 proto.helloworld.HelloReply = function(opt_data) { class in proto.helloworld
187 goog.inherits(proto.helloworld.HelloReply, jspb.Message);
189 proto.helloworld.HelloReply.displayName = 'proto.helloworld.HelloReply';
204 proto.helloworld.HelloReply.prototype.toObject = function(opt_includeInstance) {
205 return proto.helloworld.HelloReply.toObject(opt_includeInstance, this);
217 proto.helloworld.HelloReply.toObject = function(includeInstance, msg) {
235 proto.helloworld.HelloReply.deserializeBinary = function(bytes) {
237 var msg = new proto.helloworld.HelloReply;
238 return proto.helloworld.HelloReply.deserializeBinaryFromReader(msg, reader);
249 proto.helloworld.HelloReply.deserializeBinaryFromReader = function(msg, reader) {
[all …]
Dhelloworld_grpc_pb.js23 if (!(arg instanceof helloworld_pb.HelloReply)) {
30 return helloworld_pb.HelloReply.deserializeBinary(new Uint8Array(buffer_arg));
53 responseType: helloworld_pb.HelloReply,
/third_party/grpc/examples/csharp/HelloworldXamarin/HelloworldXamarin/
DHelloworld.cs35 …ew pbr::GeneratedClrTypeInfo(typeof(global::Helloworld.HelloReply), global::Helloworld.HelloReply.… in HelloworldReflection()
165 public sealed partial class HelloReply : pb::IMessage<HelloReply> { class
166 …ate static readonly pb::MessageParser<HelloReply> _parser = new pb::MessageParser<HelloReply>(() =…
168 public static pb::MessageParser<HelloReply> Parser { get { return _parser; } }
181 public HelloReply() { in HelloReply() method in Helloworld.HelloReply
188 public HelloReply(HelloReply other) : this() { in HelloReply() method in Helloworld.HelloReply
193 public HelloReply Clone() { in Clone()
194 return new HelloReply(this); in Clone()
210 return Equals(other as HelloReply); in Equals()
214 public bool Equals(HelloReply other) { in Equals()
[all …]
DHelloworldGrpc.cs35HelloReply> __Marshaller_HelloReply = grpc::Marshallers.Create((arg) => global::Google.Protobuf.Me…
37 …, global::Helloworld.HelloReply> __Method_SayHello = new grpc::Method<global::Helloworld.HelloRequ…
59 …public virtual global::System.Threading.Tasks.Task<global::Helloworld.HelloReply> SayHello(global:… in SayHello()
97 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello()
107 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello()
119 …public virtual grpc::AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworl… in SayHelloAsync()
129 …public virtual grpc::AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworl… in SayHelloAsync()
/third_party/grpc/examples/csharp/HelloworldUnity/Assets/Scripts/
DHelloworld.cs35 …ew pbr::GeneratedClrTypeInfo(typeof(global::Helloworld.HelloReply), global::Helloworld.HelloReply.… in HelloworldReflection()
165 public sealed partial class HelloReply : pb::IMessage<HelloReply> { class
166 …ate static readonly pb::MessageParser<HelloReply> _parser = new pb::MessageParser<HelloReply>(() =…
168 public static pb::MessageParser<HelloReply> Parser { get { return _parser; } }
181 public HelloReply() { in HelloReply() method in Helloworld.HelloReply
188 public HelloReply(HelloReply other) : this() { in HelloReply() method in Helloworld.HelloReply
193 public HelloReply Clone() { in Clone()
194 return new HelloReply(this); in Clone()
210 return Equals(other as HelloReply); in Equals()
214 public bool Equals(HelloReply other) { in Equals()
[all …]
DHelloworldGrpc.cs35HelloReply> __Marshaller_HelloReply = grpc::Marshallers.Create((arg) => global::Google.Protobuf.Me…
37 …, global::Helloworld.HelloReply> __Method_SayHello = new grpc::Method<global::Helloworld.HelloRequ…
59 …public virtual global::System.Threading.Tasks.Task<global::Helloworld.HelloReply> SayHello(global:… in SayHello()
97 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello()
107 …public virtual global::Helloworld.HelloReply SayHello(global::Helloworld.HelloRequest request, grp… in SayHello()
119 …public virtual grpc::AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworl… in SayHelloAsync()
129 …public virtual grpc::AsyncUnaryCall<global::Helloworld.HelloReply> SayHelloAsync(global::Helloworl… in SayHelloAsync()
DHelloWorldTest.cs49 public static HelloReply Greet(string greeting) in Greet()
76 public override Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context) in SayHello()
78 return Task.FromResult(new HelloReply { Message = "Hello " + request.Name }); in SayHello()
/third_party/flatbuffers/grpc/examples/go/greeter/models/
DHelloReply.go9 type HelloReply struct { struct
13 func GetRootAsHelloReply(buf []byte, offset flatbuffers.UOffsetT) *HelloReply {
15 x := &HelloReply{}
20 func GetSizePrefixedRootAsHelloReply(buf []byte, offset flatbuffers.UOffsetT) *HelloReply {
22 x := &HelloReply{}
27 func (rcv *HelloReply) Init(buf []byte, i flatbuffers.UOffsetT) { argument
32 func (rcv *HelloReply) Table() flatbuffers.Table { argument
36 func (rcv *HelloReply) Message() []byte { argument
DGreeter_grpc.go18 opts ...grpc.CallOption) (*HelloReply, error)
32 opts ...grpc.CallOption) (*HelloReply, error) {
33 out := new(HelloReply)
58 Recv() (*HelloReply, error)
66 func (x *greeterSayManyHellosClient) Recv() (*HelloReply, error) {
67 m := new(HelloReply)
/third_party/flatbuffers/grpc/examples/ts/greeter/src/
Dserver.ts2 import { HelloReply } from './models/hello-reply';
9 …SayHello(call: grpc.ServerUnaryCall<HelloRequest>, callback: grpc.sendUnaryData<HelloReply>): void…
13 const root = HelloReply.createHelloReply(builder, offset);
15 …callback(null, HelloReply.getRootAsHelloReply(new flatbuffers.ByteBuffer(builder.asUint8Array())));
24 const root = HelloReply.createHelloReply(builder, offset);
26 … call.write(HelloReply.getRootAsHelloReply(new flatbuffers.ByteBuffer(builder.asUint8Array())))
/third_party/flatbuffers/grpc/examples/python/greeter/
Dclient.py8 from models import HelloReply, HelloRequest, greeter_grpc_fb
16 r = HelloReply.HelloReply.GetRootAs(reply)
22 r = HelloReply.HelloReply.GetRootAs(greeting)
Dserver.py9 from models import HelloReply, HelloRequest, greeter_grpc_fb
17 HelloReply.HelloReplyStart(builder)
18 HelloReply.HelloReplyAddMessage(builder, ind)
19 root = HelloReply.HelloReplyEnd(builder)
/third_party/flatbuffers/grpc/examples/
Dgreeter.fbs3 table HelloReply {
12 SayHello(HelloRequest):HelloReply;
13 SayManyHellos(HelloRequest):HelloReply (streaming: "server");
/third_party/flatbuffers/grpc/samples/greeter/
Dgreeter.fbs1 table HelloReply {
15 SayHello(HelloRequest):HelloReply;
16 SayManyHellos(ManyHellosRequest):HelloReply (streaming: "server");
Dserver.cpp14 flatbuffers::grpc::Message<HelloReply> *response_msg) override { in SayHello()
34 *response_msg = mb_.ReleaseMessage<HelloReply>(); in SayHello()
44 grpc::ServerWriter<flatbuffers::grpc::Message<HelloReply>> *writer) in SayManyHellos()
56 writer->Write(mb_.ReleaseMessage<HelloReply>()); in SayManyHellos()
Dclient.cpp22 flatbuffers::grpc::Message<HelloReply> response_msg; in SayHello()
28 const HelloReply *response = response_msg.GetRoot(); in SayHello()
46 flatbuffers::grpc::Message<HelloReply> response_msg; in SayManyHellos()
52 const HelloReply *response = response_msg.GetRoot(); in SayManyHellos()
/third_party/protobuf/php/tests/proto/
Dtest_service.proto8 rpc SayHello (HelloRequest) returns (HelloReply) {}
9 rpc SayHelloAgain (HelloRequest) returns (HelloReply) {}
16 message HelloReply { message
Dtest_service_namespace.proto11 rpc SayHello (HelloRequest) returns (HelloReply) {}
12 rpc SayHelloAgain (HelloRequest) returns (HelloReply) {}
/third_party/grpc/examples/cpp/helloworld/
Dgreeter_async_client.cc38 using helloworld::HelloReply;
54 HelloReply reply; in SayHello()
71 std::unique_ptr<ClientAsyncResponseReader<HelloReply> > rpc( in SayHello()
Dgreeter_async_client2.cc39 using helloworld::HelloReply;
103 HelloReply reply;
113 std::unique_ptr<ClientAsyncResponseReader<HelloReply>> response_reader;
Dgreeter_async_server.cc40 using helloworld::HelloReply;
133 HelloReply reply_;
136 ServerAsyncResponseWriter<HelloReply> responder_;
/third_party/grpc/examples/csharp/HelloworldLegacyCsproj/GreeterServer/
DProgram.cs25 public override Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context) in SayHello()
27 return Task.FromResult(new HelloReply { Message = "Hello " + request.Name }); in SayHello()
/third_party/grpc/examples/csharp/Helloworld/GreeterServer/
DProgram.cs25 public override Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context) in SayHello()
27 return Task.FromResult(new HelloReply { Message = "Hello " + request.Name }); in SayHello()
/third_party/grpc/examples/python/interceptors/headers/
Dhelloworld_pb2_grpc.py20 response_deserializer=helloworld__pb2.HelloReply.FromString,
41 response_serializer=helloworld__pb2.HelloReply.SerializeToString,

1234