Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/topics/migration/
DTopicsDbMigratorV7Test.java113 assertThat(topicsDao.retrieveTopicToContributorsMap(epochId)) in testDbMigrationFromV6ToV7()
122 assertThat(topicsDao.retrieveTopicToContributorsMap(epochId)).isEmpty(); in testDbMigrationFromV6ToV7()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/topics/
DAppUpdateManagerTest.java302 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epoch1)) in testReconcileUninstalledApps_handleTopicsWithoutContributor()
305 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epoch2)) in testReconcileUninstalledApps_handleTopicsWithoutContributor()
365 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epoch1)).isEmpty(); in testReconcileUninstalledApps_contributorDeletionsToSameTopic()
511 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId1)) in testDeleteAppDataFromTableByApps()
530 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId1).get(topicId1)) in testDeleteAppDataFromTableByApps()
1104 epochId2, mTopicsDao.retrieveTopicToContributorsMap(epochId1)); in testHandleTopTopicsWithoutContributors()
1106 epochId2, mTopicsDao.retrieveTopicToContributorsMap(epochId1)); in testHandleTopTopicsWithoutContributors()
DTopicsWorkerTest.java1028 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId)).isEmpty(); in testClearAllTopicsData_topicContributorsTable()
1459 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId1)) in testHandleAppUninstallation_handleTopTopicsWithoutContributors()
1466 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId2)) in testHandleAppUninstallation_handleTopTopicsWithoutContributors()
1469 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId3)) in testHandleAppUninstallation_handleTopTopicsWithoutContributors()
1536 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId1)) in testHandleAppUninstallation_contributorDeletionsToSameTopic()
1544 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId1)).isEmpty(); in testHandleAppUninstallation_contributorDeletionsToSameTopic()
DEpochManagerTest.java500 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epoch)) in testGarbageCollectOutdatedEpochData()
745 assertThat(topicsDao.retrieveTopicToContributorsMap(epochId)) in testProcessEpoch()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/topics/
DAppUpdateManager.java524 mTopicsDao.retrieveTopicToContributorsMap(epochId); in handleTopTopicsWithoutContributors()
585 mTopicsDao.retrieveTopicToContributorsMap(epochId); in filterRegularTopicsWithoutContributors()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/topics/
DTopicsDaoTest.java950 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId1)).isEmpty(); in testDeleteAllTopicsTables()
1047 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId)).isEmpty(); in testDeleteFromTableByColumn()
1048 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId2)).isEmpty(); in testDeleteFromTableByColumn()
1378 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId)) in testPersistAndRetrieveTopicContributors()
1397 assertThat(mTopicsDao.retrieveTopicToContributorsMap(epochId)).isEmpty(); in testPersistAndRetrieveTopicContributors_emptyMap()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/topics/
DTopicsDao.java1401 public Map<Integer, Set<String>> retrieveTopicToContributorsMap(long epochId) { in retrieveTopicToContributorsMap() method in TopicsDao