Home
last modified time | relevance | path

Searched refs:persistCallerCanLearnTopics (Results 1 – 7 of 7) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/topics/
DAppUpdateManagerTest.java163 mTopicsDao.persistCallerCanLearnTopics(epochId1, callerCanLearnMap); in testReconcileUninstalledApps()
479 mTopicsDao.persistCallerCanLearnTopics(epochId1, callerCanLearnMap); in testDeleteAppDataFromTableByApps()
898 mTopicsDao.persistCallerCanLearnTopics( in testAssignTopicsToSdkForAppInstallation()
950 mTopicsDao.persistCallerCanLearnTopics(epochId - 1, Map.of(topic, Set.of(sdk))); in testAssignTopicsToSdkForAppInstallation_NonSdk()
981 mTopicsDao.persistCallerCanLearnTopics(/* epochId */ 2L, Map.of(topic, Set.of(sdk))); in testAssignTopicsToSdkForAppInstallation_unsatisfiedApp()
1030 mTopicsDao.persistCallerCanLearnTopics(/* epochId */ 1L, Map.of(topic, Set.of(otherSDK))); in testAssignTopicsToSdkForAppInstallation_unsatisfiedSdk()
1038 mTopicsDao.persistCallerCanLearnTopics(/* epochId */ 2L, Map.of(topic, Set.of(sdk))); in testAssignTopicsToSdkForAppInstallation_unsatisfiedSdk()
DCacheManagerTest.java1826 mTopicsDao.persistCallerCanLearnTopics(epochId, Map.of(topic1, Set.of(app1, sdk1))); in testClearAllTopicsData()
1827 mTopicsDao.persistCallerCanLearnTopics(epochId, Map.of(topic2, Set.of(app2, sdk2))); in testClearAllTopicsData()
DTopicsWorkerTest.java606 mTopicsDao.persistCallerCanLearnTopics( in testGetTopics_handleSdkTopicAssignment()
661 mTopicsDao.persistCallerCanLearnTopics( in testGetTopics_handleSdkTopicAssignment_existingTopicsForSdk()
DEpochManagerTest.java482 mTopicsDao.persistCallerCanLearnTopics(epoch, callerCanLearnTopics); in testGarbageCollectOutdatedEpochData()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/topics/
DTopicsDaoTest.java493 mTopicsDao.persistCallerCanLearnTopics(/* epochId = */ 3L, callerCanLearnMap); in testPersistCallerCanLearnTopics()
911 mTopicsDao.persistCallerCanLearnTopics(epochId, Map.of(topic1, Set.of(app1, sdk1))); in testDeleteAllTopicsTables()
912 mTopicsDao.persistCallerCanLearnTopics(epochId, Map.of(topic2, Set.of(app2, sdk2))); in testDeleteAllTopicsTables()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/topics/
DEpochManager.java214 mTopicsDao.persistCallerCanLearnTopics(currentEpochId, callersCanLearnThisEpochMap); in processEpoch()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/topics/
DTopicsDao.java557 public void persistCallerCanLearnTopics( in persistCallerCanLearnTopics() method in TopicsDao