Home
last modified time | relevance | path

Searched refs:setEapAnonymousIdentity (Results 1 – 13 of 13) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java1496 when(mStaIfaceHal.setEapAnonymousIdentity(any(), any(), anyBoolean())).thenReturn(true); in testSetEapAnonymousIdentitySuccess()
1498 assertTrue(mWifiNative.setEapAnonymousIdentity(WIFI_IFACE_NAME, anonymousIdentity, true)); in testSetEapAnonymousIdentitySuccess()
1499 verify(mStaIfaceHal).setEapAnonymousIdentity(eq(WIFI_IFACE_NAME), in testSetEapAnonymousIdentitySuccess()
1509 when(mStaIfaceHal.setEapAnonymousIdentity(any(), any(), anyBoolean())).thenReturn(true); in testSetEapAnonymousIdentitySuccessWithNotUpdateToNativeService()
1511 assertTrue(mWifiNative.setEapAnonymousIdentity(WIFI_IFACE_NAME, anonymousIdentity, false)); in testSetEapAnonymousIdentitySuccessWithNotUpdateToNativeService()
1512 verify(mStaIfaceHal).setEapAnonymousIdentity(eq(WIFI_IFACE_NAME), in testSetEapAnonymousIdentitySuccessWithNotUpdateToNativeService()
1521 when(mStaIfaceHal.setEapAnonymousIdentity(any(), any(), anyBoolean())).thenReturn(true); in testSetEapAnonymousIdentityFailureWithNullString()
1522 assertFalse(mWifiNative.setEapAnonymousIdentity(WIFI_IFACE_NAME, null, true)); in testSetEapAnonymousIdentityFailureWithNullString()
1523 verify(mStaIfaceHal, never()).setEapAnonymousIdentity(any(), any(), anyBoolean()); in testSetEapAnonymousIdentityFailureWithNullString()
DSupplicantStaIfaceHalTest.java1215 when(mStaIfaceHalAidlMock.setEapAnonymousIdentity(anyString(), anyString(), anyBoolean())) in verifySetEapAnonymousIdentity()
1217 assertTrue(mDut.setEapAnonymousIdentity(IFACE_NAME, anonymousIdentity, in verifySetEapAnonymousIdentity()
1219 verify(mStaIfaceHalAidlMock).setEapAnonymousIdentity(eq(IFACE_NAME), eq(anonymousIdentity), in verifySetEapAnonymousIdentity()
DSupplicantStaIfaceHalAidlImplTest.java2585 when(mSupplicantStaNetworkMock.setEapAnonymousIdentity(any())) in verifySetEapAnonymousIdentity()
2600 assertTrue(mDut.setEapAnonymousIdentity(WLAN0_IFACE_NAME, anonymousIdentity, in verifySetEapAnonymousIdentity()
2604 verify(mSupplicantStaNetworkMock).setEapAnonymousIdentity(captor.capture()); in verifySetEapAnonymousIdentity()
2607 verify(mSupplicantStaNetworkMock, never()).setEapAnonymousIdentity(any()); in verifySetEapAnonymousIdentity()
DClientModeImplTest.java1594 verify(mWifiNative).setEapAnonymousIdentity( in testUpdatingOobPseudonymToSupplicant()
1623 verify(mWifiNative, never()).setEapAnonymousIdentity( in testNotUpdatingOobPseudonymToSupplicant()
1879 verify(mWifiNative).setEapAnonymousIdentity(any(), eq(pseudonym), eq(false)); in testSetAnonymousIdentityWhenConnectionIsEstablishedWithPseudonym()
1937 verify(mWifiNative).setEapAnonymousIdentity(any(), eq(pseudonym + "@" + realm), in testSetAnonymousIdentityWhenConnectionIsEstablishedWithNonDecoratedPseudonym()
1994 verify(mWifiNative).setEapAnonymousIdentity(any(), eq(pseudonym), eq(false)); in testSetAnonymousIdentityWhenConnectionIsEstablishedWithPseudonymForSuggestion()
2050 verify(mWifiNative).setEapAnonymousIdentity(any(), eq(pseudonymFromSupplicant), in testUpdatePseudonymAsInBandPseudonymWhenConnectionIsEstablished()
2105 verify(mWifiNative).setEapAnonymousIdentity(any(), eq(pseudonym), eq(false)); in testSetAnonymousIdentityWhenConnectionIsEstablishedWithPseudonymForPasspoint()
DSupplicantStaNetworkHalAidlImplTest.java1659 }).when(mISupplicantStaNetworkMock).setEapAnonymousIdentity(any(byte[].class)); in setupISupplicantNetworkMock()
DSupplicantStaNetworkHalHidlImplTest.java2198 }).when(mISupplicantStaNetworkMock).setEapAnonymousIdentity(any(ArrayList.class)); in setupISupplicantNetworkMock()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DISupplicantStaIfaceHal.java828 default boolean setEapAnonymousIdentity(@NonNull String ifaceName, String anonymousIdentity, in setEapAnonymousIdentity() method
DSupplicantStaIfaceHal.java2363 public boolean setEapAnonymousIdentity(@NonNull String ifaceName, String anonymousIdentity, in setEapAnonymousIdentity() method in SupplicantStaIfaceHal
2369 return mStaIfaceHal.setEapAnonymousIdentity(ifaceName, anonymousIdentity, in setEapAnonymousIdentity()
DSupplicantStaNetworkHalAidlImpl.java788 if (!setEapAnonymousIdentity(NativeUtil.stringToByteArray(eapParam))) { in saveWifiEnterpriseConfig()
1880 public boolean setEapAnonymousIdentity(byte[] identity) { in setEapAnonymousIdentity() method in SupplicantStaNetworkHalAidlImpl
1887 mISupplicantStaNetwork.setEapAnonymousIdentity(identity); in setEapAnonymousIdentity()
DSupplicantStaNetworkHalHidlImpl.java720 if (!setEapAnonymousIdentity(NativeUtil.stringToByteArrayList(eapParam))) { in saveWifiEnterpriseConfig()
1957 public boolean setEapAnonymousIdentity(java.util.ArrayList<Byte> identity) { in setEapAnonymousIdentity() method in SupplicantStaNetworkHalHidlImpl
1962 SupplicantStatus status = mISupplicantStaNetwork.setEapAnonymousIdentity(identity); in setEapAnonymousIdentity()
DSupplicantStaIfaceHalAidlImpl.java3859 public boolean setEapAnonymousIdentity(@NonNull String ifaceName, String anonymousIdentity, in setEapAnonymousIdentity() method in SupplicantStaIfaceHalAidlImpl
3871 if (!networkHandle.setEapAnonymousIdentity(anonymousIdentity.getBytes())) { in setEapAnonymousIdentity()
DWifiNative.java5126 public boolean setEapAnonymousIdentity(@NonNull String ifaceName, String anonymousIdentity,
5132 return mSupplicantStaIfaceHal.setEapAnonymousIdentity(ifaceName, anonymousIdentity,
DClientModeImpl.java5805 mWifiNative.setEapAnonymousIdentity(mInterfaceName, in processMessageImpl()
5873 mWifiNative.setEapAnonymousIdentity(mInterfaceName, in processMessageImpl()