Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/util/
DTelephonyUtilTest.java468 private static String create3GSimAuthUmtsAutsResponse(byte[] auts) { in create3GSimAuthUmtsAutsResponse() argument
469 byte[] result = new byte[auts.length + 2]; in create3GSimAuthUmtsAutsResponse()
472 result[idx++] = (byte) auts.length; in create3GSimAuthUmtsAutsResponse()
473 for (int i = 0; i < auts.length; ++i) { in create3GSimAuthUmtsAutsResponse()
474 result[idx++] = auts[i]; in create3GSimAuthUmtsAutsResponse()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DTelephonyUtil.java681 String auts = makeHex(result, 2, autsLen); in get3GAuthResponse() local
683 sb.append(":" + auts); in get3GAuthResponse()
684 Log.v(TAG, "auts:" + auts); in get3GAuthResponse()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaNetworkHalTest.java680 final byte[] auts = new byte[]{0x45, 0x45, 0x32, 0x34, 0x45, 0x10, 0x34, 0x12, 0x23, 0x34, in testSendNetworkEapSimUmtsAutsResponse()
682 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(auts); in testSendNetworkEapSimUmtsAutsResponse()
687 assertArrayEquals(auts, params); in testSendNetworkEapSimUmtsAutsResponse()
700 final byte[] auts = new byte[]{0x45, 0x45, 0x32, 0x34, 0x45, 0x10, 0x34, 0x12, 0x23}; in testSendInvalidNetworkEapSimUmtsAutsResponse()
701 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(auts); in testSendInvalidNetworkEapSimUmtsAutsResponse()
706 assertArrayEquals(auts, params); in testSendInvalidNetworkEapSimUmtsAutsResponse()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHal.java2771 byte[] auts = NativeUtil.hexStringToByteArray(match.group(1)); in sendNetworkEapSimUmtsAutsResponse()
2772 if (auts == null || auts.length != 14) { in sendNetworkEapSimUmtsAutsResponse()
2776 return sendNetworkEapSimUmtsAutsResponse(auts); in sendNetworkEapSimUmtsAutsResponse()
2785 private boolean sendNetworkEapSimUmtsAutsResponse(byte[/* 14 */] auts) { in sendNetworkEapSimUmtsAutsResponse() argument
2791 mISupplicantStaNetwork.sendNetworkEapSimUmtsAutsResponse(auts); in sendNetworkEapSimUmtsAutsResponse()