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
291 public abstract class Service extends ContextWrapper implements ComponentCallbacks2 { class in inherits:ContextWrapper,ComponentCallbacks2
294 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/core/java/android/content/pm/
H A DPackageParser.java355 final Service service = p.services.get(i);
1885 Service s = parseService(owner, res, parser, attrs, flags, outError);
2678 private Service parseService(Package owner, Resources res,
2700 Service s = new Service(mParseServiceArgs, new ServiceInfo());
3093 public final ArrayList<Service> services = new ArrayList<Service>(0);
3543 public final static class Service extends Component<ServiceIntentInfo> { class in class:PackageParser
3546 public Service(final ParseComponentArgs args, final ServiceInfo _info) { method in class:PackageParser.Service
3558 return "Service{"
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java126 final List<Service> mServices = new ArrayList<Service>();
131 final Map<ComponentName, Service> mComponentNameToServiceMap = new HashMap<ComponentName, Service>();
166 private Service mUiAutomationService;
168 private Service mQueryBridge;
437 List<Service> services = mServices;
444 Service service = services.get(i);
457 Service service = mServices.get(i);
515 Service runningServic
1131 class Service extends IAccessibilityServiceConnection.Stub class in class:AccessibilityManagerService
1198 public Service(ComponentName componentName, method in class:AccessibilityManagerService.Service
[all...]

Completed in 119 milliseconds