Home
last modified time | relevance | path

Searched refs:installedApps (Results 1 – 11 of 11) sorted by relevance

/packages/modules/OnDevicePersonalization/tests/servicetests/src/com/android/ondevicepersonalization/services/data/user/
DUserDataCollectorTest.java120 assertTrue(mUserData.installedApps.size() > 0); in testUpdateUserData()
131 Set<String> userDataInstallApp = mUserData.installedApps; in updateInstalledAppsForUserData()
141 List<ApplicationInfo> installedApps = createApplicationInfos(APP_NAME_1, APP_NAME_3); in testUpdateInstalledAppHistory() local
145 mCollector.updateExistingAppInstall(installedApps, existingAppMap); in testUpdateInstalledAppHistory()
150 currentMap = mCollector.updateExistingAppInstall(installedApps, existingAppMap); in testUpdateInstalledAppHistory()
/packages/modules/OnDevicePersonalization/src/com/android/ondevicepersonalization/services/policyengine/data/impl/
DUserDataConnectionProvider.kt72 builder.setAppInfos(getInstallApps(rawUserData.installedApps)) in getUserData()
77 private fun getInstallApps(installedApps: Set<String>): Map<String, AppInfo> { in getInstallApps()
79 for (appName in installedApps) { in getInstallApps()
/packages/apps/Launcher3/go/quickstep/src/com/android/launcher3/model/
DAppShareabilityManager.java178 List<LauncherActivityInfo> installedApps = in updateCache() local
180 for (int i = 0, size = installedApps.size(); i < size; i++) { in updateCache()
181 packageNames.add(installedApps.get(i).getApplicationInfo().packageName); in updateCache()
/packages/modules/OnDevicePersonalization/src/com/android/ondevicepersonalization/services/data/user/
DUserDataCollector.java307 userData.installedApps.clear(); in clearUserData()
338 userData.installedApps = existingInstallApps.keySet(); in initialInstalledApp()
353 userData.installedApps = currentAppInstall.keySet(); in updateInstalledApps()
355 sLogger.d(TAG + ": Update RawUserData installAppList " + userData.installedApps); in updateInstalledApps()
DRawUserData.java51 public Set<String> installedApps = new HashSet<>(); field in RawUserData
/packages/apps/Settings/src/com/android/settings/development/
DDevelopmentAppPicker.java83 List<ApplicationInfo> installedApps = mPm.getInstalledApplications(0); in getCandidates() local
84 for (ApplicationInfo ai : installedApps) { in getCandidates()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/topics/
DAppUpdateManager.java630 Set<String> installedApps = new HashSet<>(currentInstalledApps); in getUnhandledInstalledApps() local
643 installedApps.removeAll(appsWithUsageOrReturnedTopics); in getUnhandledInstalledApps()
645 return installedApps; in getUnhandledInstalledApps()
/packages/modules/OnDevicePersonalization/tests/servicetests/src/com/android/ondevicepersonalization/services/policyengine/
DUserDataReaderTest.kt97 mockRawUserData.installedApps = setOf("app1", "app2", "app3") in initialRawUserData()
134 assertThat(userData.appInfos.keys).isEqualTo(mockRawUserData.installedApps) in testUserDataReaderWithAppInstall()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DIMeasurementDao.java166 List<Uri> getUninstalledAppNamesHavingMeasurementData(List<Uri> installedApps) in getUninstalledAppNamesHavingMeasurementData() argument
DMeasurementDao.java1522 public List<Uri> getUninstalledAppNamesHavingMeasurementData(List<Uri> installedApps) in getUninstalledAppNamesHavingMeasurementData() argument
1526 final String installedAppsFormatted = flattenAsSqlQueryList(installedApps); in getUninstalledAppNamesHavingMeasurementData()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/registration/
DAsyncRegistrationQueueRunnerTest.java5172 private void setUpApplicationStatus(List<String> installedApps, List<String> notInstalledApps) in setUpApplicationStatus() argument
5174 for (String packageName : installedApps) { in setUpApplicationStatus()