/packages/modules/AdServices/adservices/tests/unittest/ui/src/com/android/adservices/service/consent/ |
D | AppConsentStorageManagerTest.java | 225 mAppConsentStorageManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsentAfterConsentForOneOfThemWasRevoked() 242 mAppConsentStorageManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsentAfterConsentForOneOfThemWasRevokedAndRestored() 253 appsWithRevokedConsent = mAppConsentStorageManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsentAfterConsentForOneOfThemWasRevokedAndRestored() 267 mAppConsentStorageManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_ppApiOnly() 331 mAppConsentStorageManager.getAppsWithRevokedConsent(); in testResetAllAppConsentAndAppData() 339 appsWithRevokedConsent = mAppConsentStorageManager.getAppsWithRevokedConsent(); in testResetAllAppConsentAndAppData() 353 mAppConsentStorageManager.getAppsWithRevokedConsent(); in testResetAllowedAppConsentAndAppData() 362 mAppConsentStorageManager.getAppsWithRevokedConsent(); in testResetAllowedAppConsentAndAppData()
|
D | AdServicesStorageManagerTest.java | 135 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent() 141 mAdServicesStorageManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent() 147 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent()
|
D | ConsentManagerV2Test.java | 1423 ImmutableList<App> appsWithRevokedConsent = mConsentManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_ppApiOnly() 1455 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent_systemServerOnly() 1459 ImmutableList<App> appsWithRevokedConsent = mConsentManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_systemServerOnly() 1465 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent_systemServerOnly() 1501 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1505 ImmutableList<App> appsWithRevokedConsent = mConsentManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1511 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1535 doReturn(revokedAppsList).when(mAppSearchConsentManagerMock).getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_appSearchOnly() 1538 ImmutableList<App> appsWithRevokedConsent = mConsentManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_appSearchOnly() 1541 verify(mAppSearchConsentManagerMock).getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_appSearchOnly() [all …]
|
D | ConsentManagerTest.java | 1480 ImmutableList<App> appsWithRevokedConsent = mConsentManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_ppApiOnly() 1512 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent_systemServerOnly() 1516 ImmutableList<App> appsWithRevokedConsent = mConsentManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_systemServerOnly() 1522 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent_systemServerOnly() 1558 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1562 ImmutableList<App> appsWithRevokedConsent = mConsentManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1568 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent_ppApiAndSystemServer() 1592 doReturn(revokedAppsList).when(mAppSearchConsentManagerMock).getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_appSearchOnly() 1595 ImmutableList<App> appsWithRevokedConsent = mConsentManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_appSearchOnly() 1598 verify(mAppSearchConsentManagerMock).getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent_appSearchOnly() [all …]
|
D | AppConsentForRStorageManagerTest.java | 120 () -> mAppConsentForRStorageManager.getAppsWithRevokedConsent()); in testNotSupportMethodException()
|
/packages/modules/AdServices/adservices/tests/unittest/system-service/src/com/android/server/adservices/consent/ |
D | AppConsentManagerTest.java | 345 mAppConsentManager.getAppsWithRevokedConsent(applicationsInstalled); in testGetAppsWithRevokedConsent() 363 mAppConsentManager.getAppsWithRevokedConsent(new ArrayList<>()); in testGetAppsWithRevokedConsentNonExistentApp() 403 assertFalse(mAppConsentManager.getAppsWithRevokedConsent(applicationsInstalled).isEmpty()); in testClearKnownAppsWithConsent()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/consent/ |
D | AppConsentStorageManager.java | 120 public ImmutableList<String> getAppsWithRevokedConsent() throws IOException { in getAppsWithRevokedConsent() method in AppConsentStorageManager 122 mAppConsentDao.getAppsWithRevokedConsent().stream().collect(Collectors.toList())); in getAppsWithRevokedConsent()
|
D | AdServicesStorageManager.java | 119 public ImmutableList<String> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method in AdServicesStorageManager 121 mAdServicesManager.getAppsWithRevokedConsent(getInstalledPackages())); in getAppsWithRevokedConsent()
|
D | AppConsentForRStorageManager.java | 94 public ImmutableList<String> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method in AppConsentForRStorageManager
|
D | IConsentStorage.java | 89 ImmutableList<String> getAppsWithRevokedConsent() throws IOException; in getAppsWithRevokedConsent() method
|
D | ConsentCompositeStorage.java | 175 public ImmutableList<String> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method in ConsentCompositeStorage 178 return storage.getAppsWithRevokedConsent(); in getAppsWithRevokedConsent()
|
D | ConsentManager.java | 683 public ImmutableList<App> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method 685 return ConsentManagerV2.getInstance().getAppsWithRevokedConsent(); in getAppsWithRevokedConsent() 691 mAppConsentDao.getAppsWithRevokedConsent().stream() in getAppsWithRevokedConsent() 697 .getAppsWithRevokedConsent( in getAppsWithRevokedConsent() 703 () -> mAppSearchConsentManager.getAppsWithRevokedConsent(), in getAppsWithRevokedConsent()
|
D | ConsentManagerV2.java | 589 public ImmutableList<App> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method in ConsentManagerV2 591 mConsentCompositeStorage.getAppsWithRevokedConsent().stream() in getAppsWithRevokedConsent()
|
/packages/modules/AdServices/adservices/tests/unittest/system-service/src/com/android/server/adservices/ |
D | AdServicesManagerServiceTest.java | 698 mService.getAppsWithRevokedConsent( in testSetAppConsent() 731 mService.getAppsWithRevokedConsent( in testClearAppConsent() 747 mService.getAppsWithRevokedConsent( in testClearAppConsent() 761 mService.getAppsWithRevokedConsent( in testClearAppConsent() 778 mService.getAppsWithRevokedConsent( in testClearAppConsent() 792 mService.getAppsWithRevokedConsent( in testClearAppConsent()
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/consent/ |
D | AppConsentDaoTest.java | 398 final Set<String> appsWithRevokedConsent = mAppConsentDao.getAppsWithRevokedConsent(); in testGetAppsWithRevokedConsent() 418 final Set<String> appsWithRevokedConsent = mAppConsentDao.getAppsWithRevokedConsent(); in testGetAppsWithRevokedConsentNonExistentApp() 466 assertFalse(mAppConsentDao.getAppsWithRevokedConsent().isEmpty()); in testClearKnownAppsWithConsent()
|
/packages/modules/AdServices/adservices/apk/java/com/android/adservices/ui/settings/viewmodels/ |
D | BlockedAppsViewModel.java | 123 return mConsentManager.getAppsWithRevokedConsent(); in getBlockedAppsFromConsentManager()
|
D | AppsViewModel.java | 175 return mConsentManager.getAppsWithRevokedConsent(); in getBlockedAppsFromConsentManager()
|
/packages/modules/AdServices/adservices/framework/java/android/app/adservices/ |
D | IAdServicesManager.aidl | 209 List<String> getAppsWithRevokedConsent(in List<String> installedPackages); in getAppsWithRevokedConsent() method
|
D | AdServicesManager.java | 310 public List<String> getAppsWithRevokedConsent(List<String> installedPackages) { in getAppsWithRevokedConsent() method in AdServicesManager 312 return mService.getAppsWithRevokedConsent(installedPackages); in getAppsWithRevokedConsent()
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/appsearch/ |
D | AppSearchConsentManager.java | 131 public ImmutableList<App> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method in AppSearchConsentManager 501 List<App> revokedApps = getAppsWithRevokedConsent(); in migrateConsentDataIfNeeded()
|
D | AppSearchConsentStorageManager.java | 159 public ImmutableList<String> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method in AppSearchConsentStorageManager 368 List<String> revokedApps = getAppsWithRevokedConsent(); in migrateConsentDataIfNeeded()
|
/packages/modules/AdServices/adservices/service/java/com/android/server/adservices/consent/ |
D | AppConsentManager.java | 109 public List<String> getAppsWithRevokedConsent(@NonNull List<String> installedPackages) in getAppsWithRevokedConsent() method in AppConsentManager
|
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/consent/ |
D | AppConsentDao.java | 141 public Set<String> getAppsWithRevokedConsent() throws IOException { in getAppsWithRevokedConsent() method in AppConsentDao
|
/packages/modules/AdServices/adservices/service/java/com/android/server/adservices/ |
D | AdServicesManagerService.java | 632 public List<String> getAppsWithRevokedConsent(@NonNull List<String> installedPackages) { in getAppsWithRevokedConsent() method in AdServicesManagerService 636 .getAppsWithRevokedConsent(installedPackages)); in getAppsWithRevokedConsent()
|
/packages/modules/AdServices/adservices/apk/tests/settings/src/com/android/adservices/ui/settings/ |
D | DialogFragmentTest.java | 115 doReturn(blockedAppsList).when(mConsentManager).getAppsWithRevokedConsent(); in setup()
|