Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaNetworkHalTest.java727 }).when(mISupplicantStaNetworkMock).sendNetworkEapIdentityResponse(any(ArrayList.class)); in testSendNetworkEapIdentityResponse()
729 assertTrue(mSupplicantNetwork.sendNetworkEapIdentityResponse(identityStr, in testSendNetworkEapIdentityResponse()
748 assertTrue(mSupplicantNetwork.sendNetworkEapIdentityResponse(identityStr, in testSendNetworkEapIdentityResponse()
DSupplicantStaIfaceHalTest.java930 when(mSupplicantStaNetworkMock.sendNetworkEapIdentityResponse(eq(identity), in testSetCurrentNetworkEapIdentityResponse()
938 verify(mSupplicantStaNetworkMock, never()).sendNetworkEapIdentityResponse(eq(identity), in testSetCurrentNetworkEapIdentityResponse()
943 verify(mSupplicantStaNetworkMock).sendNetworkEapIdentityResponse(eq(identity), in testSetCurrentNetworkEapIdentityResponse()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHal.java2840 public boolean sendNetworkEapIdentityResponse(String identityStr, in sendNetworkEapIdentityResponse() method in SupplicantStaNetworkHal
2850 return sendNetworkEapIdentityResponse(unencryptedIdentity, encryptedIdentity); in sendNetworkEapIdentityResponse()
2859 private boolean sendNetworkEapIdentityResponse(ArrayList<Byte> unencryptedIdentity, in sendNetworkEapIdentityResponse() method in SupplicantStaNetworkHal
2874 status = mISupplicantStaNetwork.sendNetworkEapIdentityResponse( in sendNetworkEapIdentityResponse()
DSupplicantStaIfaceHal.java1094 return networkHandle.sendNetworkEapIdentityResponse(identity, encryptedIdentity); in sendCurrentNetworkEapIdentityResponse()