Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaNetworkHalAidlImplTest.java425 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair() local
434 assertTrue(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
457 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc1) in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair() local
468 assertTrue(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
491 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc1) in testSendInvalidKcSresLenNetworkEapSimGsmAuthResponse() local
496 assertFalse(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendInvalidKcSresLenNetworkEapSimGsmAuthResponse()
510 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse() local
513 assertFalse(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
528 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(ik) in testSendNetworkEapSimUmtsAuthResponse() local
536 assertTrue(mSupplicantNetwork.sendNetworkEapSimUmtsAuthResponse(paramsStr)); in testSendNetworkEapSimUmtsAuthResponse()
[all …]
DSupplicantStaNetworkHalHidlImplTest.java554 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair() local
572 assertTrue(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
587 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc1) in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair() local
609 assertTrue(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
622 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc1) in testSendInvalidKcSresLenNetworkEapSimGsmAuthResponse() local
635 assertFalse(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendInvalidKcSresLenNetworkEapSimGsmAuthResponse()
646 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse() local
657 assertFalse(mSupplicantNetwork.sendNetworkEapSimGsmAuthResponse(paramsStr)); in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
670 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(ik) in testSendNetworkEapSimUmtsAuthResponse() local
691 assertTrue(mSupplicantNetwork.sendNetworkEapSimUmtsAuthResponse(paramsStr)); in testSendNetworkEapSimUmtsAuthResponse()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/
DISupplicantStaIfaceHal.java193 @NonNull String ifaceName, String paramsStr); in sendCurrentNetworkEapSimGsmAuthResponse() argument
211 @NonNull String ifaceName, String paramsStr); in sendCurrentNetworkEapSimUmtsAuthResponse() argument
221 @NonNull String ifaceName, String paramsStr); in sendCurrentNetworkEapSimUmtsAutsResponse() argument
DSupplicantStaNetworkHalAidlImpl.java3066 public boolean sendNetworkEapSimGsmAuthResponse(String paramsStr) { in sendNetworkEapSimGsmAuthResponse() argument
3069 Matcher match = GSM_AUTH_RESPONSE_PARAMS_PATTERN.matcher(paramsStr); in sendNetworkEapSimGsmAuthResponse()
3073 Log.e(TAG, "Malformed gsm auth response params: " + paramsStr); in sendNetworkEapSimGsmAuthResponse()
3096 Log.e(TAG, "Malformed gsm auth response params: " + paramsStr); in sendNetworkEapSimGsmAuthResponse()
3106 Log.e(TAG, "Illegal argument " + paramsStr, e); in sendNetworkEapSimGsmAuthResponse()
3160 public boolean sendNetworkEapSimUmtsAuthResponse(String paramsStr) { in sendNetworkEapSimUmtsAuthResponse() argument
3163 Matcher match = UMTS_AUTH_RESPONSE_PARAMS_PATTERN.matcher(paramsStr); in sendNetworkEapSimUmtsAuthResponse()
3165 Log.e(TAG, "Malformed umts auth response params: " + paramsStr); in sendNetworkEapSimUmtsAuthResponse()
3193 Log.e(TAG, "Illegal argument " + paramsStr, e); in sendNetworkEapSimUmtsAuthResponse()
3224 public boolean sendNetworkEapSimUmtsAutsResponse(String paramsStr) { in sendNetworkEapSimUmtsAutsResponse() argument
[all …]
DSupplicantStaIfaceHal.java1217 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimGsmAuthResponse() argument
1223 return mStaIfaceHal.sendCurrentNetworkEapSimGsmAuthResponse(ifaceName, paramsStr); in sendCurrentNetworkEapSimGsmAuthResponse()
1251 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimUmtsAuthResponse() argument
1257 return mStaIfaceHal.sendCurrentNetworkEapSimUmtsAuthResponse(ifaceName, paramsStr); in sendCurrentNetworkEapSimUmtsAuthResponse()
1269 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimUmtsAutsResponse() argument
1275 return mStaIfaceHal.sendCurrentNetworkEapSimUmtsAutsResponse(ifaceName, paramsStr); in sendCurrentNetworkEapSimUmtsAutsResponse()
DSupplicantStaNetworkHalHidlImpl.java3228 public boolean sendNetworkEapSimGsmAuthResponse(String paramsStr) { in sendNetworkEapSimGsmAuthResponse() argument
3231 Matcher match = GSM_AUTH_RESPONSE_PARAMS_PATTERN.matcher(paramsStr); in sendNetworkEapSimGsmAuthResponse()
3236 Log.e(TAG, "Malformed gsm auth response params: " + paramsStr); in sendNetworkEapSimGsmAuthResponse()
3259 Log.e(TAG, "Malformed gsm auth response params: " + paramsStr); in sendNetworkEapSimGsmAuthResponse()
3264 Log.e(TAG, "Illegal argument " + paramsStr, e); in sendNetworkEapSimGsmAuthResponse()
3308 public boolean sendNetworkEapSimUmtsAuthResponse(String paramsStr) { in sendNetworkEapSimUmtsAuthResponse() argument
3311 Matcher match = UMTS_AUTH_RESPONSE_PARAMS_PATTERN.matcher(paramsStr); in sendNetworkEapSimUmtsAuthResponse()
3313 Log.e(TAG, "Malformed umts auth response params: " + paramsStr); in sendNetworkEapSimUmtsAuthResponse()
3340 Log.e(TAG, "Illegal argument " + paramsStr, e); in sendNetworkEapSimUmtsAuthResponse()
3369 public boolean sendNetworkEapSimUmtsAutsResponse(String paramsStr) { in sendNetworkEapSimUmtsAutsResponse() argument
[all …]
DSupplicantStaIfaceHalAidlImpl.java983 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimGsmAuthResponse() argument
991 return networkHandle.sendNetworkEapSimGsmAuthResponse(paramsStr); in sendCurrentNetworkEapSimGsmAuthResponse()
1021 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimUmtsAuthResponse() argument
1029 return networkHandle.sendNetworkEapSimUmtsAuthResponse(paramsStr); in sendCurrentNetworkEapSimUmtsAuthResponse()
1041 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimUmtsAutsResponse() argument
1049 return networkHandle.sendNetworkEapSimUmtsAutsResponse(paramsStr); in sendCurrentNetworkEapSimUmtsAutsResponse()
DSupplicantStaIfaceHalHidlImpl.java1304 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimGsmAuthResponse() argument
1310 return networkHandle.sendNetworkEapSimGsmAuthResponse(paramsStr); in sendCurrentNetworkEapSimGsmAuthResponse()
1338 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimUmtsAuthResponse() argument
1344 return networkHandle.sendNetworkEapSimUmtsAuthResponse(paramsStr); in sendCurrentNetworkEapSimUmtsAuthResponse()
1356 @NonNull String ifaceName, String paramsStr) { in sendCurrentNetworkEapSimUmtsAutsResponse() argument
1362 return networkHandle.sendNetworkEapSimUmtsAutsResponse(paramsStr); in sendCurrentNetworkEapSimUmtsAutsResponse()
/packages/services/Car/service/src/com/android/car/bluetooth/
DBluetoothProfileInhibitManager.java261 for (String paramsStr : savedBluetoothConnection.split(SETTINGS_DELIMITER)) { in load()
263 BluetoothConnection params = new BluetoothConnection(paramsStr); in load()
274 mLogHeader, paramsStr, e); in load()