Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/topics/
DAppUpdateManagerTest.java276 mTopicsDao.persistTopicContributors(epoch1, Map.of(topic1.getTopic(), Set.of(app1, app2))); in testReconcileUninstalledApps_handleTopicsWithoutContributor()
277 mTopicsDao.persistTopicContributors(epoch1, Map.of(topic2.getTopic(), Set.of(app1))); in testReconcileUninstalledApps_handleTopicsWithoutContributor()
278 mTopicsDao.persistTopicContributors(epoch1, Map.of(topic3.getTopic(), Set.of(app2))); in testReconcileUninstalledApps_handleTopicsWithoutContributor()
279 mTopicsDao.persistTopicContributors(epoch2, Map.of(topic1.getTopic(), Set.of(app1, app2))); in testReconcileUninstalledApps_handleTopicsWithoutContributor()
280 mTopicsDao.persistTopicContributors(epoch2, Map.of(topic3.getTopic(), Set.of(app1, app2))); in testReconcileUninstalledApps_handleTopicsWithoutContributor()
348 mTopicsDao.persistTopicContributors(epoch1, Map.of(topic1.getTopic(), Set.of(app2, app3))); in testReconcileUninstalledApps_contributorDeletionsToSameTopic()
508 mTopicsDao.persistTopicContributors(epochId1, topicContributorsMap); in testDeleteAppDataFromTableByApps()
679 mTopicsDao.persistTopicContributors( in testReconcileInstalledApps()
842 mTopicsDao.persistTopicContributors( in testAssignTopicsToNewlyInstalledApps()
1085 mTopicsDao.persistTopicContributors( in testHandleTopTopicsWithoutContributors()
[all …]
DTopicsWorkerTest.java1020 mTopicsDao.persistTopicContributors(epochId, topicContributorsMap); in testClearAllTopicsData_topicContributorsTable()
1142 mTopicsDao.persistTopicContributors( in testReconcileApplicationUpdate()
1374 mTopicsDao.persistTopicContributors( in testHandleAppUninstallation_handleTopTopicsWithoutContributors()
1380 mTopicsDao.persistTopicContributors( in testHandleAppUninstallation_handleTopTopicsWithoutContributors()
1385 mTopicsDao.persistTopicContributors(epochId3, Map.of(topic2.getTopic(), Set.of(app4))); in testHandleAppUninstallation_handleTopTopicsWithoutContributors()
1508 mTopicsDao.persistTopicContributors( in testHandleAppUninstallation_contributorDeletionsToSameTopic()
1611 mTopicsDao.persistTopicContributors( in testHandleAppInstallation()
DEpochManagerTest.java483 mTopicsDao.persistTopicContributors(epoch, topicContributorsMap); in testGarbageCollectOutdatedEpochData()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/topics/
DTopicsDaoTest.java948 mTopicsDao.persistTopicContributors(epochId1, Map.of(topic1.getTopic(), Set.of(app1))); in testDeleteAllTopicsTables()
1036 mTopicsDao.persistTopicContributors(epochId, Map.of(topic1.getTopic(), Set.of(app1))); in testDeleteFromTableByColumn()
1037 mTopicsDao.persistTopicContributors( in testDeleteFromTableByColumn()
1374 mTopicsDao.persistTopicContributors(epochId, topicToContributorsMap); in testPersistAndRetrieveTopicContributors()
1376 mTopicsDao.persistTopicContributors(epochId, Map.of(topicId3, Set.of())); in testPersistAndRetrieveTopicContributors()
1387 mTopicsDao.persistTopicContributors( in testPersistAndRetrieveTopicContributors_nullMap()
1395 mTopicsDao.persistTopicContributors(epochId, Map.of()); in testPersistAndRetrieveTopicContributors_emptyMap()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/topics/migration/
DTopicsDbMigratorV7Test.java112 topicsDao.persistTopicContributors(epochId, topicContributorsMap); in testDbMigrationFromV6ToV7()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/topics/
DEpochManager.java254 mTopicsDao.persistTopicContributors(currentEpochId, topTopicsToContributorsMap); in processEpoch()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/topics/
DTopicsDao.java1359 public void persistTopicContributors( in persistTopicContributors() method in TopicsDao