Home
last modified time | relevance | path

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

/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/reporting/
DEventReportingJobHandler.java324 List<Uri> webDestinations = destinations.first; in updateAppReportHistory() local
330 if (!webDestinations.isEmpty() in updateAppReportHistory()
DDebugReportApi.java591 List<Uri> webDestinations = source.getWebDestinations(); in generateSourceDestinations() local
592 if (webDestinations != null) { in generateSourceDestinations()
593 for (Uri webDestination : webDestinations) { in generateSourceDestinations()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/noising/
DSourceNoiseHandlerAttributionProbabilityTest.java717 List<Uri> webDestinations, in SourceNoiseHandlerAttributionProbabilityTest() argument
731 .setWebDestinations(webDestinations) in SourceNoiseHandlerAttributionProbabilityTest()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/
DSource.java1132 public void setWebDestinations(@Nullable List<Uri> webDestinations) { in setWebDestinations() argument
1133 mWebDestinations = webDestinations; in setWebDestinations()
1453 public Builder setWebDestinations(@Nullable List<Uri> webDestinations) { in setWebDestinations() argument
1454 Optional.ofNullable(webDestinations).ifPresent(uris -> { in setWebDestinations()
1458 mBuilding.mWebDestinations = webDestinations; in setWebDestinations()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/measurement/
DMeasurementDaoTest.java2176 List<Uri> webDestinations = List.of(WebUtil.validUri("https://web-destination.test")); in testCountDistinctRegistrationOriginPerPublisherXDestinationInSource_atWindow() local
2182 webDestinations, in testCountDistinctRegistrationOriginPerPublisherXDestinationInSource_atWindow()
2208 List<Uri> webDestinations = List.of(WebUtil.validUri("https://web-destination.test")); in testCountDistinctReportingOriginsPerPublisherXDestinationInSource_beyondWindow() local
2214 webDestinations, in testCountDistinctReportingOriginsPerPublisherXDestinationInSource_beyondWindow()
2240 List<Uri> webDestinations = List.of(WebUtil.validUri("https://web-destination.test")); in testCountDistinctReportingOriginsPerPublisherXDestinationInSource_expiredSource() local
2246 webDestinations, in testCountDistinctReportingOriginsPerPublisherXDestinationInSource_expiredSource()
2254 webDestinations, in testCountDistinctReportingOriginsPerPublisherXDestinationInSource_expiredSource()
2284 List<Uri> webDestinations = List.of(WebUtil.validUri("https://web-destination.test")); in testCountDistinctReportingOriginsPerPublisherXDestinationInSource_appDestination() local
2290 webDestinations, in testCountDistinctReportingOriginsPerPublisherXDestinationInSource_appDestination()
2299 2, null, webDestinations, 5500000000L, publisher, Source.Status.ACTIVE); in testCountDistinctReportingOriginsPerPublisherXDestinationInSource_appDestination()
[all …]
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/
DSourceTest.java1301 List<Uri> webDestinations, in assertInvalidSourceArguments() argument
1326 .setWebDestinations(webDestinations) in assertInvalidSourceArguments()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DMeasurementDao.java243 List<Uri> webDestinations = new ArrayList<>(); in getSourceDestinations() local
253 webDestinations.add( in getSourceDestinations()
259 return Pair.create(appDestinations, webDestinations); in getSourceDestinations()