Searched defs:services (Results 1 - 8 of 8) 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/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/core/java/android/content/pm/
H A DPackageInfo.java107 public ServiceInfo[] services; field in class:PackageInfo
227 dest.writeTypedArray(services, parcelableFlags);
264 services = source.createTypedArray(ServiceInfo.CREATOR);
H A DPackageParser.java260 int N = p.services.size();
263 pi.services = new ServiceInfo[N];
267 if (p.services.get(i).info.enabled) num++;
269 pi.services = new ServiceInfo[num];
272 final Service service = p.services.get(i);
275 pi.services[j++] = generateServiceInfo(p.services.get(i), flags);
1669 owner.services.add(s);
2442 // A heavy-weight application can not have services in its main process
2445 outError[0] = "Heavy-weight applications can not have services i
2733 public final ArrayList<Service> services = new ArrayList<Service>(0); field in class:PackageParser.Package
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationThreadNative.java250 HashMap<String, IBinder> services = data.readHashMap(null);
254 config, services);
653 Map<String, IBinder> services) throws RemoteException {
671 data.writeMap(services);
649 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.java540 Map<String, IBinder> services) {
542 if (services != null) {
544 ServiceManager.initServiceCache(services);
2088 //Slog.i(TAG, "Running services: " + mServices);
535 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
/frameworks/base/services/java/com/android/server/am/
H A DProcessRecord.java65 boolean foregroundServices; // Running any services that are foreground?
95 final HashSet<ServiceRecord> services = new HashSet<ServiceRecord>(); field in class:ProcessRecord
96 // services that are currently executing code (need to remain foreground).
227 if (services.size() > 0) {
228 pw.print(prefix); pw.print("services="); pw.println(services);

Completed in 94 milliseconds