Home
last modified time | relevance | path

Searched refs:fetchFlexSourceIdsFor (Results 1 – 5 of 5) sorted by relevance

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/deletion/
DMeasurementDataDeleter.java177 Set<String> extendedSourceIds = dao.fetchFlexSourceIdsFor(triggerIds); in delete()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DIMeasurementDao.java614 Set<String> fetchFlexSourceIdsFor(@NonNull Collection<String> triggerIds) in fetchFlexSourceIdsFor() method
DMeasurementDao.java1891 public Set<String> fetchFlexSourceIdsFor(@NonNull Collection<String> triggerIds) in fetchFlexSourceIdsFor() method in MeasurementDao
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/measurement/
DMeasurementDaoTest.java7568 dao.fetchFlexSourceIdsFor(Collections.singletonList("123456")); in fetchFlexSourceIdsFor_bringsMatchingSources_expectedSourceReturned()
7576 dao.fetchFlexSourceIdsFor(Collections.singletonList("234567")); in fetchFlexSourceIdsFor_bringsMatchingSources_expectedSourceReturned()
7584 dao.fetchFlexSourceIdsFor(Collections.singletonList("23456")); in fetchFlexSourceIdsFor_bringsMatchingSources_expectedSourceReturned()
7590 Set<String> actualSources = dao.fetchFlexSourceIdsFor(new ArrayList<>()); in fetchFlexSourceIdsFor_bringsMatchingSources_expectedSourceReturned()
7690 dao.fetchFlexSourceIdsFor(getRandomIdsWith(1000, "123456")); in fetchFlexSourceIdsFor_moreThanSqliteMaxCompoundSelect_expectedSourceReturned()
7698 dao.fetchFlexSourceIdsFor(getRandomIdsWith(1000, "234567")); in fetchFlexSourceIdsFor_moreThanSqliteMaxCompoundSelect_expectedSourceReturned()
7706 dao.fetchFlexSourceIdsFor(getRandomIdsWith(1000, "23456")); in fetchFlexSourceIdsFor_moreThanSqliteMaxCompoundSelect_expectedSourceReturned()
7712 Set<String> actualSources = dao.fetchFlexSourceIdsFor(new ArrayList<>()); in fetchFlexSourceIdsFor_moreThanSqliteMaxCompoundSelect_expectedSourceReturned()
7813 dao.fetchFlexSourceIdsFor(Collections.singletonList("123456")); in fetchFlexSourceIdsFor_emptyInputSourceId_noSourceReturned()
7821 dao.fetchFlexSourceIdsFor(Collections.singletonList("234567")); in fetchFlexSourceIdsFor_emptyInputSourceId_noSourceReturned()
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/measurement/deletion/
DMeasurementDataDeleterTest.java686 when(mMeasurementDao.fetchFlexSourceIdsFor(triggerIds)) in delete_deletionModeAllFlexApi_success()