Home
last modified time | relevance | path

Searched refs:validatedInternetAccess (Results 1 – 8 of 8) sorted by relevance

/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/
H A DWifiConfiguration.java1256 public boolean validatedInternetAccess; field in WifiConfiguration
1354 return numNoInternetAccessReports > 0 && !validatedInternetAccess; in hasNoInternetAccess()
2879 validatedInternetAccess = false; in WifiConfiguration()
2995 if (this.validatedInternetAccess) sbuf.append(" validatedInternetAccess"); in toString()
3011 if (this.validatedInternetAccess || this.ephemeral || this.trusted || this.oemPaid in toString()
3592 validatedInternetAccess = source.validatedInternetAccess; in WifiConfiguration()
3683 dest.writeInt(validatedInternetAccess ? 1 : 0); in writeToParcel()
3769 config.validatedInternetAccess = in.readInt() != 0;
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWakeupController.java366 && !config.validatedInternetAccess)) { in getGoodSavedNetworksAndSuggestions()
H A DWifiConfigManager.java2221 config.validatedInternetAccess = false; in incrementNetworkNoInternetAccessReports()
2237 config.validatedInternetAccess = validated; in setNetworkValidatedInternetAccess()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWakeupControllerTest.java515 openNetwork.validatedInternetAccess = false; in getGoodSavedNetworksAndSuggestionsIgnoreInvalidatedCaptivePortal()
536 openNetwork.validatedInternetAccess = true; in getGoodSavedNetworksAndSuggestionsIncludeValidatedCaptivePortal()
H A DWifiConfigurationTestUtil.java765 assertEquals(expected.validatedInternetAccess, actual.validatedInternetAccess); in assertConfigurationEqualForConfigStore()
/aosp12/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/
H A DAccessPointTest.java834 config.validatedInternetAccess = true;
869 config.validatedInternetAccess = true;
949 config.validatedInternetAccess = true; in testUpdateConfig_doesNotThrowNPE_ifListenerIsNulledWhileAwaitingExecution()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/util/
H A DXmlUtil.java550 out, XML_TAG_VALIDATED_INTERNET_ACCESS, configuration.validatedInternetAccess); in writeToXmlForConfigStore()
772 configuration.validatedInternetAccess = (boolean) value; in parseFromXml()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
H A DXmlUtilTest.java232 configuration.validatedInternetAccess = true; in testEapWifiConfigurationSerializeDeserializeForConfigStore()