Searched refs:phase2Method (Results 1 - 4 of 4) sorted by relevance

/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...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DPasspointProvider.java475 int phase2Method = WifiEnterpriseConfig.Phase2.NONE;
478 phase2Method = WifiEnterpriseConfig.Phase2.PAP;
481 phase2Method = WifiEnterpriseConfig.Phase2.MSCHAP;
484 phase2Method = WifiEnterpriseConfig.Phase2.MSCHAPV2;
492 config.setPhase2Method(phase2Method);
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiConfigurationUtilTest.java368 public EnterpriseConfig setPhase2(int phase2Method) { argument
369 enterpriseConfig.setPhase2Method(phase2Method);
370 phase2 = "auth=" + WifiEnterpriseConfig.Phase2.strings[phase2Method];
H A DWifiConfigurationTestUtil.java301 public static WifiConfiguration createEapNetwork(int eapMethod, int phase2Method) { argument
306 configuration.enterpriseConfig.setPhase2Method(phase2Method);

Completed in 1176 milliseconds