Home
last modified time | relevance | path

Searched refs:currentInstalledApps (Results 1 – 2 of 2) sorted by relevance

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/topics/
DAppUpdateManager.java217 Set<String> currentInstalledApps = getCurrentInstalledApps(context); in reconcileUninstalledApps() local
218 Set<String> unhandledUninstalledApps = getUnhandledUninstalledApps(currentInstalledApps); in reconcileUninstalledApps()
264 Set<String> currentInstalledApps = getCurrentInstalledApps(context); in reconcileInstalledApps() local
265 Set<String> unhandledInstalledApps = getUnhandledInstalledApps(currentInstalledApps); in reconcileInstalledApps()
602 Set<String> getUnhandledUninstalledApps(@NonNull Set<String> currentInstalledApps) { in getUnhandledUninstalledApps() argument
616 appsWithUsage.removeAll(currentInstalledApps); in getUnhandledUninstalledApps()
628 Set<String> getUnhandledInstalledApps(@NonNull Set<String> currentInstalledApps) { in getUnhandledInstalledApps() argument
630 Set<String> installedApps = new HashSet<>(currentInstalledApps); in getUnhandledInstalledApps()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/topics/
DAppUpdateManagerTest.java372 Set<String> currentInstalledApps = Set.of("app1", "app2", "app5"); in testGetUnhandledUninstalledApps() local
395 assertThat(mAppUpdateManager.getUnhandledUninstalledApps(currentInstalledApps)) in testGetUnhandledUninstalledApps()
402 Set<String> currentInstalledApps = Set.of("app1", "app2", "app3", "app4"); in testGetUnhandledInstalledApps() local
425 assertThat(mAppUpdateManager.getUnhandledInstalledApps(currentInstalledApps)) in testGetUnhandledInstalledApps()