Home
last modified time | relevance | path

Searched refs:getAppsWithRevokedConsent (Results 1 – 25 of 28) sorted by relevance

12

/packages/modules/AdServices/adservices/tests/unittest/ui/src/com/android/adservices/service/consent/
DAppConsentStorageManagerTest.java225 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()
DAdServicesStorageManagerTest.java135 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent()
141 mAdServicesStorageManager.getAppsWithRevokedConsent(); in testGetKnownAppsWithConsent()
147 .getAppsWithRevokedConsent( in testGetKnownAppsWithConsent()
DConsentManagerV2Test.java1423 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 …]
DConsentManagerTest.java1480 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 …]
DAppConsentForRStorageManagerTest.java120 () -> mAppConsentForRStorageManager.getAppsWithRevokedConsent()); in testNotSupportMethodException()
/packages/modules/AdServices/adservices/tests/unittest/system-service/src/com/android/server/adservices/consent/
DAppConsentManagerTest.java345 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/
DAppConsentStorageManager.java120 public ImmutableList<String> getAppsWithRevokedConsent() throws IOException { in getAppsWithRevokedConsent() method in AppConsentStorageManager
122 mAppConsentDao.getAppsWithRevokedConsent().stream().collect(Collectors.toList())); in getAppsWithRevokedConsent()
DAdServicesStorageManager.java119 public ImmutableList<String> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method in AdServicesStorageManager
121 mAdServicesManager.getAppsWithRevokedConsent(getInstalledPackages())); in getAppsWithRevokedConsent()
DAppConsentForRStorageManager.java94 public ImmutableList<String> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method in AppConsentForRStorageManager
DIConsentStorage.java89 ImmutableList<String> getAppsWithRevokedConsent() throws IOException; in getAppsWithRevokedConsent() method
DConsentCompositeStorage.java175 public ImmutableList<String> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method in ConsentCompositeStorage
178 return storage.getAppsWithRevokedConsent(); in getAppsWithRevokedConsent()
DConsentManager.java683 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()
DConsentManagerV2.java589 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/
DAdServicesManagerServiceTest.java698 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/
DAppConsentDaoTest.java398 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/
DBlockedAppsViewModel.java123 return mConsentManager.getAppsWithRevokedConsent(); in getBlockedAppsFromConsentManager()
DAppsViewModel.java175 return mConsentManager.getAppsWithRevokedConsent(); in getBlockedAppsFromConsentManager()
/packages/modules/AdServices/adservices/framework/java/android/app/adservices/
DIAdServicesManager.aidl209 List<String> getAppsWithRevokedConsent(in List<String> installedPackages); in getAppsWithRevokedConsent() method
DAdServicesManager.java310 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/
DAppSearchConsentManager.java131 public ImmutableList<App> getAppsWithRevokedConsent() { in getAppsWithRevokedConsent() method in AppSearchConsentManager
501 List<App> revokedApps = getAppsWithRevokedConsent(); in migrateConsentDataIfNeeded()
DAppSearchConsentStorageManager.java159 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/
DAppConsentManager.java109 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/
DAppConsentDao.java141 public Set<String> getAppsWithRevokedConsent() throws IOException { in getAppsWithRevokedConsent() method in AppConsentDao
/packages/modules/AdServices/adservices/service/java/com/android/server/adservices/
DAdServicesManagerService.java632 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/
DDialogFragmentTest.java115 doReturn(blockedAppsList).when(mConsentManager).getAppsWithRevokedConsent(); in setup()

12