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

/frameworks/base/core/java/android/app/
H A DService.java34 * A Service is an application component representing either an application's desire
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>
73 * <p>Most confusion about the Service class actually revolves around what
77 * <li> A Service is <b>not</b> a separate process. The Service objec
279 public abstract class Service extends ContextWrapper implements ComponentCallbacks2 { class in inherits:ContextWrapper,ComponentCallbacks2
282 public Service() { method in class:Service
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothClass.java47 * constants and methods to determine which Service Class(es) and Device Class
105 public static final class Service { class in class:BluetoothClass
123 * {@link BluetoothClass.Service}. For example, {@link
124 * BluetoothClass.Service#AUDIO}.
130 return ((mClass & Service.BITMASK & service) != 0);
141 * <p>See {@link BluetoothClass.Service} for service class constants.
298 if (hasService(Service.RENDER)) {
316 if (hasService(Service.RENDER)) {
329 if (hasService(Service.OBJECT_TRANSFER)) {
355 if (hasService(Service
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java107 final List<Service> mServices = new ArrayList<Service>();
112 final Map<ComponentName, Service> mComponentNameToServiceMap = new HashMap<ComponentName, Service>();
150 Service service = (Service) message.obj;
379 List<Service> services = mServices;
386 Service service = services.get(i);
399 Service service = mServices.get(i);
416 Service servic
947 class Service extends IAccessibilityServiceConnection.Stub class in class:AccessibilityManagerService
981 public Service(ComponentName componentName, method in class:AccessibilityManagerService.Service
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java292 final Service service = p.services.get(i);
1763 Service s = parseService(owner, res, parser, attrs, flags, outError);
2528 private Service parseService(Package owner, Resources res,
2550 Service s = new Service(mParseServiceArgs, new ServiceInfo());
2938 public final ArrayList<Service> services = new ArrayList<Service>(0);
3341 public final static class Service extends Component<ServiceIntentInfo> { class in class:PackageParser
3344 public Service(final ParseComponentArgs args, final ServiceInfo _info) { method in class:PackageParser.Service
3356 return "Service{"
[all...]

Completed in 1157 milliseconds