Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiConfigurationUtil.java239 public static boolean hasEnterpriseConfigChanged(WifiEnterpriseConfig existingEnterpriseConfig, in hasEnterpriseConfigChanged() argument
241 if (existingEnterpriseConfig != null && newEnterpriseConfig != null) { in hasEnterpriseConfigChanged()
242 if (existingEnterpriseConfig.getEapMethod() != newEnterpriseConfig.getEapMethod()) { in hasEnterpriseConfigChanged()
245 if (existingEnterpriseConfig.getPhase2Method() in hasEnterpriseConfigChanged()
249 if (!TextUtils.equals(existingEnterpriseConfig.getIdentity(), in hasEnterpriseConfigChanged()
253 if (!TelephonyUtil.isSimEapMethod(existingEnterpriseConfig.getEapMethod()) in hasEnterpriseConfigChanged()
254 && !TextUtils.equals(existingEnterpriseConfig.getAnonymousIdentity(), in hasEnterpriseConfigChanged()
258 if (!TextUtils.equals(existingEnterpriseConfig.getPassword(), in hasEnterpriseConfigChanged()
262 X509Certificate[] existingCaCerts = existingEnterpriseConfig.getCaCertificates(); in hasEnterpriseConfigChanged()
269 if (existingEnterpriseConfig != null || newEnterpriseConfig != null) { in hasEnterpriseConfigChanged()