Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/pm/parsing/
DAndroidPackageParsingEquivalenceTest.kt40 val newAppInfo = newPackages.asSequence().map { newAppInfo(it, flags) } in applicationInfoEquality() constant
41 oldAppInfo.zip(newAppInfo).forEach { in applicationInfoEquality()
DPackageInfoUserFieldsTest.kt46 (new to newAppInfo(pkg = new, userId = userId)!!) in <lambda>()
DAndroidPackageInfoFlagBehaviorTest.kt63 { pkg, flags -> newAppInfo(pkg, flags) }, in <lambda>()
DAndroidPackageParsingTestBase.kt152 fun newAppInfo( in <lambda>() method
/frameworks/base/services/core/java/com/android/server/location/contexthub/
DContextHubServiceUtil.java269 ArrayList newAppInfo = new ArrayList<HubAppInfo>(); in toHubAppInfo_1_2() local
277 newAppInfo.add(newInfo); in toHubAppInfo_1_2()
279 return newAppInfo; in toHubAppInfo_1_2()
/frameworks/base/core/java/android/content/pm/
DRegisteredServicesCache.java379 ApplicationInfo newAppInfo = null; in updateServices() local
381 newAppInfo = mContext.getPackageManager().getApplicationInfoAsUser(pkg, 0, userId); in updateServices()
386 if ((newAppInfo == null) || (newAppInfo.versionCode != versionCode)) { in updateServices()
389 + " updated. New appInfo: " + newAppInfo); in updateServices()
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetServiceImpl.java3301 ApplicationInfo newAppInfo = null; in applyResourceOverlaysToWidgetsLocked() local
3303 newAppInfo = mPackageManager.getApplicationInfo(packageName, in applyResourceOverlaysToWidgetsLocked()
3309 if (newAppInfo == null || provider.info == null in applyResourceOverlaysToWidgetsLocked()
3314 if (oldAppInfo == null || !newAppInfo.sourceDir.equals(oldAppInfo.sourceDir)) { in applyResourceOverlaysToWidgetsLocked()
3324 oldAppInfo.overlayPaths = newAppInfo.overlayPaths.clone(); in applyResourceOverlaysToWidgetsLocked()
3325 oldAppInfo.resourceDirs = newAppInfo.resourceDirs.clone(); in applyResourceOverlaysToWidgetsLocked()