Searched defs:Service (Results 1 - 25 of 43) sorted by relevance

12

/external/r8/src/test/examples/multidexfakeframeworks/
H A DService.java7 public class Service { class
/external/r8/src/test/examplesAndroidO/multidex004/fakeframeworks/
H A DService.java7 public class Service { class
/external/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/
H A DService.java23 public interface Service { interface
/external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
H A DService.java3 public interface Service { interface
/external/protobuf/src/google/protobuf/
H A Dservice.cc40 Service::~Service() {}
H A Dservice.h111 class Service;
124 // interface can be used to call the methods of the Service without knowing
126 class LIBPROTOBUF_EXPORT Service { class in namespace:google::protobuf
128 inline Service() {} function in class:google::protobuf::Service
129 virtual ~Service();
154 // used by this Service. For stubs, the "correct type" depends on the
155 // RpcChannel which the stub is using. Server-side Service
192 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Service);
262 // communication line to a Service which can be used to call that Service'
[all...]
/external/flatbuffers/grpc/src/compiler/
H A Dschema_interface.h72 struct Service { struct in namespace:grpc_generator
73 virtual ~Service() {}
106 virtual std::unique_ptr<const Service> service(int i) const = 0;
/external/flatbuffers/tests/
H A Dmonster_test.grpc.fb.cc51 MonsterStorage::Service::Service() { function in class:MyGame::Example::MonsterStorage::Service
56 new ::grpc::RpcMethodHandler< MonsterStorage::Service, flatbuffers::BufferRef<Monster>, flatbuffers::BufferRef<Stat>>(
57 std::mem_fn(&MonsterStorage::Service::Store), this)));
61 new ::grpc::ServerStreamingHandler< MonsterStorage::Service, flatbuffers::BufferRef<Stat>, flatbuffers::BufferRef<Monster>>(
62 std::mem_fn(&MonsterStorage::Service::Retrieve), this)));
65 MonsterStorage::Service::~Service() {
68 ::grpc::Status MonsterStorage::Service::Store(::grpc::ServerContext* context, const flatbuffers::BufferRef<Monster>* request, flatbuffers::BufferRef<Stat>* response) {
75 ::grpc::Status MonsterStorage::Service
[all...]
H A Dmonster_test.grpc.fb.h73 class Service : public ::grpc::Service { class in class:MyGame::Example::GRPC_FINAL
75 Service();
76 virtual ~Service();
83 void BaseClassMustBeDerivedFromService(const Service *service) {}
86 ::grpc::Service::MarkMethodAsync(0);
97 ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag);
103 void BaseClassMustBeDerivedFromService(const Service *service) {}
106 ::grpc::Service::MarkMethodAsync(1);
117 ::grpc::Service
[all...]
/external/autotest/client/cros/tendo/n_faced_peerd/
H A Dservice.py13 class Service(dbus_property_exposer.DBusPropertyExposer): class in inherits:dbus_property_exposer.DBusPropertyExposer
19 """Construct a org.chromium.peerd.Service DBus object.
30 super(Service, self).__init__(
/external/guice/core/test/com/google/inject/example/
H A DClientServiceWithGuiceDefaults.java36 public interface Service { interface in class:ClientServiceWithGuiceDefaults
41 public static class ServiceImpl implements ClientServiceWithGuiceDefaults.Service {
49 private final Service service;
52 public Client(Service service) {
68 public static class MockService implements Service {
H A DClientServiceWithDependencyInjection.java28 public interface Service { interface in class:ClientServiceWithDependencyInjection
32 public static class ServiceImpl implements ClientServiceWithDependencyInjection.Service {
42 private static final Service service = new ServiceImpl();
44 public static Service getInstance() {
51 private final Service service;
53 public Client(Service service) {
67 Service service = ServiceFactory.getInstance();
79 public static class MockService implements Service {
H A DClientServiceWithFactories.java28 public interface Service { interface in class:ClientServiceWithFactories
32 public static class ServiceImpl implements Service {
42 private static Service instance = new ServiceImpl();
44 public static Service getInstance() {
48 public static void setInstance(Service service) {
56 Service service = ServiceFactory.getInstance();
62 Service previous = ServiceFactory.getInstance();
75 public static class MockService implements Service {
H A DClientServiceWithGuice.java35 public interface Service { interface in class:ClientServiceWithGuice
39 public static class ServiceImpl implements Service {
47 bind(Service.class).to(ServiceImpl.class).in(Scopes.SINGLETON);
53 private final Service service;
56 public Client(Service service) {
72 public static class MockService implements Service {
/external/guice/extensions/service/src/com/google/inject/service/
H A DService.java29 public interface Service { interface
/external/mockito/src/test/java/org/mockitousage/bugs/
H A DShouldNotDeadlockAnswerExecutionTest.java23 Service service = Mockito.mock(Service.class);
48 Service service1 = Mockito.mock(Service.class);
49 Service service2 = Mockito.mock(Service.class);
98 private Service service;
100 public ServiceRunner(Service service) {
110 interface Service { interface in class:ShouldNotDeadlockAnswerExecutionTest
/external/nanopb-c/generator/google/protobuf/
H A Dservice.py51 class Service(object): class in inherits:object
81 used by this Service. For stubs, the "correct type" depends on the
208 construct a stub {@link Service} wrapping it. Example:
222 procedure looks the same as Service.CallMethod(), but the requirements
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DService.java48 public interface Service { interface
65 * being used by this Service. For stubs, the "correct type" depends
66 * on the RpcChannel which the stub is using. Server-side Service
112 * the {@code Service} implementation constructs the response message itself,
/external/protobuf/python/google/protobuf/
H A Dservice.py51 class Service(object): class in inherits:object
81 used by this Service. For stubs, the "correct type" depends on the
208 construct a stub {@link Service} wrapping it. Example:
222 procedure looks the same as Service.CallMethod(), but the requirements
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DMethodDescriptor.cs48 public ServiceDescriptor Service { get { return service; } } property in class:Google.Protobuf.Reflection.MethodDescriptor
/external/mockito/src/test/java/org/mockitousage/bugs/injection/
H A DInjectionByTypeShouldFirstLookForExactTypeThenAncestorTest.java24 @InjectMocks private Service illegalInjectionExample = new Service();
30 Field[] declaredFields = Service.class.getDeclaredFields();
56 public static class Service { class in class:InjectionByTypeShouldFirstLookForExactTypeThenAncestorTest
/external/autotest/client/cros/tendo/
H A Dpeerd_dbus_helper.py15 Service = collections.namedtuple('Service', variable
23 DBUS_INTERFACE_SERVICE = 'org.chromium.peerd.Service'
107 services.append(Service(
/external/guava/guava/src/com/google/common/util/concurrent/
H A DService.java39 * <p>There are deviations from this if there are failures or if {@link Service#stopAsync} is called
40 * before the {@link Service} reaches the {@linkplain State#RUNNING RUNNING} state. The set of legal
52 * @since 9.0 (in 1.0 as {@code com.google.common.base.Service})
55 public interface Service { interface
65 Service startAsync();
87 Service stopAsync();
90 * Waits for the {@link Service} to reach the {@linkplain State#RUNNING running state}.
102 * Waits for the {@link Service} to reach the {@linkplain State#RUNNING running state} for no
118 * Waits for the {@link Service} to reach the {@linkplain State#TERMINATED terminated state}.
127 * Waits for the {@link Service} t
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSQuestion.java125 * Service question.
127 private static class Service extends DNSQuestion { class in class:DNSQuestion
128 Service(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) { method in class:DNSQuestion.Service
140 // Service type request
201 // Service type request
251 return new Service(name, type, recordClass, unique);
H A DDNSRecord.java637 * Service record.
639 public static class Service extends DNSRecord { class in class:DNSRecord
640 private static Logger logger1 = Logger.getLogger(Service.class.getName());
646 public Service(String name, DNSRecordClass recordClass, boolean unique, int ttl, int priority, int weight, int port, String server) { method in class:DNSRecord.Service
711 if (! (other instanceof Service) ) {
714 Service s = (Service) other;
728 DNSRecord.Service localService = new DNSRecord.Service(info.getQualifiedName(), DNSRecordClass.CLASS_IN, DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL, info.getPriority(), info.getWeight(), info.getPort(), dns.getLocalHost().getName());
798 return dns.addAnswer(in, addr, port, out, new DNSRecord.Service(inf
[all...]

Completed in 602 milliseconds

12