Home
last modified time | relevance | path

Searched refs:getEapMethod (Results 1 – 25 of 45) sorted by relevance

12

/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
H A DEapAkaMethodStateMachine.java146 int getEapMethod() { in getEapMethod() method in EapAkaMethodStateMachine
184 message.eapIdentifier, getEapMethod(), decodeResult.atClientErrorCode); in process()
202 getEapMethod(), in process()
223 message.eapIdentifier, getEapMethod(), decodeResult.atClientErrorCode); in process()
241 getEapMethod(), in process()
274 getEapMethod(), in process()
347 message.eapIdentifier, getEapMethod(), decodeResult.atClientErrorCode); in process()
363 getEapMethod(), in process()
396 getEapMethod(), in handleChallengeAuthentication()
416 getEapMethod(), in handleChallengeAuthentication()
[all …]
H A DEapSimAkaMethodStateMachine.java249 EapData eapData = new EapData(getEapMethod(), typeDataWithEmptyMac); in getMac()
283 EapData eapData = new EapData(getEapMethod(), eapSimAkaTypeData.encode()); in buildResponseMessageWithMac()
320 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
328 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
332 getEapMethod(), eapSimAkaTypeData.eapSubtype, identifier, Arrays.asList()); in handleEapSimAkaNotification()
337 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
347 identifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in handleEapSimAkaNotification()
H A DEapMethodStateMachine.java57 abstract int getEapMethod(); in getEapMethod() method in EapMethodStateMachine
107 } else if (message.eapData.eapType != getEapMethod()) { in handleEapSuccessFailureNotification()
109 "Expected EAP Type " + getEapMethod() in handleEapSuccessFailureNotification()
H A DEapMsChapV2MethodStateMachine.java215 int getEapMethod() { in getEapMethod() method in EapMsChapV2MethodStateMachine
449 + getEapMethod() in process()
482 "Expected EAP Type " + getEapMethod() + ", received " + eapType)); in process()
489 EapData eapData = new EapData(getEapMethod(), typeData.encode()); in buildEapMessageResponse()
H A DEapAkaPrimeMethodStateMachine.java128 int getEapMethod() { in getEapMethod() method in EapAkaPrimeMethodStateMachine
296 eapIdentifier, getEapMethod(), AtClientErrorCode.UNABLE_TO_PROCESS); in generateAndPersistEapAkaKeys()
H A DEapTtlsMethodStateMachine.java133 int getEapMethod() { in getEapMethod() method in EapTtlsMethodStateMachine
791 EapData eapData = new EapData(getEapMethod(), eapTtlsTypeData.encode()); in buildEapMessageResponse()
827 + getEapMethod() in handleEapSuccessFailureNotification()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiConfigurationUtil.java246 if (existingEnterpriseConfig.getEapMethod() != newEnterpriseConfig.getEapMethod()) { in hasEnterpriseConfigChanged()
1179 || config.enterpriseConfig.getEapMethod() != WifiEnterpriseConfig.Eap.TLS)) { in validateEnterpriseConfig()
1183 if (config.enterpriseConfig.getEapMethod() == WifiEnterpriseConfig.Eap.PEAP in validateEnterpriseConfig()
1184 || config.enterpriseConfig.getEapMethod() == WifiEnterpriseConfig.Eap.TTLS) { in validateEnterpriseConfig()
H A DNetworkListStoreData.java178 && config.enterpriseConfig.getEapMethod() != WifiEnterpriseConfig.Eap.NONE) { in serializeNetwork()
H A DSupplicantStaNetworkHal.java469 && config.enterpriseConfig.getEapMethod() != WifiEnterpriseConfig.Eap.NONE) { in saveWifiConfiguration()
470 if (config.enterpriseConfig.getEapMethod() == WifiEnterpriseConfig.Eap.WAPI_CERT) { in saveWifiConfiguration()
529 if (getEapMethod()) { in loadWifiEnterpriseConfig()
679 if (!setEapMethod(wifiConfigurationToSupplicantEapMethod(eapConfig.getEapMethod()))) { in saveWifiEnterpriseConfig()
680 Log.e(TAG, ssid + ": failed to set eap method: " + eapConfig.getEapMethod()); in saveWifiEnterpriseConfig()
2781 private boolean getEapMethod() { in getEapMethod() method in SupplicantStaNetworkHal
2787 mISupplicantStaNetwork.getEapMethod((SupplicantStatus status, in getEapMethod()
H A DNetworkSuggestionStoreData.java227 && suggestion.wifiConfiguration.enterpriseConfig.getEapMethod() in serializeNetworkSuggestion()
/aosp12/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DWifiConfigurationHelper.java216 int eapMethod = getEapMethod(jsonConfig.getString("eap")); in getWifiConfiguration()
299 private static int getEapMethod(String eapMethod) { in getEapMethod() method in WifiConfigurationHelper
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/
H A DWifiNetworkSpecifier.java377 if (enterpriseConfig.getEapMethod() != WifiEnterpriseConfig.Eap.TLS) { in setWpa3Enterprise192BitModeConfig()
444 && mWpa3EnterpriseConfig.getEapMethod() == WifiEnterpriseConfig.Eap.TLS in setSecurityParamsInWifiConfiguration()
H A DWifiNetworkSuggestion.java438 if (enterpriseConfig.getEapMethod() != WifiEnterpriseConfig.Eap.TLS) { in setWpa3Enterprise192BitModeConfig()
920 && mWpa3EnterpriseConfig.getEapMethod() == WifiEnterpriseConfig.Eap.TLS in setSecurityParamsInWifiConfiguration()
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/
H A DWifiConfigControllerTest.java530 when(mockWifiEnterpriseConfig.getEapMethod()).thenReturn(Eap.PEAP); in selectEapMethod_savedAccessPoint_shouldGetCorrectPosition()
544 assertThat(wifiConfiguration.enterpriseConfig.getEapMethod()).isEqualTo(Eap.PEAP); in selectEapMethod_savedAccessPoint_shouldGetCorrectPosition()
553 assertThat(wifiConfiguration.enterpriseConfig.getEapMethod()).isEqualTo(Eap.TTLS); in selectEapMethod_savedAccessPoint_shouldGetCorrectPosition()
H A DWifiConfigController2Test.java584 assertThat(wifiConfiguration.enterpriseConfig.getEapMethod()).isEqualTo(Eap.PEAP); in selectEapMethod_savedWifiEntry_shouldGetCorrectPosition()
593 assertThat(wifiConfiguration.enterpriseConfig.getEapMethod()).isEqualTo(Eap.TTLS); in selectEapMethod_savedWifiEntry_shouldGetCorrectPosition()
803 when(mockWifiEnterpriseConfig.getEapMethod()).thenReturn(Eap.PEAP); in setUpModifyingSavedPeapConfigController()
909 when(mockWifiEnterpriseConfig.getEapMethod()).thenReturn(Eap.TLS); in setUpModifyingSavedCertificateConfigController()
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/
H A DEapMsChapV2MethodStateMachineTest.java63 assertEquals(EAP_TYPE_MSCHAP_V2, mStateMachine.getEapMethod()); in testGetEapMethod()
H A DEapAkaMethodStateMachineTest.java105 assertEquals(EAP_TYPE_AKA, mEapAkaMethodStateMachine.getEapMethod()); in testGetEapMethod()
H A DEapSimMethodStateMachineTest.java107 assertEquals(EAP_TYPE_SIM, mEapSimMethodStateMachine.getEapMethod()); in testGetMethod()
H A DMethodStateTest.java161 assertEquals(methodState.mEapMethodStateMachine.getEapMethod(), EAP_TYPE_TTLS); in testProcessTransitionToEapTtls()
H A DEapSimAkaMethodStateMachineTest.java196 int getEapMethod() { in setUp()
566 int getEapMethod() { in buildEapAkaStateMachineWithKAut()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/
H A DPasspointProviderTest.java371 assertEquals(WifiEnterpriseConfig.Eap.TTLS, wifiEnterpriseConfig.getEapMethod()); in verifyWifiConfigWithTestData()
417 assertEquals(WifiEnterpriseConfig.Eap.TLS, wifiEnterpriseConfig.getEapMethod()); in verifyWifiConfigWithTestData()
447 wifiEnterpriseConfig.getEapMethod()); in verifyWifiConfigWithTestData()
451 wifiEnterpriseConfig.getEapMethod()); in verifyWifiConfigWithTestData()
455 wifiEnterpriseConfig.getEapMethod()); in verifyWifiConfigWithTestData()
H A DOsuNetworkConnectionTest.java342 assertEquals(wifiConfiguration.enterpriseConfig.getEapMethod(), in verifyWifiConfigurationForOsenOsuNetwork()
/aosp12/packages/modules/Wifi/framework/tests/src/android/net/wifi/
H A DWifiNetworkSpecifierTest.java140 assertEquals(enterpriseConfig.getEapMethod(), in testWifiNetworkSpecifierBuilderForWpa2EapHiddenNetworkWithSsidAndBssid()
141 wifiNetworkSpecifier.wifiConfiguration.enterpriseConfig.getEapMethod()); in testWifiNetworkSpecifierBuilderForWpa2EapHiddenNetworkWithSsidAndBssid()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
H A DPasspointProvider.java629 switch (wifiConfig.enterpriseConfig.getEapMethod()) { in convertFromWifiConfig()
653 + wifiConfig.enterpriseConfig.getEapMethod()); in convertFromWifiConfig()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DWifiConfigurationTestUtil.java933 assertEquals(expected.getEapMethod(), actual.getEapMethod()); in assertWifiEnterpriseConfigEqualForConfigStore()

12