Home
last modified time | relevance | path

Searched refs:updateIdentifier (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/wifi/tests/src/android/net/wifi/
DWifiConfigurationTest.java62 config.updateIdentifier = "1234"; in testWifiConfigurationParcel()
79 assertEquals(config.updateIdentifier, reconfig.updateIdentifier); in testWifiConfigurationParcel()
265 config.updateIdentifier = "1234"; in testUpdateIdentifierForCopyConstructor()
268 assertEquals(config.updateIdentifier, copyConfig.updateIdentifier); in testUpdateIdentifierForCopyConstructor()
/frameworks/base/wifi/java/android/net/wifi/
DWifiConfiguration.java557 public String updateIdentifier; field in WifiConfiguration
2023 if (updateIdentifier != null) sbuf.append(" updateIdentifier=" + updateIdentifier); in toString()
2433 updateIdentifier = source.updateIdentifier; in WifiConfiguration()
2462 dest.writeString(updateIdentifier); in writeToParcel()
2536 config.updateIdentifier = in.readString();
/frameworks/base/wifi/java/android/net/wifi/hotspot2/omadm/
DPpsMoParser.java416 int updateIdentifier = Integer.MIN_VALUE; in parsePpsNode() local
434 if (updateIdentifier != Integer.MIN_VALUE) { in parsePpsNode()
437 updateIdentifier = parseInteger(getPpsNodeValue(ppsNodeRoot)); in parsePpsNode()
457 if (config != null && updateIdentifier != Integer.MIN_VALUE) { in parsePpsNode()
458 config.setUpdateIdentifier(updateIdentifier); in parsePpsNode()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaNetworkHalTest.java130 config.updateIdentifier = "46"; in testOweNetworkWifiConfigurationSaveLoad()
140 config.updateIdentifier = "45"; in testOpenNetworkWifiConfigurationSaveLoad()
992 if (!TextUtils.isEmpty(config.updateIdentifier)) { in testWifiConfigurationSaveLoad()
993 assertEquals(Integer.parseInt(config.updateIdentifier), in testWifiConfigurationSaveLoad()
994 mSupplicantVariables.updateIdentifier); in testWifiConfigurationSaveLoad()
1310 mSupplicantVariables.updateIdentifier = identifier; in setupISupplicantNetworkMock()
1599 public int updateIdentifier; field in SupplicantStaNetworkHalTest.SupplicantNetworkVariables
/frameworks/base/wifi/java/android/net/wifi/hotspot2/
DPasspointConfiguration.java164 public void setUpdateIdentifier(int updateIdentifier) { in setUpdateIdentifier() argument
165 mUpdateIdentifier = updateIdentifier; in setUpdateIdentifier()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointProviderTest.java1002 assertEquals(wifiConfig.updateIdentifier, Integer.toString(config.getUpdateIdentifier())); in getWifiConfigWithUserCredential()
1004 assertEquals("1234", wifiConfig.updateIdentifier); in getWifiConfigWithUserCredential()
1074 assertEquals("1234", wifiConfig.updateIdentifier); in getWifiConfigWithCertCredential()
1129 assertNull(wifiConfig.updateIdentifier); in getWifiConfigWithSimCredential()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointProvider.java384 wifiConfig.updateIdentifier = Integer.toString(mConfig.getUpdateIdentifier()); in getWifiConfig()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiConfigManager.java1039 newInternalConfig.updateIdentifier = externalConfig.updateIdentifier; in createNewInternalWifiConfigurationFromExternal()
DSupplicantStaNetworkHal.java414 if (config.updateIdentifier != null in saveWifiConfiguration()
415 && !setUpdateIdentifier(Integer.parseInt(config.updateIdentifier))) { in saveWifiConfiguration()