Searched refs:eapType (Results 1 - 5 of 5) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DCarrierNetworkConfig.java148 NetworkInfo(int eapType, String carrierName) { argument
149 mEapType = eapType;
219 int eapType = parseEapType(Integer.parseInt(configArr[EAP_TYPE_INDEX]));
221 if (eapType == -1) {
225 mCarrierNetworkMap.put(ssid, new NetworkInfo(eapType, carrierName));
242 private static int parseEapType(int eapType) { argument
243 if (eapType == EAPConstants.EAP_SIM) {
245 } else if (eapType == EAPConstants.EAP_AKA) {
247 } else if (eapType == EAPConstants.EAP_AKA_PRIME) {
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DCarrierNetworkConfigTest.java81 * @param eapType The EAP type of the carrier network
84 private PersistableBundle generateTestConfig(String ssid, int eapType) { argument
87 new String(Base64.encode(ssid.getBytes(), Base64.DEFAULT)) + "," + eapType;
H A DWificondControlTest.java671 int eapType = WifiEnterpriseConfig.Eap.SIM;
676 .thenReturn(eapType);
686 assertEquals(eapType, scanResult.carrierApEapType);
/frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/
H A DCredential.java279 * @param eapType The EAP method type associated with this user credential
281 public void setEapType(int eapType) { argument
282 mEapType = eapType;
682 * @param eapType The EAP method type to set to
684 public void setEapType(int eapType) { argument
685 mEapType = eapType;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DPasspointProvider.java645 * @param eapType The EAP type of the SIM credential
650 int eapType, WifiEnterpriseConfig config) {
657 simCredential.setEapType(eapType);
649 buildSimCredentialFromEnterpriseConfig( int eapType, WifiEnterpriseConfig config) argument

Completed in 71 milliseconds