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

/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
H A DService.java33 public abstract class Service implements Transport.Callback { class in inherits:Transport.Callback
38 public Service(Context context, Transport transport, int serviceId) { method in class:Service
/frameworks/base/location/lib/java/com/android/location/provider/
H A DLocationProviderBase.java79 private final class Service extends ILocationProvider.Stub { class in class:LocationProviderBase
121 mBinder = new Service();
/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.java384 final Service service = p.services.get(i);
2106 Service s = parseService(owner, res, parser, attrs, flags, outError);
2996 private Service parseService(Package owner, Resources res,
3018 Service s = new Service(mParseServiceArgs, new ServiceInfo());
3055 Slog.w(TAG, "Service exported request ignored due to singleUser: "
3456 public final ArrayList<Service> services = new ArrayList<Service>(0);
3955 public final static class Service extends Component<ServiceIntentInfo> { class in class:PackageParser
3958 public Service(fina method in class:PackageParser.Service
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java173 private Service mQueryBridge;
443 List<Service> services = userState.mBoundServices;
449 Service service = services.get(i);
460 CopyOnWriteArrayList<Service> services;
471 Service service = services.get(i);
697 Service service = getQueryBridge();
824 private Service getQueryBridge() {
828 mQueryBridge = new Service(UserHandle.USER_NULL,
846 Service service = state.mBoundServices.get(i);
864 Service servic
1694 class Service extends IAccessibilityServiceConnection.Stub class in class:AccessibilityManagerService
1757 public Service(int userId, ComponentName componentName, method in class:AccessibilityManagerService.Service
[all...]

Completed in 185 milliseconds