Home
last modified time | relevance | path

Searched refs:recordPasNotificationOpened (Results 1 – 9 of 9) sorted by relevance

/packages/modules/AdServices/adservices/framework/java/android/app/adservices/
DIAdServicesManager.aidl91 void recordPasNotificationOpened(boolean wasNotificationOpened); in recordPasNotificationOpened() method
DAdServicesManager.java238 public void recordPasNotificationOpened(boolean wasNotificationOpened) { in recordPasNotificationOpened() method in AdServicesManager
240 mService.recordPasNotificationOpened(wasNotificationOpened); in recordPasNotificationOpened()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/ui/enrollment/impl/
DConsentNotificationResetChannel.java95 consentManager.recordPasNotificationOpened(false); in enroll()
/packages/modules/AdServices/adservices/apk/java/com/android/adservices/ui/ganotifications/
DConsentNotificationPasFragment.java110 consentManager.recordPasNotificationOpened(true); in onViewCreated()
/packages/modules/AdServices/adservices/service/java/com/android/server/adservices/consent/
DConsentManager.java255 public void recordPasNotificationOpened(boolean wasNotificationOpened) { in recordPasNotificationOpened() method in ConsentManager
/packages/modules/AdServices/adservices/service/java/com/android/server/adservices/
DAdServicesManagerService.java549 public void recordPasNotificationOpened(boolean wasNotificationOpened) { in recordPasNotificationOpened() method in AdServicesManagerService
557 .recordPasNotificationOpened(wasNotificationOpened); in recordPasNotificationOpened()
/packages/modules/AdServices/adservices/tests/unittest/ui/src/com/android/adservices/service/consent/
DConsentManagerTest.java5136 spyConsentManager.recordPasNotificationOpened(true); in testPasNotificationOpenedRecorded_PpApiOnly()
5141 verify(mMockIAdServicesManager, never()).recordPasNotificationOpened(true); in testPasNotificationOpenedRecorded_PpApiOnly()
5156 spyConsentManager.recordPasNotificationOpened(true); in testPasNotificationOpenedRecorded_SystemServerOnly()
5161 verify(mMockIAdServicesManager).recordPasNotificationOpened(true); in testPasNotificationOpenedRecorded_SystemServerOnly()
5181 spyConsentManager.recordPasNotificationOpened(true); in testPasNotificationOpenedRecorded_PpApiAndSystemServer()
5186 verify(mMockIAdServicesManager).recordPasNotificationOpened(true); in testPasNotificationOpenedRecorded_PpApiAndSystemServer()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/consent/
DConsentManager.java2573 public void recordPasNotificationOpened(boolean wasPasNotificationOpened) {
2578 () -> mAdServicesManager.recordPasNotificationOpened(wasPasNotificationOpened),
/packages/modules/AdServices/adservices/tests/unittest/system-service/src/com/android/server/adservices/
DAdServicesManagerServiceTest.java630 service.recordPasNotificationOpened(true); in testRecordPasNotificationOpened()