Home
last modified time | relevance | path

Searched refs:mEapMethod (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/wifi/java/android/net/wifi/
DWifiEnterpriseConfig.java146 private int mEapMethod = Eap.NONE; field in WifiEnterpriseConfig
188 mEapMethod = source.mEapMethod; in copyFrom()
228 dest.writeInt(mEapMethod); in writeToParcel()
247 enterpriseConfig.mEapMethod = in.readInt();
360 boolean shouldNotWriteAnonIdentity = mEapMethod == WifiEnterpriseConfig.Eap.SIM in saveToSupplicant()
361 || mEapMethod == WifiEnterpriseConfig.Eap.AKA in saveToSupplicant()
362 || mEapMethod == WifiEnterpriseConfig.Eap.AKA_PRIME; in saveToSupplicant()
372 if (!saver.saveValue(EAP_KEY, Eap.strings[mEapMethod])) { in saveToSupplicant()
376 if (mEapMethod != Eap.TLS && mPhase2Method != Phase2.NONE) { in saveToSupplicant()
377 boolean is_autheap = mEapMethod == Eap.TTLS && mPhase2Method == Phase2.GTC; in saveToSupplicant()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHal.java116 private int mEapMethod; field in SupplicantStaNetworkHal
406 eapConfig.setEapMethod(supplicantToWifiConfigurationEapMethod(mEapMethod)); in loadWifiEnterpriseConfig()
1728 this.mEapMethod = methodValue; in getEapMethod()