Searched refs:services (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/cmds/dumpsys/
H A Ddumpsys.cpp39 Vector<String16> services; local
42 services = sm->listServices();
43 services.sort(sort_func);
46 services.add(String16(argv[1]));
52 const size_t N = services.size();
55 // first print a list of the current services
56 aout << "Currently running services:" << endl;
59 sp<IBinder> service = sm->checkService(services[i]);
61 aout << " " << services[i] << endl;
67 sp<IBinder> service = sm->checkService(services[
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
H A DAccessibilityManager.java79 * Requests interruption of the accessibility feedback from all accessibility services.
85 * Returns the {@link ServiceInfo}s of the installed accessibility services.
92 List<ServiceInfo> services = null;
93 return Collections.unmodifiableList(services);
/frameworks/base/services/java/
H A DAndroid.mk12 LOCAL_MODULE:= services
/frameworks/base/services/tests/servicestests/
H A DAndroid.mk11 LOCAL_JAVA_LIBRARIES := android.test.runner services
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityManager.java165 * Requests interruption of the accessibility feedback from all accessibility services.
174 Log.i(LOG_TAG, "Requested interrupt from all services");
177 Log.e(LOG_TAG, "Error while requesting interrupt from all services. ", re);
182 * Returns the {@link ServiceInfo}s of the installed accessibility services.
187 List<ServiceInfo> services = null;
189 services = mService.getAccessibilityServiceList();
191 Log.i(LOG_TAG, "Installed AccessibilityServices " + services);
196 return Collections.unmodifiableList(services);
/frameworks/base/core/java/android/content/pm/
H A DPackageInfo.java95 public ServiceInfo[] services; field in class:PackageInfo
213 dest.writeTypedArray(services, parcelableFlags);
248 services = source.createTypedArray(ServiceInfo.CREATOR);
H A DRegisteredServicesCache.java58 * A cache of registered services. This cache
60 * removed and changed. The services are referred to by type V and
83 * This file contains the list of known services. We would like to maintain this forever
128 Map<V, ServiceInfo<V>> services;
130 services = mServices;
132 fout.println("RegisteredServicesCache: " + services.size() + " services");
133 for (ServiceInfo info : services.values()) {
283 Log.d(TAG, "found " + serviceInfos.size() + " services");
347 Log.d(TAG, "writing updated list of persistent services");
[all...]
H A DPackageParser.java255 int N = p.services.size();
258 pi.services = new ServiceInfo[N];
262 if (p.services.get(i).info.enabled) num++;
264 pi.services = new ServiceInfo[num];
267 final Service service = p.services.get(i);
270 pi.services[j++] = generateServiceInfo(p.services.get(i), flags);
1624 owner.services.add(s);
2662 public final ArrayList<Service> services = new ArrayList<Service>(0); field in class:PackageParser.Package
2749 for (int i=services
[all...]
/frameworks/base/cmds/service/
H A Dservice.cpp2 * Command line access to services.
104 Vector<String16> services = sm->listServices(); local
105 aout << "Found " << services.size() << " services:" << endl;
106 for (unsigned i = 0; i < services.size(); i++) {
107 String16 name = services[i];
/frameworks/base/services/java/com/android/server/
H A DAccessibilityManagerService.java369 * @param isDefault True to notify default listeners, not default services.
385 // An out of bounds exception can happen if services are going away
387 // there are no more services to notify.
429 List<Service> services = mServices;
432 for (int i = 0, count = services.size(); i < count; i++) {
433 Service service = services.get(i);
492 * event source and already notified services for that event type. Specifically, a
494 * providing the same feedback type has been notified. Exception are services the
500 * @param handledFeedbackTypes The feedback types for which services have been notified.
535 * Manages services b
[all...]
H A DInputMethodManagerService.java1429 List<ResolveInfo> services = pm.queryIntentServices(
1433 for (int i = 0; i < services.size(); ++i) {
1434 ResolveInfo ri = services.get(i);
H A DPackageManagerService.java290 // All available services, for your resolving pleasure.
2290 resolvedType, flags, pkg.services);
3325 N = pkg.services.size();
3328 PackageParser.Service s = pkg.services.get(i);
3877 N = pkg.services.size();
3880 PackageParser.Service s = pkg.services.get(i);
/frameworks/base/services/java/com/android/server/am/
H A DProcessRecord.java65 boolean foregroundServices; // Running any services that are foreground?
92 final HashSet services = new HashSet(); field in class:ProcessRecord
93 // services that are currently executing code (need to remain foreground).
203 if (services.size() > 0) {
204 pw.print(prefix); pw.print("services="); pw.println(services);
H A DActivityManagerService.java238 // The minimum amount of time between restarting services that we allow.
239 // That is, when multiple services are restarting, we won't allow each
252 // application to be bad and stop and its services and reject broadcasts.
665 * All currently running services.
671 * All currently running services indexed by the Intent used to start them.
684 * List of services that we have been asked to start,
693 * List of services that are scheduled to restart following a crash.
699 * List of services that are in the process of being stopped.
804 * For example, references to the commonly used services.
1579 * lazily setup to make sure the services ar
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java250 HashMap<String, IBinder> services = data.readHashMap(null);
254 config, services);
652 Map<String, IBinder> services) throws RemoteException {
670 data.writeMap(services);
648 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, String profileName, Bundle testArgs, IInstrumentationWatcher testWatcher, int debugMode, boolean restrictedBackupMode, Configuration config, Map<String, IBinder> services) argument
H A DIApplicationThread.java84 Configuration config, Map<String, IBinder> services) throws RemoteException;
81 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, String profileName, Bundle testArguments, IInstrumentationWatcher testWatcher, int debugMode, boolean restrictedBackupMode, Configuration config, Map<String, IBinder> services) argument
H A DActivityThread.java1637 Map<String, IBinder> services) {
1639 if (services != null) {
1641 ServiceManager.initServiceCache(services);
3096 //Slog.i(TAG, "Running services: " + mServices);
1632 bindApplication(String processName, ApplicationInfo appInfo, List<ProviderInfo> providers, ComponentName instrumentationName, String profileFile, Bundle instrumentationArgs, IInstrumentationWatcher instrumentationWatcher, int debugMode, boolean isRestrictedBackupMode, Configuration config, Map<String, IBinder> services) argument

Completed in 313 milliseconds