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
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>
68 * <h3>What is a Service?</h3>
70 * <p>Most confusion about the Service class actually revolves around what
74 * <li> A Service i
276 public abstract class Service extends ContextWrapper implements ComponentCallbacks { class in inherits:ContextWrapper,ComponentCallbacks
279 public Service() { method in class:Service
[all...]
/frameworks/base/services/java/com/android/server/
H A DAccessibilityManagerService.java90 final List<Service> mServices = new ArrayList<Service>();
95 final Map<ComponentName, Service> mComponentNameToServiceMap =
96 new HashMap<ComponentName, Service>();
117 Service service = (Service) message.obj;
307 Service service = mServices.get(i);
332 Service service = (Service) arguments.arg2;
375 Service servic
642 class Service extends IAccessibilityServiceConnection.Stub implements ServiceConnection { class in class:AccessibilityManagerService
669 Service(ComponentName componentName) { method in class:AccessibilityManagerService.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.
274 if (hasService(Service.RENDER)) {
292 if (hasService(Service.RENDER)) {
305 if (hasService(Service.OBJECT_TRANSFER)) {
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java272 final Service service = p.services.get(i);
1663 Service s = parseService(owner, res, parser, attrs, flags, outError);
2397 private Service parseService(Package owner, Resources res,
2418 Service s = new Service(mParseServiceArgs, new ServiceInfo());
2733 public final ArrayList<Service> services = new ArrayList<Service>(0);
3110 public final static class Service extends Component<ServiceIntentInfo> { class in class:PackageParser
3113 public Service(final ParseComponentArgs args, final ServiceInfo _info) { method in class:PackageParser.Service
3125 return "Service{"
[all...]

Completed in 383 milliseconds