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

  /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/guava/src/com/google/common/base/
Service.java 26 * lifecycle of a service is:
35 * If the service fails while starting, running or stopping, its state will be
36 * {@link State#FAILED}, and its behavior is undefined. Such a service cannot be
47 public interface Service {
49 * If the service state is {@link State#NEW}, this initiates service startup
50 * and returns immediately. If the service has already been started, this
51 * method returns immediately without taking action. A stopped service may not
56 * service has finished starting, and returns one of {@link
58 * the service fails to start, {@link Future#get} will throw an {@lin
    [all...]
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 32 import java.security.Provider.Service;
41 @TestTargetClass(Service.class)
43 * Tests for <code>Provider.Service</code> constructor and methods
51 method = "Service",
57 new Provider.Service(null, "type", "algorithm", "className", null,
63 new Provider.Service(p, null, "algorithm", "className", null, null);
68 new Provider.Service(p, "type", null, "className", null, null);
73 new Provider.Service(p, "type", "algorithm", null, null, null);
78 Provider.Service s = new Provider.Service(p, "type", "algorithm"
    [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
54 * <p>The Service class is an important part of an
59 * <li><a href="#WhatIsAService">What is a Service?</a>
60 * <li><a href="#ServiceLifecycle">Service Lifecycle</a>
63 * <li><a href="#LocalServiceSample">Local Service Sample</a>
64 * <li><a href="#RemoteMessengerServiceSample">Remote Messenger Service Sample</a
    [all...]
  /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...]
  /dalvik/libcore/security/src/main/java/java/security/
Provider.java 60 // Contains "Service.Algorithm" and Provider.Service classes added using
62 private transient TwoKeyHashMap<String, String, Service> serviceTable;
64 // Contains "Service.Alias" and Provider.Service classes added using
66 private transient TwoKeyHashMap<String, String, Service> aliasTable;
68 // Contains "Service.Algorithm" and Provider.Service classes added using
70 private transient TwoKeyHashMap<String, String, Service> propertyServiceTable;
72 // Contains "Service.Alias" and Provider.Service classes added using put(
440 Provider.Service service; local
    [all...]
  /frameworks/base/services/java/com/android/server/
AccessibilityManagerService.java 66 * This class is instantiated by the system as a system level service and can be
67 * accessed only by the system. The task of this service is to be a centralized
90 final List<Service> mServices = new ArrayList<Service>();
95 final Map<ComponentName, Service> mComponentNameToServiceMap =
96 new HashMap<ComponentName, Service>();
117 Service service = (Service) message.obj;
121 notifyEventListenerLocked(service, eventType)
307 Service service = mServices.get(i); local
332 Service service = (Service) arguments.arg2; local
375 Service service = mServices.get(i); local
433 Service service = services.get(i); local
549 Service service = services.get(i); local
603 Service service = componentNameToServiceMap.get(componentName); local
731 Service service = mComponentNameToServiceMap.remove(componentName); local
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 267 final Service service = p.services.get(i); local
268 if (service.info.enabled
3155 public final Service service; field in class:PackageParser.ServiceIntentInfo
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/4/
android.jar 

Completed in 277 milliseconds