Home
last modified time | relevance | path

Searched refs:paramsStr (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaNetworkHalTest.java494 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair() local
512 assertTrue(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
527 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc1) in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair() local
549 assertTrue(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
562 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc1) in testSendInvalidKcSresLenNetworkEapSimGsmAuthResponse() local
575 assertFalse(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendInvalidKcSresLenNetworkEapSimGsmAuthResponse()
586 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse() local
597 assertFalse(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
610 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(ik) in testSendNetworkEapSimUmtsAuthResponse() local
631 assertTrue(mSupplicantNetwork.sendNetworkEapSimUmtsAuthResponse(paramsStr)); in testSendNetworkEapSimUmtsAuthResponse()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHal.java2930 public boolean sendNetworkEapSimGsmAuthResponse(String paramsStr) { in sendNetworkEapSimGsmAuthResponse() argument
2933 Matcher match = GSM_AUTH_RESPONSE_PARAMS_PATTERN.matcher(paramsStr); in sendNetworkEapSimGsmAuthResponse()
2938 Log.e(TAG, "Malformed gsm auth response params: " + paramsStr); in sendNetworkEapSimGsmAuthResponse()
2959 Log.e(TAG, "Malformed gsm auth response params: " + paramsStr); in sendNetworkEapSimGsmAuthResponse()
2964 Log.e(TAG, "Illegal argument " + paramsStr, e); in sendNetworkEapSimGsmAuthResponse()
3008 public boolean sendNetworkEapSimUmtsAuthResponse(String paramsStr) { in sendNetworkEapSimUmtsAuthResponse() argument
3011 Matcher match = UMTS_AUTH_RESPONSE_PARAMS_PATTERN.matcher(paramsStr); in sendNetworkEapSimUmtsAuthResponse()
3013 Log.e(TAG, "Malformed umts auth response params: " + paramsStr); in sendNetworkEapSimUmtsAuthResponse()
3040 Log.e(TAG, "Illegal argument " + paramsStr, e); in sendNetworkEapSimUmtsAuthResponse()
3069 public boolean sendNetworkEapSimUmtsAutsResponse(String paramsStr) { in sendNetworkEapSimUmtsAutsResponse() argument
[all …]
DSupplicantStaIfaceHal.java1177 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimGsmAuthResponse() argument
1183 return networkHandle.sendNetworkEapSimGsmAuthResponse(paramsStr); in sendCurrentNetworkEapSimGsmAuthResponse()
1211 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimUmtsAuthResponse() argument
1217 return networkHandle.sendNetworkEapSimUmtsAuthResponse(paramsStr); in sendCurrentNetworkEapSimUmtsAuthResponse()
1229 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimUmtsAutsResponse() argument
1235 return networkHandle.sendNetworkEapSimUmtsAutsResponse(paramsStr); in sendCurrentNetworkEapSimUmtsAutsResponse()