Home
last modified time | relevance | path

Searched refs:detectUrl (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/net/captiveportal/
DCaptivePortalProbeResult.java36 public final String detectUrl; // URL where a 204 response code indicates field in CaptivePortalProbeResult
45 public CaptivePortalProbeResult(int httpResponseCode, String redirectUrl, String detectUrl) { in CaptivePortalProbeResult() argument
46 this(httpResponseCode, redirectUrl, detectUrl, null); in CaptivePortalProbeResult()
49 public CaptivePortalProbeResult(int httpResponseCode, String redirectUrl, String detectUrl, in CaptivePortalProbeResult() argument
53 this.detectUrl = detectUrl; in CaptivePortalProbeResult()
/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkMonitor.java555 intent.putExtra(EXTRA_CAPTIVE_PORTAL_URL, probeRes.detectUrl); in processMessage()