Searched refs:isCaptivePortal (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/net/
H A DBaseNetworkStateTracker.java112 public void captivePortalCheckCompleted(boolean isCaptivePortal) { argument
H A DIConnectivityManager.aidl121 void captivePortalCheckCompleted(in NetworkInfo info, boolean isCaptivePortal);
H A DMobileDataStateTracker.java462 public void captivePortalCheckCompleted(boolean isCaptivePortal) { argument
463 if (mIsCaptivePortal.getAndSet(isCaptivePortal) != isCaptivePortal) {
466 isCaptivePortal ? DctConstants.ENABLED : DctConstants.DISABLED);
H A DConnectivityManager.java1881 * @param isCaptivePortal true/false.
1887 public void captivePortalCheckCompleted(NetworkInfo info, boolean isCaptivePortal) { argument
1889 mService.captivePortalCheckCompleted(info, isCaptivePortal);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkMonitor.java475 // Note: This call to isCaptivePortal() could take up to a minute. Resolving the
479 // will be unresponsive. isCaptivePortal() could be executed on another Thread
481 int httpResponseCode = isCaptivePortal();
653 private int isCaptivePortal() { method in class:NetworkMonitor
704 log("isCaptivePortal: ret=" + httpResponseCode +
729 httpResponseCode != 204 /* isCaptivePortal */,
746 * If false, isCaptivePortal and responseTimestampMs are ignored
751 private void sendNetworkConditionsBroadcast(boolean responseReceived, boolean isCaptivePortal, argument
820 latencyBroadcast.putExtra(EXTRA_IS_CAPTIVE_PORTAL, isCaptivePortal);
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java1584 public void captivePortalCheckCompleted(NetworkInfo info, boolean isCaptivePortal) { argument
1586 if (DBG) log("captivePortalCheckCompleted: ni=" + info + " captive=" + isCaptivePortal);
1587 // mNetTrackers[info.getType()].captivePortalCheckCompleted(isCaptivePortal);

Completed in 943 milliseconds