Home
last modified time | relevance | path

Searched refs:topPrivateDomainAndScheme (Results 1 – 15 of 15) sorted by relevance

/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/common/
DWebAddressesTest.java91 WebAddresses.topPrivateDomainAndScheme(HTTPS_PRIVATE_DOMAIN_COM_PUBLIC_SUFFIX); in testTopPrivateDomainAndScheme_validPublicDomainAndHttpsScheme()
98 Optional<Uri> localhost = WebAddresses.topPrivateDomainAndScheme(HTTPS_LOCALHOST); in testTopPrivateDomainAndScheme_validLocalhost()
104 WebAddresses.topPrivateDomainAndScheme(localhostWithPath).get()); in testTopPrivateDomainAndScheme_validLocalhost()
109 WebAddresses.topPrivateDomainAndScheme(localhostWithPort).get()); in testTopPrivateDomainAndScheme_validLocalhost()
112 Optional<Uri> localhost_ip = WebAddresses.topPrivateDomainAndScheme(HTTPS_LOCALHOST_IP); in testTopPrivateDomainAndScheme_validLocalhost()
118 WebAddresses.topPrivateDomainAndScheme(localhostIpWithPath).get()); in testTopPrivateDomainAndScheme_validLocalhost()
123 WebAddresses.topPrivateDomainAndScheme(localhostIpWithPort).get()); in testTopPrivateDomainAndScheme_validLocalhost()
162 WebAddresses.topPrivateDomainAndScheme( in testTopPrivateDomainAndScheme_validPrivateDomainAndHttpsScheme()
177 WebAddresses.topPrivateDomainAndScheme( in testTopPrivateDomainAndScheme_validPublicDomainAndHttpsScheme_extraSubdomain()
192 WebAddresses.topPrivateDomainAndScheme( in testTopPrivateDomainAndScheme_validPrivateDomainAndHttpsScheme_extraSubdomain()
[all …]
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/migration/
DMeasurementDbMigratorV3.java407 Optional<Uri> topPrivateDomainAndScheme = WebAddresses.topPrivateDomainAndScheme(uri); in extractBaseUri() local
408 if (topPrivateDomainAndScheme.isPresent()) { in extractBaseUri()
409 return Optional.of(topPrivateDomainAndScheme.get().toString()); in extractBaseUri()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/
DMeasurementImpl.java458 : WebAddresses.topPrivateDomainAndScheme(webDestination).isPresent(); in isValid()
503 WebAddresses.topPrivateDomainAndScheme(webDestination); in isVerifiedDestination()
505 WebAddresses.topPrivateDomainAndScheme(verifiedDestination); in isVerifiedDestination()
524 return WebAddresses.topPrivateDomainAndScheme(destination).isPresent(); in isValid()
DTrigger.java571 Optional<Uri> uri = WebAddresses.topPrivateDomainAndScheme(mAttributionDestination); in getAttributionDestinationBaseUri()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/common/
DWebAddresses.java40 public static Optional<Uri> topPrivateDomainAndScheme(Uri uri) { in topPrivateDomainAndScheme() method in WebAddresses
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/registration/
DAsyncSourceFetcher.java342 Optional<Uri> topPrivateDomainAndScheme = in parseCommonSourceParams() local
343 WebAddresses.topPrivateDomainAndScheme(destination); in parseCommonSourceParams()
344 if (topPrivateDomainAndScheme.isEmpty()) { in parseCommonSourceParams()
351 destinationSet.add(topPrivateDomainAndScheme.get()); in parseCommonSourceParams()
957 ? WebAddresses.topPrivateDomainAndScheme( in fetchSource()
DFetcherUtil.java382 WebAddresses.topPrivateDomainAndScheme(asyncRegistration.getRegistrationUri()) in emitHeaderMetrics()
DAsyncRegistrationQueueRunner.java994 : WebAddresses.topPrivateDomainAndScheme(topOrigin); in getTopLevelPublisher()
DAsyncTriggerFetcher.java569 ? WebAddresses.topPrivateDomainAndScheme(asyncRegistration.getRegistrationUri()) in getEnrollmentId()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/enrollment/
DEnrollmentDao.java320 : WebAddresses.topPrivateDomainAndScheme(url); in getEnrollmentDataFromMeasurementUrl()
424 : WebAddresses.topPrivateDomainAndScheme(Uri.parse(uri)); in validateAttributionUrl()
891 Optional<Uri> topDomainUri = WebAddresses.topPrivateDomainAndScheme(originalUri); in getEnrollmentDataForPASByMatchingAdTechIdentifier()
1612 Optional<Uri> topDomainUri = WebAddresses.topPrivateDomainAndScheme(originalUri); in getEnrollmentDataForAPIByUrl()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/reporting/
DDebugReportApi.java594 Optional<Uri> webUri = WebAddresses.topPrivateDomainAndScheme(webDestination); in generateSourceDestinations()
605 return WebAddresses.topPrivateDomainAndScheme(source.getPublisher()).orElse(null); in generateSourceSite()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/shared/
DSharedDbHelper.java288 return WebAddresses.topPrivateDomainAndScheme(uri); in tryGetSiteFromEnrollmentRow()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/attribution/
DAttributionJobHandler.java1712 : WebAddresses.topPrivateDomainAndScheme(attributionDestination); in getPublisherAndDestinationTopPrivateDomains()
1717 : WebAddresses.topPrivateDomainAndScheme(publisher); in getPublisherAndDestinationTopPrivateDomains()
1764 : WebAddresses.topPrivateDomainAndScheme(uri); in getTopPrivateDomain()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DMeasurementDao.java2983 Optional<Uri> topPrivateDomainAndScheme =
2984 WebAddresses.topPrivateDomainAndScheme(trigger.getAttributionDestination());
2985 return topPrivateDomainAndScheme.map(Uri::toString);
2992 : WebAddresses.topPrivateDomainAndScheme(uri);
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/measurement/
DE2EMockTest.java767 Optional<Uri> domainAndScheme = WebAddresses.topPrivateDomainAndScheme(Uri.parse(uri)); in getEnrollmentId()