Searched refs:eapMethod (Results 1 – 7 of 7) sorted by relevance
81 public final String eapMethod; field in WifiInfo146 bundle.putString(EXTRA_PROVISIONING_WIFI_EAP_METHOD, eapMethod); in toPersistableBundle()189 eapMethod = builder.eapMethod; in WifiInfo()220 private String eapMethod; field in WifiInfo.Builder252 public Builder setEapMethod(String eapMethod) { in setEapMethod() argument253 this.eapMethod = eapMethod; in setEapMethod()
147 if (!isEAPWifiInfoValid(wifiInfo.eapMethod)) { in maybeUpdateForEAPConfigurationOrThrow()148 ProvisionLogger.loge("Unknown EAP method: " + wifiInfo.eapMethod); in maybeUpdateForEAPConfigurationOrThrow()167 wifiEnterpriseConfig.setEapMethod(getEAPMethodFromString(wifiInfo.eapMethod)); in updateWifiEnterpriseConfigFromWifiInfo()230 private boolean isEAPWifiInfoValid(String eapMethod) { in isEAPWifiInfoValid() argument231 return EAP_METHODS.containsKey(eapMethod); in isEAPWifiInfoValid()332 private int getEAPMethodFromString(String eapMethod) { in getEAPMethodFromString() argument333 if (EAP_METHODS.containsKey(eapMethod)) { in getEAPMethodFromString()334 return EAP_METHODS.get(eapMethod); in getEAPMethodFromString()336 throw new IllegalArgumentException("Unknown EAP method: " + eapMethod); in getEAPMethodFromString()
655 int eapMethod = mEapMethodSpinner.getSelectedItemPosition(); in getConfig() local657 config.enterpriseConfig.setEapMethod(eapMethod); in getConfig()658 switch (eapMethod) { in getConfig()739 if (eapMethod == Eap.SIM || eapMethod == Eap.AKA || eapMethod == Eap.AKA_PRIME) { in getConfig()742 } else if (eapMethod == Eap.PWD) { in getConfig()1001 int eapMethod = enterpriseConfig.getEapMethod(); in showSecurityFields() local1003 mEapMethodSpinner.setSelection(eapMethod); in showSecurityFields()1004 showEapFieldsByMethod(eapMethod); in showSecurityFields()1005 switch (eapMethod) { in showSecurityFields()1094 private void showEapFieldsByMethod(int eapMethod) { in showEapFieldsByMethod() argument[all …]
685 int eapMethod = mEapMethodSpinner.getSelectedItemPosition(); in getConfig() local687 config.enterpriseConfig.setEapMethod(eapMethod); in getConfig()688 switch (eapMethod) { in getConfig()769 if (eapMethod == Eap.SIM || eapMethod == Eap.AKA || eapMethod == Eap.AKA_PRIME) { in getConfig()772 } else if (eapMethod == Eap.PWD) { in getConfig()1032 int eapMethod = enterpriseConfig.getEapMethod(); in showSecurityFields() local1034 mEapMethodSpinner.setSelection(eapMethod); in showSecurityFields()1035 showEapFieldsByMethod(eapMethod); in showSecurityFields()1036 switch (eapMethod) { in showSecurityFields()1125 private void showEapFieldsByMethod(int eapMethod) { in showEapFieldsByMethod() argument[all …]
353 private WifiInfo buildTestWifiInfoForEAPJustAuthMethods(String eapMethod, String phase2Auth) { in buildTestWifiInfoForEAPJustAuthMethods() argument355 .setEapMethod(eapMethod) in buildTestWifiInfoForEAPJustAuthMethods()442 WifiConfiguration wifiConf, int eapMethod, int phase2Auth) { in assertEAP_MethodAndPhase2Auth() argument443 assertEquals(eapMethod, wifiConf.enterpriseConfig.getEapMethod()); in assertEAP_MethodAndPhase2Auth()
68 assertEquals(TEST_EAP_METHOD, wifiInfo.eapMethod); in testBuilderWriteAndReadBack()
686 private void selectEAPMethod(String eapMethod) throws Exception { in selectEAPMethod() argument691 findOrScrollToObject(SPINNER_OPTIONS_SCROLLABLE_BY_SELECTOR, By.text(eapMethod)).click(); in selectEAPMethod()