Searched refs:sres (Results 1 – 3 of 3) sorted by relevance
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/ |
D | TelephonyUtil.java | 517 String sres = makeHex(result, 1, sresLen); in getGsmAuthResponseWithLength() local 529 sb.append(":" + kc + ":" + sres); in getGsmAuthResponseWithLength() 530 Log.v(TAG, "kc:" + kc + " sres:" + sres); in getGsmAuthResponseWithLength() 589 String sres = makeHex(result, START_SRES_POS, SRES_LEN); in getGsmSimpleSimNoLengthAuthResponse() local 591 sb.append(":" + kc + ":" + sres); in getGsmSimpleSimNoLengthAuthResponse() 592 Log.v(TAG, "kc:" + kc + " sres:" + sres); in getGsmSimpleSimNoLengthAuthResponse()
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
D | SupplicantStaNetworkHalTest.java | 508 final byte[] sres = new byte[]{0x12, 0x10, 0x32, 0x23}; in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair() 511 + ":" + NativeUtil.hexStringFromByteArray(sres) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair() 513 + ":" + NativeUtil.hexStringFromByteArray(sres); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair() 521 assertArrayEquals(sres, params.get(0).sres); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair() 523 assertArrayEquals(sres, params.get(1).sres); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair() 556 assertArrayEquals(sres1, params.get(0).sres); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair() 558 assertArrayEquals(sres2, params.get(1).sres); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair() 560 assertArrayEquals(sres3, params.get(2).sres); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair() 600 final byte[] sres = new byte[]{0x12, 0x23, 0x12, 0x23}; in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse() 603 + ":" + NativeUtil.hexStringFromByteArray(sres); in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | SupplicantStaNetworkHal.java | 2634 byte[] sres = NativeUtil.hexStringToByteArray(match.group(2)); in sendNetworkEapSimGsmAuthResponse() 2635 if (sres == null || sres.length != param.sres.length) { in sendNetworkEapSimGsmAuthResponse() 2640 System.arraycopy(sres, 0, param.sres, 0, param.sres.length); in sendNetworkEapSimGsmAuthResponse()
|