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

1 2

  /external/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/
Service.java 23 public interface Service {
  /external/protobuf/java/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 {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /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/protobuf/python/google/protobuf/
service.py 31 """DEPRECATED: Declares the RPC service interfaces.
51 class Service(object):
57 interface can be used to call the methods of the service without knowing
62 """Retrieves this service's descriptor."""
67 """Calls a method of the service specified by method_descriptor.
76 * method_descriptor.service == GetDescriptor
81 used by this Service. For stubs, the "correct type" depends on the
101 method = service.GetDescriptor().FindMethodByName("Foo")
104 service.CallMethod(method, request, callback)
205 An RpcChannel represents a communication line to a service which can be use
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 34 * Tests for <code>Provider.Service</code> constructor and methods
42 new Provider.Service(null, "type", "algorithm",
48 new Provider.Service(p, null, "algorithm",
54 new Provider.Service(p, "type", null,
60 new Provider.Service(p, "type", "algorithm",
66 Provider.Service s = new Provider.Service(p,
79 Provider.Service s = new Provider.Service(p,
94 s = new Provider.Service(p, "type", "algorithm", "className",
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 27 * lifecycle of a service is:
36 * If the service fails while starting, running or stopping, its state will be
37 * {@link State#FAILED}, and its behavior is undefined. Such a service cannot be
46 * {@code com.google.common.base.Service})
49 public interface Service {
51 * If the service state is {@link State#NEW}, this initiates service startup
52 * and returns immediately. If the service has already been started, this
53 * method returns immediately without taking action. A stopped service may not
58 * until the service has finished starting, and returns one of {@lin
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSQuestion.java 125 * Service question.
127 private static class Service extends DNSQuestion {
128 Service(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) {
140 // Service type request
201 // Service type request
251 return new Service(name, type, recordClass, unique);
DNSRecord.java 495 // The service name is in the alias
637 * Service record.
639 public static class Service extends 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) {
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, inf (…)
    [all...]
  /frameworks/base/core/java/android/app/
Service.java 34 * A Service is an application component representing either an application's desire
36 * or to supply functionality for other applications to use. Each service
38 * {@link android.R.styleable#AndroidManifestService &lt;service&gt;}
45 * thread of their hosting process. This means that, if your service is going
51 * as a standard implementation of Service that has its own thread where it
56 * <li><a href="#WhatIsAService">What is a Service?</a>
57 * <li><a href="#ServiceLifecycle">Service Lifecycle</a>
60 * <li><a href="#LocalServiceSample">Local Service Sample</a>
61 * <li><a href="#RemoteMessengerServiceSample">Remote Messenger Service Sample</a>
71 * <h3>What is a Service?</h3
    [all...]
  /frameworks/base/location/lib/java/com/android/location/provider/
LocationProviderBase.java 42 * <p>The network location provider must export a service with action
43 * "com.android.location.service.v2.NetworkLocationProvider"
44 * and a valid minor version in a meta-data field on the service, and
45 * then return the result of {@link #getBinder()} on service binding.
47 * <p>The fused location provider must export a service with action
48 * "com.android.location.service.FusedLocationProvider"
49 * and a valid minor version in a meta-data field on the service, and
50 * then return the result of {@link #getBinder()} on service binding.
78 private final class Service extends ILocationProvider.Stub {
120 mBinder = new Service();
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 27 import java.security.Provider.Service;
38 * Tests for <code>Provider.Service</code> constructor and methods
46 new Provider.Service(null, "type", "algorithm", "className", null,
52 new Provider.Service(p, null, "algorithm", "className", null, null);
57 new Provider.Service(p, "type", null, "className", null, null);
62 new Provider.Service(p, "type", "algorithm", null, null, null);
67 Provider.Service s = new Provider.Service(p, "type", "algorithm",
89 Provider.Service s = new Provider.Service(p, "type", "algorithm"
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/
Compatibility.java 75 Intent updateIntent = new Intent(this, Service.class);
102 Intent updateIntent = new Intent(context, Service.class);
108 public static class Service extends IntentService {
112 public Service() {
  /frameworks/base/core/java/android/bluetooth/
BluetoothClass.java 28 * <p>Every Bluetooth class is composed of zero or more service classes, and
35 * service discovery is done through SDP requests, which are automatically
47 * constants and methods to determine which Service Class(es) and Device Class
102 * Defines all service class constants.
103 * <p>Each {@link BluetoothClass} encodes zero or more service classes.
105 public static final class Service {
120 * Return true if the specified service class is supported by this
122 * <p>Valid service classes are the public constants in
123 * {@link BluetoothClass.Service}. For example, {@link
124 * BluetoothClass.Service#AUDIO}
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractScheduledServiceTest.java 20 import com.google.common.util.concurrent.Service.State;
60 NullService service = new NullService(); local
61 service.startAndWait();
63 service.stopAndWait();
76 TestService service = new TestService(); local
77 service.runException = new Exception();
78 service.startAndWait();
79 service.runFirstBarrier.await();
80 service.runSecondBarrier.await();
87 assertEquals(service.runException, e.getCause().getCause())
93 TestService service = new TestService(); local
106 TestService service = new TestService(); local
122 TestService service = new TestService(); local
136 TestService service = new TestService(); local
154 TestService service = new TestService(); local
316 TestAbstractScheduledCustomService service = new TestAbstractScheduledCustomService(); local
329 TestAbstractScheduledCustomService service = new TestAbstractScheduledCustomService() { local
386 TestFailingCustomScheduledService service = new TestFailingCustomScheduledService(); local
    [all...]
  /libcore/luni/src/main/java/java/security/
Provider.java 58 // Contains "Service.Algorithm" and Provider.Service classes added using
60 private transient LinkedHashMap<String, Service> serviceTable;
62 // Contains "Service.Alias" and Provider.Service classes added using
64 private transient LinkedHashMap<String, Service> aliasTable;
66 // Contains "Service.Algorithm" and Provider.Service classes added using
68 private transient LinkedHashMap<String, Service> propertyServiceTable;
70 // Contains "Service.Alias" and Provider.Service classes added using put(
379 Provider.Service service; local
    [all...]
  /external/smack/src/org/xbill/DNS/
WKSRecord.java 223 public static class Service {
230 private Service() {}
322 /** TACACS-Database Service */
334 /** Remote Job Service */
337 /** Remote Job Service */
340 /** Remote Job Service */
343 /** Remote Job Service */
388 /** Remote Telnet Service */
397 /** Authentication Service */
403 /** UUCP Path Service */
649 int service = Service.value(t.value); local
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 370 final Service service = p.services.get(i); local
371 if (service.info.enabled
3899 public final Service service; field in class:PackageParser.ServiceIntentInfo
    [all...]
  /frameworks/base/services/java/com/android/server/accessibility/
AccessibilityManagerService.java 108 * This class is instantiated by the system as a system level service and can be
109 * accessed only by the system. The task of this service is to be a centralized
173 private Service mQueryBridge;
242 // We will update when the automation service dies.
281 // We will update when the automation service dies.
313 // We will update when the automation service dies.
343 // We will update when the automation service dies.
412 // The automation service is a fake one and should not be reported
433 // The automation service is a fake one and should not be reported
434 // to clients as being enabled. The automation service is always th
449 Service service = services.get(i); local
471 Service service = services.get(i); local
697 Service service = getQueryBridge(); local
846 Service service = state.mBoundServices.get(i); local
864 Service service = state.mBoundServices.get(i); local
883 Service service = state.mBoundServices.get(i); local
992 Service service = state.mBoundServices.get(i); local
1079 Service service = services.get(i); local
1145 Service service = componentNameToServiceMap.get(componentName); local
1329 Service service = userState.mBoundServices.get(i); local
1410 Service service = userState.mBoundServices.get(i); local
1463 Service service = userState.mBoundServices.get(i); local
1518 Service service = userState.mBoundServices.get(j); local
1616 Service service = (Service) msg.obj; local
    [all...]
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 

Completed in 1253 milliseconds

1 2