Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaNetworkHalTest.java492 final byte[] sres = new byte[]{0x12, 0x10, 0x32, 0x23}; in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
495 + ":" + NativeUtil.hexStringFromByteArray(sres) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
497 + ":" + NativeUtil.hexStringFromByteArray(sres); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
505 assertArrayEquals(sres, params.get(0).sres); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
507 assertArrayEquals(sres, params.get(1).sres); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
540 assertArrayEquals(sres1, params.get(0).sres); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
542 assertArrayEquals(sres2, params.get(1).sres); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
544 assertArrayEquals(sres3, params.get(2).sres); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
584 final byte[] sres = new byte[]{0x12, 0x23, 0x12, 0x23}; in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
587 + ":" + NativeUtil.hexStringFromByteArray(sres); in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiCarrierInfoManager.java904 String sres = makeHex(result, 1, sresLen); in getGsmAuthResponseWithLength() local
916 sb.append(":" + kc + ":" + sres); in getGsmAuthResponseWithLength()
917 Log.v(TAG, "kc:" + kc + " sres:" + sres); in getGsmAuthResponseWithLength()
976 String sres = makeHex(result, START_SRES_POS, SRES_LEN); in getGsmSimpleSimNoLengthAuthResponse() local
978 sb.append(":" + kc + ":" + sres); in getGsmSimpleSimNoLengthAuthResponse()
979 Log.v(TAG, "kc:" + kc + " sres:" + sres); in getGsmSimpleSimNoLengthAuthResponse()
DSupplicantStaNetworkHal.java2948 byte[] sres = NativeUtil.hexStringToByteArray(match.group(2)); in sendNetworkEapSimGsmAuthResponse()
2949 if (sres == null || sres.length != param.sres.length) { in sendNetworkEapSimGsmAuthResponse()
2954 System.arraycopy(sres, 0, param.sres, 0, param.sres.length); in sendNetworkEapSimGsmAuthResponse()