HomeSort by relevance Sort by last modified time
    Searched defs:Service (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/grpc-grpc/examples/ruby/without_protobuf/
echo_services_noprotobuf.rb 20 # The 'echo without protobuf' service definition.
21 class Service
33 Stub = Service.rpc_stub_class
  /external/grpc-grpc/src/ruby/bin/
math_services_pb.rb 24 class Service
49 Stub = Service.rpc_stub_class
  /external/grpc-grpc/examples/ruby/lib/
helloworld_services_pb.rb 24 # The greeting service definition.
25 class Service
37 Stub = Service.rpc_stub_class
route_guide_services_pb.rb 25 class Service
59 Stub = Service.rpc_stub_class
  /external/grpc-grpc/src/python/grpcio/grpc/framework/common/
style.py 20 class Service(enum.Enum):
  /external/grpc-grpc/src/ruby/end2end/lib/
client_control_services_pb.rb 24 class Service
36 Stub = Service.rpc_stub_class
echo_services_pb.rb 24 class Service
35 Stub = Service.rpc_stub_class
  /external/grpc-grpc/src/ruby/pb/grpc/health/v1/
health_services_pb.rb 29 class Service
40 Stub = Service.rpc_stub_class
  /external/grpc-grpc/src/ruby/pb/grpc/testing/
metrics_services_pb.rb 18 # Contains the definitions for a metrics service and the type of metrics
19 # exposed by the service.
23 # service.
31 class Service
40 # the service
46 Stub = Service.rpc_stub_class
  /external/grpc-grpc/src/ruby/qps/src/proto/grpc/testing/
benchmark_service_services_pb.rb 18 # An integration test service that covers all the method signature permutations
27 class Service
53 Stub = Service.rpc_stub_class
proxy-service_services_pb.rb 2 # Source: src/proto/grpc/testing/proxy-service.proto for package 'grpc.testing'
25 class Service
38 Stub = Service.rpc_stub_class
report_qps_scenario_service_services_pb.rb 18 # An integration test service that covers all the method signature permutations
27 class Service
39 Stub = Service.rpc_stub_class
worker_service_services_pb.rb 18 # An integration test service that covers all the method signature permutations
27 class Service
55 Stub = Service.rpc_stub_class
  /external/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/
Service.java 23 public interface Service {
  /external/grpc-grpc/src/ruby/pb/grpc/testing/duplicate/
echo_duplicate_services_pb.rb 28 class Service
40 Stub = Service.rpc_stub_class
  /external/grpc-grpc/examples/ruby/pubsub/tech/pubsub/proto/
pubsub_services.rb 26 # TODO: add proto service documentation here
27 class Service
43 Stub = Service.rpc_stub_class
47 # TODO: add proto service documentation here
48 class Service
69 Stub = Service.rpc_stub_class
73 # TODO: add proto service documentation here
74 class Service
85 Stub = Service.rpc_stub_class
  /external/grpc-grpc/src/ruby/pb/src/proto/grpc/testing/
test_services_pb.rb 18 # An integration test service that covers all the method signature permutations
28 # A simple service to test the various types of RPCs and experiment with
30 class Service
66 Stub = Service.rpc_stub_class
69 # A simple service NOT implemented at servers so clients can test for
71 class Service
83 Stub = Service.rpc_stub_class
86 # A service used to control reconnect server.
87 class Service
99 Stub = Service.rpc_stub_clas
    [all...]
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Service.java 3 public interface Service {
  /bionic/libc/tools/
genserv.py 10 this program is used to generate the hard-coded internet service list for the
17 class Service:
42 result = [] # list of Service objects
55 service = Service( m.group(1), int(m.group(2)), m.group(3) )
62 service.add_alias(m.group(1))
65 result.append(service)
  /external/autotest/client/cros/tendo/n_faced_peerd/
service.py 6 import dbus.service
13 class Service(dbus_property_exposer.DBusPropertyExposer):
19 """Construct a org.chromium.peerd.Service DBus object.
23 @param service_id: string peerd service ID.
25 the metadata for the service.
30 super(Service, self).__init__(
45 # Claim the service interface.
56 @return dbus.String containing this service's peer_id.
65 @return dbus.String containing this service's service_id.
74 @return dbus.Dictionary containing this service's metadata
    [all...]
  /external/perfetto/include/perfetto/ipc/
service.h 29 // The base class for all the autogenerated host-side service interfaces.
30 class Service {
32 virtual ~Service();
60 // for that client until one of them calls Service::TakeReceivedFD.
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Service.java 37 * interface can be used to call the methods of the service without knowing
48 public interface Service {
50 * Get the {@code ServiceDescriptor} describing this service and its methods.
55 * <p>Call a method of the service specified by MethodDescriptor. This is
57 * definitions of the service's methods.
65 * being used by this Service. For stubs, the "correct type" depends
66 * on the RpcChannel which the stub is using. Server-side Service
100 * service.getDescriptorForType().findMethodByName("Foo");
104 * service.callMethod(method, request, callback);
112 * the {@code Service} implementation constructs the response message itself
    [all...]
  /external/protobuf/src/google/protobuf/
service.cc 35 #include <google/protobuf/service.h>
40 Service::~Service() {}
service.h 45 // When you use the protocol compiler to compile a service definition, it
46 // generates two classes: An abstract interface for the service (with
47 // methods matching the service definition) and a "stub" implementation.
49 // local implementation of the service.
51 // For example, the service definition:
52 // service MyService {
111 class Service;
124 // interface can be used to call the methods of the Service without knowing
126 class LIBPROTOBUF_EXPORT Service {
128 inline Service() {}
    [all...]
  /external/flatbuffers/grpc/src/compiler/
schema_interface.h 88 // An abstract interface representing a service.
89 struct Service : public CommentHolder {
90 virtual ~Service() {}
120 virtual std::unique_ptr<const Service> service(int i) const = 0;

Completed in 1081 milliseconds

1 2 3 4