Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaNetworkHalTest.java531 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair() local
549 assertTrue(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
564 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc1) in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair() local
586 assertTrue(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
599 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc1) in testSendInvalidKcSresLenNetworkEapSimGsmAuthResponse() local
612 assertFalse(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendInvalidKcSresLenNetworkEapSimGsmAuthResponse()
623 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse() local
634 assertFalse(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
647 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(ik) in testSendNetworkEapSimUmtsAuthResponse() local
668 assertTrue(mSupplicantNetwork.sendNetworkEapSimUmtsAuthResponse(paramsStr)); in testSendNetworkEapSimUmtsAuthResponse()
[all …]
/packages/services/Car/service/src/com/android/car/
DBluetoothProfileInhibitManager.java248 for (String paramsStr : savedBluetoothConnection.split(SETTINGS_DELIMITER)) { in load()
250 BluetoothConnection params = BluetoothConnection.decode(paramsStr); in load()
257 loge("Bad format for saved profile inhibit: " + paramsStr + ", " + e); in load()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHal.java3206 public boolean sendNetworkEapSimGsmAuthResponse(String paramsStr) { in sendNetworkEapSimGsmAuthResponse() argument
3209 Matcher match = GSM_AUTH_RESPONSE_PARAMS_PATTERN.matcher(paramsStr); in sendNetworkEapSimGsmAuthResponse()
3214 Log.e(TAG, "Malformed gsm auth response params: " + paramsStr); in sendNetworkEapSimGsmAuthResponse()
3235 Log.e(TAG, "Malformed gsm auth response params: " + paramsStr); in sendNetworkEapSimGsmAuthResponse()
3240 Log.e(TAG, "Illegal argument " + paramsStr, e); in sendNetworkEapSimGsmAuthResponse()
3284 public boolean sendNetworkEapSimUmtsAuthResponse(String paramsStr) { in sendNetworkEapSimUmtsAuthResponse() argument
3287 Matcher match = UMTS_AUTH_RESPONSE_PARAMS_PATTERN.matcher(paramsStr); in sendNetworkEapSimUmtsAuthResponse()
3289 Log.e(TAG, "Malformed umts auth response params: " + paramsStr); in sendNetworkEapSimUmtsAuthResponse()
3316 Log.e(TAG, "Illegal argument " + paramsStr, e); in sendNetworkEapSimUmtsAuthResponse()
3345 public boolean sendNetworkEapSimUmtsAutsResponse(String paramsStr) { in sendNetworkEapSimUmtsAutsResponse() argument
[all …]
DSupplicantStaIfaceHal.java1253 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimGsmAuthResponse() argument
1259 return networkHandle.sendNetworkEapSimGsmAuthResponse(paramsStr); in sendCurrentNetworkEapSimGsmAuthResponse()
1287 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimUmtsAuthResponse() argument
1293 return networkHandle.sendNetworkEapSimUmtsAuthResponse(paramsStr); in sendCurrentNetworkEapSimUmtsAuthResponse()
1305 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimUmtsAutsResponse() argument
1311 return networkHandle.sendNetworkEapSimUmtsAutsResponse(paramsStr); in sendCurrentNetworkEapSimUmtsAutsResponse()