Home
last modified time | relevance | path

Searched refs:newAppInfo (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/location/contexthub/
DContextHubServiceUtil.java361 ArrayList newAppInfo = new ArrayList<HubAppInfo>(); in toHubAppInfo_1_2() local
369 newAppInfo.add(newInfo); in toHubAppInfo_1_2()
371 return newAppInfo; in toHubAppInfo_1_2()
/frameworks/base/core/java/android/content/pm/
DRegisteredServicesCache.java390 ApplicationInfo newAppInfo = null; in updateServices() local
392 newAppInfo = mContext.getPackageManager().getApplicationInfoAsUser(pkg, 0, userId); in updateServices()
397 if ((newAppInfo == null) || (newAppInfo.versionCode != versionCode)) { in updateServices()
400 + " updated. New appInfo: " + newAppInfo); in updateServices()
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetServiceImpl.java3870 ApplicationInfo newAppInfo = null; in applyResourceOverlaysToWidgetsLocked() local
3872 newAppInfo = mPackageManager.getApplicationInfo(packageName, in applyResourceOverlaysToWidgetsLocked()
3878 if (newAppInfo == null || provider.info == null in applyResourceOverlaysToWidgetsLocked()
3883 if (oldAppInfo == null || !newAppInfo.sourceDir.equals(oldAppInfo.sourceDir)) { in applyResourceOverlaysToWidgetsLocked()
3893 oldAppInfo.overlayPaths = newAppInfo.overlayPaths == null in applyResourceOverlaysToWidgetsLocked()
3894 ? null : newAppInfo.overlayPaths.clone(); in applyResourceOverlaysToWidgetsLocked()
3895 oldAppInfo.resourceDirs = newAppInfo.resourceDirs == null in applyResourceOverlaysToWidgetsLocked()
3896 ? null : newAppInfo.resourceDirs.clone(); in applyResourceOverlaysToWidgetsLocked()