Home
last modified time | relevance | path

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

/frameworks/base/wifi/java/android/net/wifi/
DWifiEnterpriseConfig.java420 String phase2Method = removeDoubleQuotes(loader.loadValue(PHASE2_KEY)); in loadFromSupplicant() local
422 if (phase2Method.startsWith(Phase2.AUTH_PREFIX)) { in loadFromSupplicant()
423 phase2Method = phase2Method.substring(Phase2.AUTH_PREFIX.length()); in loadFromSupplicant()
424 } else if (phase2Method.startsWith(Phase2.AUTHEAP_PREFIX)) { in loadFromSupplicant()
425 phase2Method = phase2Method.substring(Phase2.AUTHEAP_PREFIX.length()); in loadFromSupplicant()
427 mPhase2Method = getStringIndex(Phase2.strings, phase2Method, Phase2.NONE); in loadFromSupplicant()
474 public void setPhase2Method(int phase2Method) { in setPhase2Method() argument
475 switch (phase2Method) { in setPhase2Method()
481 mPhase2Method = phase2Method; in setPhase2Method()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
DCredential.java198 private static EAPMethod mapEapMethod(int eapMethod, int phase2Method) throws IOException {
205 switch (phase2Method) {
217 phase2Method + " not valid for Passpoint");
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiConfigManagerTest.java935 public EnterpriseConfig setPhase2(int phase2Method) { in setPhase2() argument
936 enterpriseConfig.setPhase2Method(phase2Method); in setPhase2()
937 phase2 = "auth=" + Phase2.strings[phase2Method]; in setPhase2()