Searched defs:apps (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/services/tests/servicestests/test-apps/ConnTestApp/src/com/android/servicestests/apps/conntestapp/
H A DConnTestActivity.java17 package com.android.servicestests.apps.conntestapp;
/frameworks/base/services/core/java/com/android/server/am/
H A DIntentBindRecord.java35 /** All apps that have bound to this Intent. */
36 final ArrayMap<ProcessRecord, AppBindRecord> apps field in class:IntentBindRecord
65 for (int i=0; i<apps.size(); i++) {
66 AppBindRecord a = apps.valueAt(i);
81 for (int i=apps.size()-1; i>=0; i--) {
82 final ArraySet<ConnectionRecord> connections = apps.valueAt(i).connections;
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DPermissionMonitor.java117 List<PackageInfo> apps = mPackageManager.getInstalledPackages(GET_PERMISSIONS);
118 if (apps == null) {
119 loge("No apps");
123 for (PackageInfo app : apps) {
185 private void update(Set<Integer> users, Map<Integer, Boolean> apps, boolean add) { argument
188 for (Entry<Integer, Boolean> app : apps.entrySet()) {
262 Map<Integer, Boolean> apps = new HashMap<>();
263 apps.put(appUid, permission);
264 update(mUsers, apps, true);
273 Map<Integer, Boolean> apps
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowSurfacePlacer.java461 // Ensure that apps that are mid-starting are also scheduled to have their
504 "Checking " + appsCount + " opening apps (frozen="
647 private boolean canBeWallpaperTarget(ArraySet<AppWindowToken> apps) { argument
648 for (int i = apps.size() - 1; i >= 0; i--) {
649 if (apps.valueAt(i).windowsCanBeWallpaperTarget()) {
H A DDockedStackDividerController.java538 * @return The layer used for dimming the apps when dismissing docked/fullscreen stack. Just
558 // app in docked stack, better show recent apps so we actually get unminimized! However do
571 * @return true if {@param apps} contains an activity in the docked stack, false otherwise.
573 private boolean containsAppInDockedStack(ArraySet<AppWindowToken> apps) { argument
574 for (int i = apps.size() - 1; i >= 0; i--) {
575 final AppWindowToken token = apps.valueAt(i);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderCustomSupport.java179 * Helper class to look for interesting changes to the installed apps
232 List<ApplicationInfo> apps = mPm.getInstalledApplications(
235 if (apps == null) {
236 apps = new ArrayList<ApplicationInfo>();
242 List<AppEntry> entries = new ArrayList<AppEntry>(apps.size());
243 for (int i = 0; i < apps.size(); i++) {
244 AppEntry entry = new AppEntry(this, apps.get(i));
261 @Override public void deliverResult(List<AppEntry> apps) { argument
265 if (apps != null) {
266 onReleaseResources(apps);
323 onCanceled(List<AppEntry> apps) argument
358 onReleaseResources(List<AppEntry> apps) argument
[all...]
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderCustomSupport.java179 * Helper class to look for interesting changes to the installed apps
232 List<ApplicationInfo> apps = mPm.getInstalledApplications(
235 if (apps == null) {
236 apps = new ArrayList<ApplicationInfo>();
242 List<AppEntry> entries = new ArrayList<AppEntry>(apps.size());
243 for (int i = 0; i < apps.size(); i++) {
244 AppEntry entry = new AppEntry(this, apps.get(i));
261 @Override public void deliverResult(List<AppEntry> apps) { argument
265 if (apps != null) {
266 onReleaseResources(apps);
323 onCanceled(List<AppEntry> apps) argument
358 onReleaseResources(List<AppEntry> apps) argument
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
H A DApplicationsState.java149 // Only the owner can see all apps.
251 // There are less apps now, some must have been uninstalled.
679 List<AppEntry> apps;
681 apps = new ArrayList<>(mAppEntries);
686 for (int i=0; i<apps.size(); i++) {
687 AppEntry entry = apps.get(i);
855 // duplicates of work only apps showing up as 'not installed
1186 void onRebuildComplete(ArrayList<AppEntry> apps); argument
1409 * Displays a combined list with "downloaded" and "visible in launcher" apps only.
1434 * Displays a combined list with "downloaded" and "visible in launcher" apps onl
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_ContextHubService.cpp124 int handleQueryAppsResponse(const std::vector<HubAppInfo> apps,
333 const android::hardware::hidl_vec<HubAppInfo>& apps) {
335 handleQueryAppsResponse(apps,mContextHubId);
423 ALOGD("Sent query for apps to hub %" PRIu32 " with result %" PRIu32, hubId, r);
457 // Not checking if the apps are indeed distinct
647 int handleQueryAppsResponse(const std::vector<HubAppInfo> apps, argument
654 int numApps = apps.size();
659 // apps no longer running on Context Hub.
660 // 2) Populate our caches with the latest information of all these apps.
667 // B) The total number of apps i
332 handleAppsInfo( const android::hardware::hidl_vec<HubAppInfo>& apps) argument
[all...]
/frameworks/base/core/java/android/os/
H A DBatteryStats.java1201 // Top three apps using CPU in the last step, with times in 1/100 second.
2001 * Return count of number of times radio was up that could not be blamed on apps.
6090 List<ApplicationInfo> apps, int flags, long histStart) {
6130 if (apps != null) {
6132 for (int i=0; i<apps.size(); i++) {
6133 ApplicationInfo ai = apps.get(i);
6089 dumpCheckinLocked(Context context, PrintWriter pw, List<ApplicationInfo> apps, int flags, long histStart) argument
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java360 // A similar synchronization mechanism around clearing apps' data for restore
721 // Keep a log of all the apps we've ever backed up, and what the
776 // High level policy: apps are generally ineligible for backup if certain conditions apply
804 // backup?" check because we *do* still need to restore data to apps in this state (e.g.
1428 // Keep a log of what apps we've ever backed up. Because we might have
1504 List<PackageInfo> apps =
1534 foundApps.add(pkgName); // all apps that we've addressed already
1554 // New apps can arrive "out of band" via OTA and similar, so we also need to
1556 for (PackageInfo app : apps) {
1585 schedule = new ArrayList<FullBackupEntry>(apps
8706 packagesToNames(List<PackageInfo> apps) argument
[all...]
/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 302 milliseconds