Searched defs:services (Results 26 - 43 of 43) sorted by relevance

12

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DClusterManager.java17 package android.bordeaux.services;
H A DLocationStatsAggregator.java17 package android.bordeaux.services;
183 public static final String LOCATION_UPDATE = "android.bordeaux.services.LOCATION_UPDATE";
H A DPredictor.java17 package android.bordeaux.services;
30 import android.bordeaux.services.FeatureAssembly;
H A DBaseCluster.java16 package android.bordeaux.services;
H A DStochasticLinearRankerWithPrior.java17 package android.bordeaux.services;
H A DTimeStatsAggregator.java17 package android.bordeaux.services;
/frameworks/native/cmds/service/
H A Dservice.cpp115 Vector<String16> services = sm->listServices(); local
116 aout << "Found " << services.size() << " services:" << endl;
117 for (unsigned i = 0; i < services.size(); i++) {
118 String16 name = services[i];
/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java128 public ServiceInfo[] services; field in class:PackageInfo
310 dest.writeTypedArray(services, parcelableFlags);
359 services = source.createTypedArray(ServiceInfo.CREATOR);
H A DRegisteredServicesCache.java65 * Cache of registered services. This cache is lazily built by interrogating
71 * The services are referred to by type V and are made available via the
96 Map<V, ServiceInfo<V>> services = null; field in class:RegisteredServicesCache.UserServices
108 UserServices<V> services = mUserServices.get(userId);
109 if (services == null) {
110 services = new UserServices<V>();
111 mUserServices.put(userId, services);
127 Log.w(TAG, "Error reading persistent services for user " + user.id, e);
135 return services;
172 // Don't regenerate the services ma
[all...]
H A DPackageParser.java504 int N = p.services.size();
507 pi.services = new ServiceInfo[N];
511 if (p.services.get(i).info.enabled) num++;
513 pi.services = new ServiceInfo[num];
516 final Service service = p.services.get(i);
519 pi.services[j++] = generateServiceInfo(p.services.get(i), flags,
2701 owner.services.add(s);
2899 owner.services.add(s);
3850 // A heavy-weight application can not have services i
4301 public final ArrayList<Service> services = new ArrayList<Service>(0); field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java299 HashMap<String, IBinder> services = data.readHashMap(null);
303 restrictedBackupMode, persistent, config, compatInfo, services, coreSettings);
995 Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services,
1023 data.writeMap(services);
990 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo, Bundle testArgs, IInstrumentationWatcher testWatcher, IUiAutomationConnection uiAutomationConnection, int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DIApplicationThread.java99 Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services,
95 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, ProfilerInfo profilerInfo, Bundle testArguments, IInstrumentationWatcher testWatcher, IUiAutomationConnection uiAutomationConnection, int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DActivityThread.java773 Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services,
776 if (services != null) {
778 ServiceManager.initServiceCache(services);
3068 //Slog.i(TAG, "Running services: " + mServices);
767 bindApplication(String processName, ApplicationInfo appInfo, List<ProviderInfo> providers, ComponentName instrumentationName, ProfilerInfo profilerInfo, Bundle instrumentationArgs, IInstrumentationWatcher instrumentationWatcher, IUiAutomationConnection instrumentationUiConnection, int debugMode, boolean enableOpenGlTrace, boolean isRestrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java102 boolean hasClientActivities; // Are there any client services with activities?
103 boolean hasStartedServices; // Are there any started services running in this process?
104 boolean foregroundServices; // Running any services that are foreground?
151 final ArraySet<ServiceRecord> services = new ArraySet<>(); field in class:ProcessRecord
152 // services that are currently executing code (need to remain foreground).
163 boolean execServicesFg; // do we need to be executing services in the foreground?
363 if (services.size() > 0) {
365 for (int i=0; i<services.size(); i++) {
366 pw.print(prefix); pw.print(" - "); pw.println(services.valueAt(i));
518 // If this process has bound to any services wit
[all...]
H A DActiveServices.java104 // The minimum amount of time between restarting services that we allow.
105 // That is, when multiple services are restarting, we won't allow each
120 // Maximum number of services that we allow to start in the background
133 * List of services that we have been asked to start,
141 * List of services that are scheduled to restart following a crash.
146 * List of services that are in the process of being destroyed.
167 * Information about services for a single user.
178 /* XXX eventually I'd like to have this based on processes instead of services.
179 * That is, if we try to start two services in a row both running in the same
181 * that remains until all services i
2087 collectPackageServicesLocked(String packageName, Set<String> filterByClasses, boolean evenPersistent, boolean doit, boolean killProcess, ArrayMap<ComponentName, ServiceRecord> services) argument
[all...]
/frameworks/base/services/print/java/com/android/server/print/
H A DUserState.java237 // They are visible only to print services.
251 // They are visible only to print services.
267 // They are visible only to print services.
351 // If services have created session, just add the observer.
372 // No services - nothing to do.
389 // No services - nothing to do.
405 // No services - nothing to do.
421 // No services - nothing to do.
437 // No services - nothing to do.
500 // No services
1368 handleDispatchCreatePrinterDiscoverySession( List<RemotePrintService> services) argument
1377 handleDispatchDestroyPrinterDiscoverySession( List<RemotePrintService> services) argument
1387 handleDispatchStartPrinterDiscovery( List<RemotePrintService> services, List<PrinterId> printerIds) argument
1396 handleDispatchStopPrinterDiscovery(List<RemotePrintService> services) argument
[all...]
/frameworks/native/cmds/atrace/
H A Datrace.cpp425 Vector<String16> services = sm->listServices(); local
426 for (size_t i = 0; i < services.size(); i++) {
427 sp<IBinder> obj = sm->checkService(services[i]);
436 String8 svc(services[i]);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 356 milliseconds

12