Home
last modified time | relevance | path

Searched refs:recordUserManualInteractionWithConsent (Results 1 – 25 of 35) sorted by relevance

12

/packages/modules/AdServices/adservices/apk/java/com/android/adservices/ui/ganotifications/
DConsentNotificationGaFragment.java132 .recordUserManualInteractionWithConsent( in setupListeners()
262 .recordUserManualInteractionWithConsent( in onMoreOrAcceptClicked()
273 .recordUserManualInteractionWithConsent( in onMoreOrAcceptClicked()
DConsentNotificationGaV2Screen2Fragment.java114 .recordUserManualInteractionWithConsent( in setupListeners()
220 .recordUserManualInteractionWithConsent( in onMoreOrAcceptClicked()
/packages/modules/AdServices/adservices/tests/unittest/ui/src/com/android/adservices/service/consent/
DConsentCompositeStorageTest.java102 consentCompositeStorage.recordUserManualInteractionWithConsent(1); in testAllWriteMethods()
142 Mockito.verify(consentStorage).recordUserManualInteractionWithConsent(eq(1)); in verifySetMethodCalled()
DAdServicesStorageManagerTest.java324 mAdServicesStorageManager.recordUserManualInteractionWithConsent( in testManualInteractionWithConsentRecorded()
331 verify(mMockIAdServicesManager).recordUserManualInteractionWithConsent(anyInt()); in testManualInteractionWithConsentRecorded()
DConsentManagerV2Test.java2564 verify(mMockIAdServicesManager, never()).recordUserManualInteractionWithConsent(anyInt()); in testHandleConsentMigrationFromAppSearchIfNeeded_ExtServices()
2789 .recordUserManualInteractionWithConsent(anyInt()); in testHandleConsentMigrationFromAppSearchIfNeeded_notMigrated()
2824 verify(mAdServicesStorageManager).recordUserManualInteractionWithConsent(anyInt()); in testHandleConsentMigrationFromAppSearchIfNeeded()
3225 spyConsentManager.recordUserManualInteractionWithConsent(MANUAL_INTERACTIONS_RECORDED); in testManualInteractionWithConsentRecorded_PpApiOnly()
3231 verify(mMockIAdServicesManager, never()).recordUserManualInteractionWithConsent(anyInt()); in testManualInteractionWithConsentRecorded_PpApiOnly()
3248 spyConsentManager.recordUserManualInteractionWithConsent(MANUAL_INTERACTIONS_RECORDED); in testManualInteractionWithConsentRecorded_SystemServerOnly()
3254 verify(mMockIAdServicesManager).recordUserManualInteractionWithConsent(anyInt()); in testManualInteractionWithConsentRecorded_SystemServerOnly()
3278 spyConsentManager.recordUserManualInteractionWithConsent(MANUAL_INTERACTIONS_RECORDED); in testManualInteractionWithConsentRecorded_PpApiAndSystemServer()
3284 verify(mMockIAdServicesManager).recordUserManualInteractionWithConsent(anyInt()); in testManualInteractionWithConsentRecorded_PpApiAndSystemServer()
3304 spyConsentManager.recordUserManualInteractionWithConsent(MANUAL_INTERACTIONS_RECORDED); in testManualInteractionWithConsentRecorded_appSearchOnly()
[all …]
DConsentManagerTest.java2681 verify(mMockIAdServicesManager, never()).recordUserManualInteractionWithConsent(anyInt()); in testHandleConsentMigrationFromAppSearchIfNeeded_ExtServices()
2908 verify(mockAdServicesManager, never()).recordUserManualInteractionWithConsent(anyInt()); in testHandleConsentMigrationFromAppSearchIfNeeded_notMigrated()
2947 verify(mockAdServicesManager).recordUserManualInteractionWithConsent(anyInt()); in testHandleConsentMigrationFromAppSearchIfNeeded()
3490 spyConsentManager.recordUserManualInteractionWithConsent(MANUAL_INTERACTIONS_RECORDED); in testManualInteractionWithConsentRecorded_PpApiOnly()
3496 verify(mMockIAdServicesManager, never()).recordUserManualInteractionWithConsent(anyInt()); in testManualInteractionWithConsentRecorded_PpApiOnly()
3513 spyConsentManager.recordUserManualInteractionWithConsent(MANUAL_INTERACTIONS_RECORDED); in testManualInteractionWithConsentRecorded_SystemServerOnly()
3519 verify(mMockIAdServicesManager).recordUserManualInteractionWithConsent(anyInt()); in testManualInteractionWithConsentRecorded_SystemServerOnly()
3543 spyConsentManager.recordUserManualInteractionWithConsent(MANUAL_INTERACTIONS_RECORDED); in testManualInteractionWithConsentRecorded_PpApiAndSystemServer()
3549 verify(mMockIAdServicesManager).recordUserManualInteractionWithConsent(anyInt()); in testManualInteractionWithConsentRecorded_PpApiAndSystemServer()
3569 spyConsentManager.recordUserManualInteractionWithConsent(MANUAL_INTERACTIONS_RECORDED); in testManualInteractionWithConsentRecorded_appSearchOnly()
[all …]
/packages/modules/AdServices/adservices/apk/java/com/android/adservices/ui/notifications/
DConsentNotificationFragment.java120 .recordUserManualInteractionWithConsent( in setupListeners()
249 .recordUserManualInteractionWithConsent( in onMoreOrAcceptClicked()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/consent/
DAdServicesStorageManager.java261 public void recordUserManualInteractionWithConsent(int interaction) { in recordUserManualInteractionWithConsent() method in AdServicesStorageManager
262 mAdServicesManager.recordUserManualInteractionWithConsent(interaction); in recordUserManualInteractionWithConsent()
DIConsentStorage.java177 void recordUserManualInteractionWithConsent(int interaction) throws IOException; in recordUserManualInteractionWithConsent() method
DConsentManagerV2.java766 public void recordUserManualInteractionWithConsent(@UserManualInteraction int interaction) { in recordUserManualInteractionWithConsent() method in ConsentManagerV2
767 mConsentCompositeStorage.recordUserManualInteractionWithConsent(interaction); in recordUserManualInteractionWithConsent()
958 adServicesManager.recordUserManualInteractionWithConsent( in migratePpApiConsentToSystemService()
1170 adServicesStorageManager.recordUserManualInteractionWithConsent( in handleConsentMigrationFromAppSearchIfNeeded()
DConsentCompositeStorage.java583 public void recordUserManualInteractionWithConsent(int interaction) { in recordUserManualInteractionWithConsent() method in ConsentCompositeStorage
586 storage.recordUserManualInteractionWithConsent(interaction); in recordUserManualInteractionWithConsent()
DConsentManager.java1441 public void recordUserManualInteractionWithConsent(@UserManualInteraction int interaction) { in recordUserManualInteractionWithConsent() method
1443 ConsentManagerV2.getInstance().recordUserManualInteractionWithConsent(interaction); in recordUserManualInteractionWithConsent()
1448 () -> mAdServicesManager.recordUserManualInteractionWithConsent(interaction), in recordUserManualInteractionWithConsent()
1449 () -> mAppSearchConsentManager.recordUserManualInteractionWithConsent(interaction), in recordUserManualInteractionWithConsent()
1850 adServicesManager.recordUserManualInteractionWithConsent( in migratePpApiConsentToSystemService()
2167 adServicesManager.recordUserManualInteractionWithConsent(manualInteractionRecorded); in handleConsentMigrationFromAppSearchIfNeeded()
/packages/modules/AdServices/adservices/tests/unittest/system-service/src/com/android/server/adservices/consent/
DConsentManagerTest.java299 mConsentManager.recordUserManualInteractionWithConsent(1); in testSetUserManualInteractionWithConsentToTrue()
306 mConsentManager.recordUserManualInteractionWithConsent(-1); in testSetUserManualInteractionWithConsentToFalse()
313 mConsentManager.recordUserManualInteractionWithConsent(0); in testSetUserManualInteractionWithConsentToUnknown()
/packages/modules/AdServices/adservices/framework/java/android/app/adservices/
DIAdServicesManager.aidl113 void recordUserManualInteractionWithConsent(in int interactionId); in recordUserManualInteractionWithConsent() method
DAdServicesManager.java222 public void recordUserManualInteractionWithConsent(int interaction) { in recordUserManualInteractionWithConsent() method in AdServicesManager
224 mService.recordUserManualInteractionWithConsent(interaction); in recordUserManualInteractionWithConsent()
/packages/modules/AdServices/adservices/apk/java/com/android/adservices/ui/settings/viewmodels/
DMeasurementViewModel.java93 .recordUserManualInteractionWithConsent( in setMeasurementConsent()
DMainViewModel.java90 .recordUserManualInteractionWithConsent( in setConsent()
DAppsViewModel.java202 .recordUserManualInteractionWithConsent( in setAppsConsent()
DTopicsViewModel.java202 .recordUserManualInteractionWithConsent( in setTopicsConsent()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/ui/enrollment/impl/
DConsentNotificationResetChannel.java81 consentManager.recordUserManualInteractionWithConsent(NO_MANUAL_INTERACTIONS_RECORDED); in enroll()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/shell/adservicesapi/
DResetConsentCommandTest.java77 .recordUserManualInteractionWithConsent(NO_MANUAL_INTERACTIONS_RECORDED); in testRun_valid()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/appsearch/
DAppSearchConsentManager.java333 public void recordUserManualInteractionWithConsent( in recordUserManualInteractionWithConsent() method in AppSearchConsentManager
335 mAppSearchConsentWorker.recordUserManualInteractionWithConsent(interaction); in recordUserManualInteractionWithConsent()
DAppSearchConsentStorageManager.java469 public void recordUserManualInteractionWithConsent(int interaction) { in recordUserManualInteractionWithConsent() method in AppSearchConsentStorageManager
470 mAppSearchConsentWorker.recordUserManualInteractionWithConsent(interaction); in recordUserManualInteractionWithConsent()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/shell/adservicesapi/
DResetConsentCommand.java76 consentManager.recordUserManualInteractionWithConsent(NO_MANUAL_INTERACTIONS_RECORDED); in run()
/packages/modules/AdServices/adservices/apk/java/com/android/adservices/ui/u18notifications/
DConsentNotificationU18Fragment.java181 .recordUserManualInteractionWithConsent( in onMoreOrAcceptClicked()

12