/packages/modules/AdServices/adservices/tests/unittest/ui/src/com/android/adservices/service/consent/ |
D | AppConsentStorageManagerTest.java | 122 .getKnownAppsWithConsent() in testClearAllAppConsentData() 223 mAppConsentStorageManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsentAfterConsentForOneOfThemWasRevoked() 240 mAppConsentStorageManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsentAfterConsentForOneOfThemWasRevokedAndRestored() 252 knownAppsWithConsent = mAppConsentStorageManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsentAfterConsentForOneOfThemWasRevokedAndRestored() 265 mAppConsentStorageManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_ppApiOnly() 329 mAppConsentStorageManager.getKnownAppsWithConsent(); in testResetAllAppConsentAndAppData() 338 knownAppsWithConsent = mAppConsentStorageManager.getKnownAppsWithConsent(); in testResetAllAppConsentAndAppData() 351 mAppConsentStorageManager.getKnownAppsWithConsent(); in testResetAllowedAppConsentAndAppData() 360 mAppConsentStorageManager.getKnownAppsWithConsent(); in testResetAllowedAppConsentAndAppData() 436 .getKnownAppsWithConsent() in setConsentForOneApp()
|
D | AdServicesStorageManagerTest.java | 131 .getKnownAppsWithConsent( in testGetKnownAppsWithConsent() 139 mAdServicesStorageManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent() 144 .getKnownAppsWithConsent( in testGetKnownAppsWithConsent()
|
D | ConsentManagerV2Test.java | 1422 ImmutableList<App> knownAppsWithConsent = mConsentManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_ppApiOnly() 1451 .getKnownAppsWithConsent( in testGetKnownAppsWithConsent_systemServerOnly() 1458 ImmutableList<App> knownAppsWithConsent = mConsentManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_systemServerOnly() 1462 .getKnownAppsWithConsent( in testGetKnownAppsWithConsent_systemServerOnly() 1497 .getKnownAppsWithConsent( in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1504 ImmutableList<App> knownAppsWithConsent = mConsentManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1508 .getKnownAppsWithConsent( in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1534 doReturn(consentedAppsList).when(mAppSearchConsentManagerMock).getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_appSearchOnly() 1537 ImmutableList<App> knownAppsWithConsent = mConsentManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_appSearchOnly() 1540 verify(mAppSearchConsentManagerMock).getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_appSearchOnly() [all …]
|
D | ConsentManagerTest.java | 1479 ImmutableList<App> knownAppsWithConsent = mConsentManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_ppApiOnly() 1508 .getKnownAppsWithConsent( in testGetKnownAppsWithConsent_systemServerOnly() 1515 ImmutableList<App> knownAppsWithConsent = mConsentManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_systemServerOnly() 1519 .getKnownAppsWithConsent( in testGetKnownAppsWithConsent_systemServerOnly() 1554 .getKnownAppsWithConsent( in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1561 ImmutableList<App> knownAppsWithConsent = mConsentManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1565 .getKnownAppsWithConsent( in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1591 doReturn(consentedAppsList).when(mAppSearchConsentManagerMock).getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_appSearchOnly() 1594 ImmutableList<App> knownAppsWithConsent = mConsentManager.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_appSearchOnly() 1597 verify(mAppSearchConsentManagerMock).getKnownAppsWithConsent(); in testGetKnownAppsWithConsent_appSearchOnly() [all …]
|
D | AppConsentForRStorageManagerTest.java | 124 () -> mAppConsentForRStorageManager.getKnownAppsWithConsent()); in testNotSupportMethodException()
|
/packages/modules/AdServices/adservices/tests/unittest/system-service/src/com/android/server/adservices/consent/ |
D | AppConsentManagerTest.java | 308 mAppConsentManager.getKnownAppsWithConsent(applicationsInstalled); in testGetKnownAppsWithConsent() 326 mAppConsentManager.getKnownAppsWithConsent(new ArrayList<>()); in testGetKnownAppsWithConsentNotExistentApp() 402 assertTrue(mAppConsentManager.getKnownAppsWithConsent(applicationsInstalled).isEmpty()); in testClearKnownAppsWithConsent()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/consent/ |
D | AppConsentStorageManager.java | 179 public ImmutableList<String> getKnownAppsWithConsent() throws IOException { in getKnownAppsWithConsent() method in AppConsentStorageManager 181 mAppConsentDao.getKnownAppsWithConsent().stream().collect(Collectors.toList())); in getKnownAppsWithConsent()
|
D | AdServicesStorageManager.java | 166 public ImmutableList<String> getKnownAppsWithConsent() { in getKnownAppsWithConsent() method in AdServicesStorageManager 168 mAdServicesManager.getKnownAppsWithConsent(getInstalledPackages())); in getKnownAppsWithConsent()
|
D | AppConsentForRStorageManager.java | 112 public ImmutableList<String> getKnownAppsWithConsent() throws IOException { in getKnownAppsWithConsent() method in AppConsentForRStorageManager
|
D | IConsentStorage.java | 125 ImmutableList<String> getKnownAppsWithConsent() throws IOException; in getKnownAppsWithConsent() method
|
D | ConsentCompositeStorage.java | 305 public ImmutableList<String> getKnownAppsWithConsent() { in getKnownAppsWithConsent() method in ConsentCompositeStorage 308 return storage.getKnownAppsWithConsent(); in getKnownAppsWithConsent()
|
D | ConsentManager.java | 648 public ImmutableList<App> getKnownAppsWithConsent() { in getKnownAppsWithConsent() method in ConsentManager 650 return ConsentManagerV2.getInstance().getKnownAppsWithConsent(); in getKnownAppsWithConsent() 656 mAppConsentDao.getKnownAppsWithConsent().stream() in getKnownAppsWithConsent() 662 .getKnownAppsWithConsent( in getKnownAppsWithConsent() 668 () -> mAppSearchConsentManager.getKnownAppsWithConsent(), in getKnownAppsWithConsent()
|
D | ConsentManagerV2.java | 578 public ImmutableList<App> getKnownAppsWithConsent() { in getKnownAppsWithConsent() method in ConsentManagerV2 580 mConsentCompositeStorage.getKnownAppsWithConsent().stream() in getKnownAppsWithConsent()
|
/packages/modules/AdServices/adservices/tests/unittest/system-service/src/com/android/server/adservices/ |
D | AdServicesManagerServiceTest.java | 691 mService.getKnownAppsWithConsent( in testSetAppConsent() 724 mService.getKnownAppsWithConsent( in testClearAppConsent() 741 mService.getKnownAppsWithConsent( in testClearAppConsent() 755 mService.getKnownAppsWithConsent( in testClearAppConsent() 772 mService.getKnownAppsWithConsent( in testClearAppConsent() 786 mService.getKnownAppsWithConsent( in testClearAppConsent()
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/consent/ |
D | AppConsentDaoTest.java | 352 final Set<String> knownAppsWithConsent = mAppConsentDao.getKnownAppsWithConsent(); in testGetKnownAppsWithConsent() 372 final Set<String> knownAppsWithConsent = mAppConsentDao.getKnownAppsWithConsent(); in testGetKnownAppsWithConsentNotExistentApp() 465 assertTrue(mAppConsentDao.getKnownAppsWithConsent().isEmpty()); in testClearKnownAppsWithConsent()
|
/packages/modules/AdServices/adservices/framework/java/android/app/adservices/ |
D | IAdServicesManager.aidl | 207 List<String> getKnownAppsWithConsent(in List<String> installedPackages); in getKnownAppsWithConsent() method
|
D | AdServicesManager.java | 300 public List<String> getKnownAppsWithConsent(List<String> installedPackages) { in getKnownAppsWithConsent() method in AdServicesManager 302 return mService.getKnownAppsWithConsent(installedPackages); in getKnownAppsWithConsent()
|
/packages/modules/AdServices/adservices/apk/java/com/android/adservices/ui/settings/viewmodels/ |
D | MainViewModel.java | 145 return mConsentManager.getKnownAppsWithConsent().size(); in getCountOfApps()
|
D | AppsViewModel.java | 171 return mConsentManager.getKnownAppsWithConsent(); in getAppsFromConsentManager()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/appsearch/ |
D | AppSearchConsentManager.java | 111 public ImmutableList<App> getKnownAppsWithConsent() { in getKnownAppsWithConsent() method in AppSearchConsentManager 491 List<App> consentedApps = getKnownAppsWithConsent(); in migrateConsentDataIfNeeded()
|
D | AppSearchConsentStorageManager.java | 204 public ImmutableList<String> getKnownAppsWithConsent() { in getKnownAppsWithConsent() method in AppSearchConsentStorageManager 361 List<String> consentedApps = getKnownAppsWithConsent(); in migrateConsentDataIfNeeded()
|
/packages/modules/AdServices/adservices/service/java/com/android/server/adservices/consent/ |
D | AppConsentManager.java | 89 public List<String> getKnownAppsWithConsent(@NonNull List<String> installedPackages) { in getKnownAppsWithConsent() method in AppConsentManager
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/consent/ |
D | AppConsentDao.java | 122 public Set<String> getKnownAppsWithConsent() throws IOException { in getKnownAppsWithConsent() method in AppConsentDao
|
/packages/modules/AdServices/adservices/service/java/com/android/server/adservices/ |
D | AdServicesManagerService.java | 623 public List<String> getKnownAppsWithConsent(@NonNull List<String> installedPackages) { in getKnownAppsWithConsent() method in AdServicesManagerService 627 .getKnownAppsWithConsent(installedPackages)); in getKnownAppsWithConsent()
|
/packages/modules/AdServices/adservices/apk/tests/settings/src/com/android/adservices/ui/settings/ |
D | DialogFragmentTest.java | 110 doReturn(appsList).when(mConsentManager).getKnownAppsWithConsent(); in setup()
|