Searched defs:phase2Method (Results 1 - 3 of 3) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiConfigurationUtilTest.java615 public EnterpriseConfig setPhase2(int phase2Method) { argument
616 enterpriseConfig.setPhase2Method(phase2Method);
617 phase2 = "auth=" + WifiEnterpriseConfig.Phase2.strings[phase2Method];
H A DWifiConfigurationTestUtil.java312 public static WifiConfiguration createEapNetwork(int eapMethod, int phase2Method) { argument
317 configuration.enterpriseConfig.setPhase2Method(phase2Method);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiEnterpriseConfig.java408 String phase2Method = removeDoubleQuotes(loader.loadValue(PHASE2_KEY));
410 if (phase2Method.startsWith(Phase2.AUTH_PREFIX)) {
411 phase2Method = phase2Method.substring(Phase2.AUTH_PREFIX.length());
412 } else if (phase2Method.startsWith(Phase2.AUTHEAP_PREFIX)) {
413 phase2Method = phase2Method.substring(Phase2.AUTHEAP_PREFIX.length());
415 mPhase2Method = getStringIndex(Phase2.strings, phase2Method, Phase2.NONE);
456 * @param phase2Method is the inner authentication method and can be one of {@link Phase2#NONE},
462 public void setPhase2Method(int phase2Method) { argument
[all...]

Completed in 227 milliseconds