Home
last modified time | relevance | path

Searched refs:sourceValues (Results 1 – 3 of 3) sorted by relevance

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/util/
DFilter.java79 List<String> sourceValues = sourceFilter.getAttributionFilterMap().get(key); in isFilterMatchV1() local
81 if (!matchFilterValues(sourceValues, triggerValues, isFilter)) { in isFilterMatchV1()
98 List<String> sourceValues = in isFilterMatchWithLookbackWindow() local
108 if (!matchFilterValues(sourceValues, triggerValues, isFilter)) { in isFilterMatchWithLookbackWindow()
132 List<String> sourceValues, List<String> triggerValues, boolean isFilter) { in matchFilterValues() argument
134 return isFilter ? sourceValues.isEmpty() : !sourceValues.isEmpty(); in matchFilterValues()
136 Set<String> intersection = new HashSet<>(sourceValues); in matchFilterValues()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DMeasurementDao.java375 ContentValues sourceValues = new ContentValues(); in ignoreSourcesAndDeleteFakeReportsForAttributionScope() local
376 sourceValues.put(SourceContract.STATUS, Source.Status.IGNORED); in ignoreSourcesAndDeleteFakeReportsForAttributionScope()
379 sourceValues, in ignoreSourcesAndDeleteFakeReportsForAttributionScope()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/measurement/
DMeasurementDaoTest.java3019 ContentValues sourceValues = new ContentValues(); in deleteSource_providedId_deletesMatchingXnaIgnoredSource() local
3020 sourceValues.put(SourceContract.ID, s1.getId()); in deleteSource_providedId_deletesMatchingXnaIgnoredSource()
3021 sourceValues.put(SourceContract.EVENT_ID, s1.getEventId().getValue()); in deleteSource_providedId_deletesMatchingXnaIgnoredSource()
3028 db.insert(SourceContract.TABLE, null, sourceValues); in deleteSource_providedId_deletesMatchingXnaIgnoredSource()