Home
last modified time | relevance | path

Searched refs:anonymousIdentity (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
DWifiConfigurationHelper.java119 Integer phase2, String identity, String anonymousIdentity, String caCert, in createEapConfig() argument
130 if (anonymousIdentity == null) anonymousIdentity = ""; in createEapConfig()
138 config.enterpriseConfig.setAnonymousIdentity(anonymousIdentity); in createEapConfig()
220 String anonymousIdentity = null; in getWifiConfiguration() local
222 anonymousIdentity = jsonConfig.getString("anonymous_identity"); in getWifiConfiguration()
233 anonymousIdentity, caCert, clientCert); in getWifiConfiguration()
/frameworks/base/wifi/java/android/net/wifi/
DWifiEnterpriseConfig.java508 public void setAnonymousIdentity(String anonymousIdentity) { in setAnonymousIdentity() argument
509 setFieldValue(ANON_IDENTITY_KEY, anonymousIdentity); in setAnonymousIdentity()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaIfaceHalTest.java716 String anonymousIdentity = "aaa@bbb.ccc"; in testGetCurrentNetworkEapAnonymousIdentity() local
718 .thenReturn(anonymousIdentity); in testGetCurrentNetworkEapAnonymousIdentity()
725 assertEquals(anonymousIdentity, mDut.getCurrentNetworkEapAnonymousIdentity()); in testGetCurrentNetworkEapAnonymousIdentity()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiStateMachine.java5427 String anonymousIdentity = mWifiNative.getEapAnonymousIdentity(); in processMessage() local
5428 if (anonymousIdentity != null) { in processMessage()
5429 config.enterpriseConfig.setAnonymousIdentity(anonymousIdentity); in processMessage()