Home
last modified time | relevance | path

Searched refs:doesReportingComputationInfoExist (Results 1 – 6 of 6) sorted by relevance

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/adselection/
DReportingComputationHelperUnifiedTablesEnabled.java37 return mAdSelectionEntryDao.doesReportingComputationInfoExist(adSelectionId); in doesAdSelectionIdExist()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/adselection/
DReportingComputationHelperUnifiedTablesEnabledTest.java58 verify(mAdSelectionEntryDaoMock).doesReportingComputationInfoExist(AD_SELECTION_ID); in testDoesAdSelectionIdExist()
DReportingComputationHelperUnifiedTablesDisabledTest.java59 verify(mAdSelectionEntryDaoMock, never()).doesReportingComputationInfoExist(anyLong()); in testDoesAdSelectionIdExist()
DOnDeviceAdSelectionRunnerTest.java657 assertTrue(mAdSelectionEntryDaoSpy.doesReportingComputationInfoExist(AD_SELECTION_ID)); in testRunAdSelectionSuccessWithShouldUseUnifiedTablesFlag()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/adselection/
DAdSelectionEntryDaoTest.java406 assertFalse(mAdSelectionEntryDao.doesReportingComputationInfoExist(AD_SELECTION_ID_1)); in testInsertDBReportingComputationInfo()
407 assertFalse(mAdSelectionEntryDao.doesReportingComputationInfoExist(AD_SELECTION_ID_2)); in testInsertDBReportingComputationInfo()
412 assertTrue(mAdSelectionEntryDao.doesReportingComputationInfoExist(AD_SELECTION_ID_1)); in testInsertDBReportingComputationInfo()
413 assertFalse(mAdSelectionEntryDao.doesReportingComputationInfoExist(AD_SELECTION_ID_2)); in testInsertDBReportingComputationInfo()
2228 assertTrue(mAdSelectionEntryDao.doesReportingComputationInfoExist(AD_SELECTION_ID_1)); in test_removeExpiredAdSelectionInitializations_removesExpiredEntries()
2234 assertTrue(mAdSelectionEntryDao.doesReportingComputationInfoExist(AD_SELECTION_ID_2)); in test_removeExpiredAdSelectionInitializations_removesExpiredEntries()
2245 assertFalse(mAdSelectionEntryDao.doesReportingComputationInfoExist(AD_SELECTION_ID_1)); in test_removeExpiredAdSelectionInitializations_removesExpiredEntries()
2251 assertTrue(mAdSelectionEntryDao.doesReportingComputationInfoExist(AD_SELECTION_ID_2)); in test_removeExpiredAdSelectionInitializations_removesExpiredEntries()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/adselection/
DAdSelectionEntryDao.java155 public abstract boolean doesReportingComputationInfoExist(long adSelectionId); in doesReportingComputationInfoExist() method in AdSelectionEntryDao