HomeSort by relevance Sort by last modified time
    Searched defs:apps (Results 151 - 175 of 283) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/services/core/java/com/android/server/am/
ServiceRecord.java 511 AppBindRecord a = i.apps.get(app);
516 i.apps.put(app, a);
599 // those dirty apps we will create a notification clearly
    [all...]
BatteryStatsService.java 1418 List<ApplicationInfo> apps = mContext.getPackageManager().getInstalledApplications( local
1456 List<ApplicationInfo> apps = mContext.getPackageManager().getInstalledApplications( local
    [all...]
ActivityManagerService.java 3265 SparseArray<ProcessRecord> apps = mProcessNames.getMap().valueAt(ip); local
6724 final SparseArray<ProcessRecord> apps = mProcessNames.getMap().valueAt(ip); local
6781 final SparseArray<ProcessRecord> apps = mProcessNames.getMap().valueAt(ip); local
7082 SparseArray<ProcessRecord> apps = mProcessNames.getMap().valueAt(ip); local
12902 final List<ApplicationInfo> apps = AppGlobals.getPackageManager() local
12927 final SparseArray<ProcessRecord> apps = mProcessNames.getMap().valueAt(ip); local
15599 SparseArray<ProcessRecord> apps = mProcessNames.getMap().valueAt(ip); local
26402 final SparseArray<ProcessRecord> apps = mProcessNames.getMap().valueAt(ip); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
LauncherAppsService.java 332 List<ResolveInfo> apps = pmInt.queryIntentActivities(intent, local
336 return new ParceledListSlice<>(apps);
597 List<ResolveInfo> apps = pmInt.queryIntentActivities(launchIntent, local
601 final int size = apps.size();
603 ActivityInfo activityInfo = apps.get(i).activityInfo;
    [all...]
  /packages/apps/Settings/src/com/android/settings/datausage/
UnrestrictedDataAccess.java 142 ArrayList<AppEntry> apps = mSession.rebuild(mFilter, ApplicationsState.ALPHA_COMPARATOR); local
143 if (apps != null) {
144 onRebuildComplete(apps);
159 public void onRebuildComplete(ArrayList<AppEntry> apps) {
162 final int N = apps.size();
164 AppEntry entry = apps.get(i);
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnSettings.java 77 * Settings screen listing VPNs. Configured VPNs and networks managed by apps
524 // Fetch VPN-enabled apps from AppOps.
526 List<AppOpsManager.PackageOps> apps = aom.getPackagesForOps(new int[] {OP_ACTIVATE_VPN}); local
527 if (apps != null) {
528 for (AppOpsManager.PackageOps pkg : apps) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
AppManagementFragment.java 17 package com.android.tv.settings.device.apps;
467 public void onRebuildComplete(ArrayList<ApplicationsState.AppEntry> apps) {}
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
DeviceView.java 596 List<String> apps = new ArrayList<String>(clients.length); local
600 apps.add(name);
603 dlg = new SystraceOptionsDialogV2(parentShell, detector.getTags(), apps);
    [all...]
  /frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
NotificationManagerServiceTest.java 2423 List<NotifyingApp> apps = mBinderService.getRecentNotifyingAppsForUser(0).getList(); local
2440 List<NotifyingApp> apps = mBinderService.getRecentNotifyingAppsForUser(0).getList(); local
2475 List<NotifyingApp> apps = mBinderService.getRecentNotifyingAppsForUser(0).getList(); local
    [all...]
  /prebuilts/tools/common/m2/repository/xml-resolver/xml-resolver/1.2/
xml-resolver-1.2.jar 
  /cts/tests/tests/permission/src/android/permission/cts/
FileSystemPermissionTest.java 130 List<ApplicationInfo> apps = getContext() local
134 for (ApplicationInfo app : apps) {
428 @AppModeFull(reason = "Instant Apps cannot access proc_net labeled files")
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/restore/
PerformUnifiedRestoreTask.java 135 // Number of apps restored in this pass
205 List<PackageInfo> apps = local
208 filterSet = packagesToNames(apps);
210 Slog.i(TAG, "Full restore; asking about " + filterSet.length + " apps");
267 private String[] packagesToNames(List<PackageInfo> apps) {
268 final int N = apps.size();
271 names[i] = apps.get(i).packageName;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
IconCache.java 258 // Query for the set of apps
259 final List<LauncherActivityInfo> apps = mLauncherApps.getActivityList(null, user); local
260 // Fail if we don't have any apps
262 if (apps == null || apps.isEmpty()) {
268 updateDBIcons(user, apps, Process.myUserHandle().equals(user)
274 * Updates the persistent DB, such that only entries corresponding to {@param apps} remain in
278 private void updateDBIcons(UserHandle user, List<LauncherActivityInfo> apps,
288 for (LauncherActivityInfo app : apps) {
354 // Insert remaining apps
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/model/
LoaderTask.java 87 * - all apps icons
88 * - deep shortcuts within apps
127 // This way we don't start loading all apps until the workspace has settled
184 TraceHelper.partitionSection(TAG, "step 2.1: loading all apps");
187 TraceHelper.partitionSection(TAG, "step 2.2: Binding all apps");
385 // We allow auto install apps to have their intent
817 final List<LauncherActivityInfo> apps = mLauncherApps.getActivityList(null, user); local
    [all...]
  /system/update_engine/
omaha_request_action.cc 450 vector<App> apps; member in struct:chromeos_update_engine::OmahaParserData
491 data->apps.push_back(std::move(app));
493 if (!data->apps.empty())
494 data->apps.back().updatecheck_status = attrs["status"];
509 if (!data->apps.empty())
510 data->apps.back().url_codebase.push_back(attrs["codebase"]);
514 if (!data->apps.empty())
515 data->apps.back().packages.push_back({.name = attrs["name"],
520 if (!data->apps.empty())
521 data->apps.back().manifest_version = attrs[kTagVersion]
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
ApplicationsState.java 188 // Only the owner can see all apps.
294 // There are less apps now, some must have been uninstalled.
752 List<AppEntry> apps; local
754 apps = new ArrayList<>(mAppEntries);
759 for (int i=0; i<apps.size(); i++) {
760 AppEntry entry = apps.get(i);
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.app_1.3.100.v20130327-1442.jar 
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsService.java 1387 final List<ApplicationInfo> apps = mContext.getPackageManager().getInstalledApplications( local
    [all...]
NetworkPolicyManagerService.java 650 * Whitelists pre-defined apps for restrict background, but only if the user didn't already
682 // Ignore it - some apps on allow-in-data-usage-save are optional.
3780 final List<ApplicationInfo> apps; local
    [all...]
  /frameworks/base/services/usage/java/com/android/server/usage/
AppStandbyController.java 175 /** Whether we've queried the list of carrier privileged apps. */
179 /** List of carrier-privileged apps that should be excluded from standby */
562 * Check all running users' or specified user's apps to see if they enter an idle state.
744 * Check if it's been a while since last parole and let idle apps do some work.
1074 List<ApplicationInfo> apps; local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java 78 private int mBatchSize; // 0 is all apps at once
165 public void bindAllApplications(ArrayList<ApplicationInfo> apps);
166 public void bindAppsAdded(ArrayList<ApplicationInfo> apps);
167 public void bindAppsUpdated(ArrayList<ApplicationInfo> apps);
272 // From all apps
1911 List<LauncherActivityInfo> apps = null; local
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
BackupManagerService.java 278 // A similar synchronization mechanism around clearing apps' data for restore
656 // Keep a log of all the apps we've ever backed up, and what the dataset tokens are for both
942 List<PackageInfo> apps = local
2367 Set<String> apps; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
DeviceIdleController.java 256 * App IDs of built-in system apps that have been white-listed except for idle modes.
262 * App IDs of built-in system apps that have been white-listed.
311 * Current app IDs of temporarily whitelist apps for high-priority messages.
316 * Apps in the system whitelist that have been taken out (probably because the user wanted to).
1668 String[] apps = new String[size]; local
1679 String[] apps = new String[size]; local
1690 final String[] apps = new String[size]; local
1701 String[] apps = new String[size]; local
1712 String[] apps = new String[size]; local
1729 String[] apps = new String[size]; local
    [all...]
  /packages/apps/Launcher3/quickstep/libs/
sysui_shared.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/1.0/
compiler-1.0.jar 

Completed in 1693 milliseconds

1 2 3 4 5 67 8 91011>>