Home
last modified time | relevance | path

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

/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.java119 config.updateIdentifier = "45"; in testOpenNetworkWifiConfigurationSaveLoad()
815 if (!TextUtils.isEmpty(config.updateIdentifier)) { in testWifiConfigurationSaveLoad()
816 assertEquals(Integer.parseInt(config.updateIdentifier), in testWifiConfigurationSaveLoad()
817 mSupplicantVariables.updateIdentifier); in testWifiConfigurationSaveLoad()
1070 mSupplicantVariables.updateIdentifier = identifier; in setupISupplicantNetworkMock()
1345 public int updateIdentifier; field in SupplicantStaNetworkHalTest.SupplicantNetworkVariables
/frameworks/base/wifi/java/android/net/wifi/hotspot2/
DPasspointConfiguration.java162 public void setUpdateIdentifier(int updateIdentifier) { in setUpdateIdentifier() argument
163 mUpdateIdentifier = updateIdentifier; in setUpdateIdentifier()
/frameworks/base/wifi/java/android/net/wifi/
DWifiConfiguration.java374 public String updateIdentifier; field in WifiConfiguration
2113 dest.writeString(updateIdentifier); in writeToParcel()
2179 config.updateIdentifier = in.readString();
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHal.java370 if (config.updateIdentifier != null in saveWifiConfiguration()
371 && !setUpdateIdentifier(Integer.parseInt(config.updateIdentifier))) { in saveWifiConfiguration()