Searched refs:RouteSummary (Results 1 – 17 of 17) sorted by relevance
/third_party/grpc/examples/node/static_codegen/route_guide/ |
D | route_guide_pb.js | 804 proto.routeguide.RouteSummary = function(opt_data) { class in proto.routeguide 807 goog.inherits(proto.routeguide.RouteSummary, jspb.Message); 809 proto.routeguide.RouteSummary.displayName = 'proto.routeguide.RouteSummary'; 824 proto.routeguide.RouteSummary.prototype.toObject = function(opt_includeInstance) { 825 return proto.routeguide.RouteSummary.toObject(opt_includeInstance, this); 837 proto.routeguide.RouteSummary.toObject = function(includeInstance, msg) { 858 proto.routeguide.RouteSummary.deserializeBinary = function(bytes) { 860 var msg = new proto.routeguide.RouteSummary; 861 return proto.routeguide.RouteSummary.deserializeBinaryFromReader(msg, reader); 872 proto.routeguide.RouteSummary.deserializeBinaryFromReader = function(msg, reader) { [all …]
|
D | route_guide_grpc_pb.js | 67 if (!(arg instanceof route_guide_pb.RouteSummary)) { 74 return route_guide_pb.RouteSummary.deserializeBinary(new Uint8Array(buffer_arg)); 123 responseType: route_guide_pb.RouteSummary,
|
D | route_guide_server.js | 157 var summary = new messages.RouteSummary();
|
/third_party/grpc/examples/protos/ |
D | route_guide.proto | 45 // RouteSummary when traversal is completed. 46 rpc RecordRoute(stream Point) returns (RouteSummary) {} 94 // A RouteSummary is received in response to a RecordRoute rpc. 99 message RouteSummary { message
|
/third_party/grpc/examples/python/multiplex/ |
D | route_guide_pb2_grpc.py | 30 response_deserializer=route__guide__pb2.RouteSummary.FromString, 103 response_serializer=route__guide__pb2.RouteSummary.SerializeToString,
|
D | route_guide_pb2.py | 270 RouteSummary = _reflection.GeneratedProtocolMessageType('RouteSummary', (_message.Message,), dict( variable 275 _sym_db.RegisterMessage(RouteSummary)
|
D | multiplex_server.py | 107 return route_guide_pb2.RouteSummary(point_count=point_count,
|
/third_party/grpc/examples/python/route_guide/ |
D | route_guide_pb2_grpc.py | 30 response_deserializer=route__guide__pb2.RouteSummary.FromString, 103 response_serializer=route__guide__pb2.RouteSummary.SerializeToString,
|
D | route_guide_pb2.py | 270 RouteSummary = _reflection.GeneratedProtocolMessageType('RouteSummary', (_message.Message,), dict( variable 275 _sym_db.RegisterMessage(RouteSummary)
|
D | route_guide_server.py | 99 return route_guide_pb2.RouteSummary(point_count=point_count,
|
/third_party/grpc/examples/csharp/RouteGuide/RouteGuideServer/ |
D | RouteGuideImpl.cs | 67 …public override async Task<RouteSummary> RecordRoute(IAsyncStreamReader<Point> requestStream, Serv… in RecordRoute() 93 return new RouteSummary in RecordRoute()
|
/third_party/grpc/examples/ruby/lib/ |
D | route_guide_services_pb.rb | 51 rpc :RecordRoute, stream(Point), RouteSummary
|
D | route_guide_pb.rb | 36 …RouteSummary = Google::Protobuf::DescriptorPool.generated_pool.lookup("routeguide.RouteSummary").m… constant
|
/third_party/grpc/examples/cpp/route_guide/ |
D | route_guide_server.cc | 48 using routeguide::RouteSummary; 123 RouteSummary* summary) override { in RecordRoute()
|
D | route_guide_client.cc | 47 using routeguide::RouteSummary; 120 RouteSummary stats; in RecordRoute()
|
/third_party/grpc/examples/ruby/route_guide/ |
D | route_guide_server.rb | 124 RouteSummary.new(point_count: count,
|
/third_party/grpc/examples/csharp/RouteGuide/RouteGuideClient/ |
D | Program.cs | 132 RouteSummary summary = await call.ResponseAsync; in RecordRoute()
|