Searched defs:httpResponseCode (Results 1 - 2 of 2) sorted by last modified time

/frameworks/base/packages/CaptivePortalLogin/src/com/android/captiveportallogin/
H A DCaptivePortalLoginActivity.java344 int httpResponseCode = 500;
359 httpResponseCode = urlConnection.getResponseCode();
363 " ret=" + httpResponseCode +
371 if (isDismissed(httpResponseCode, locationHeader, mProbeSpec)) {
379 int httpResponseCode, String locationHeader, CaptivePortalProbeSpec probeSpec) {
381 ? probeSpec.getResult(httpResponseCode, locationHeader).isSuccessful()
382 : (httpResponseCode == 204);
378 isDismissed( int httpResponseCode, String locationHeader, CaptivePortalProbeSpec probeSpec) argument
/frameworks/base/core/java/android/net/captiveportal/
H A DCaptivePortalProbeResult.java41 public CaptivePortalProbeResult(int httpResponseCode) { argument
42 this(httpResponseCode, null, null);
45 public CaptivePortalProbeResult(int httpResponseCode, String redirectUrl, String detectUrl) { argument
46 this(httpResponseCode, redirectUrl, detectUrl, null);
49 public CaptivePortalProbeResult(int httpResponseCode, String redirectUrl, String detectUrl, argument
51 mHttpResponseCode = httpResponseCode;

Completed in 51 milliseconds