Home
last modified time | relevance | path

Searched refs:kc (Results 1 – 6 of 6) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
DIntCounter.java102 KeyCount kc = new KeyCount(keyAt(mIndex), valueAt(mIndex)); in iterator() local
104 return kc; in iterator()
134 for (KeyCount kc : this) { in toProto()
135 output[i] = converter.convert(kc.key, kc.count); in toProto()
DTelephonyUtil.java528 String kc = makeHex(result, 1 + kcOffset, kcLen); in getGsmAuthResponseWithLength() local
529 sb.append(":" + kc + ":" + sres); in getGsmAuthResponseWithLength()
530 Log.v(TAG, "kc:" + kc + " sres:" + sres); in getGsmAuthResponseWithLength()
590 String kc = makeHex(result, START_KC_POS, KC_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/
DSupplicantStaNetworkHalTest.java507 final byte[] kc = new byte[]{0x45, 0x45, 0x32, 0x34, 0x45, 0x10, 0x34, 0x12}; in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
510 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
512 + ":" + NativeUtil.hexStringFromByteArray(kc) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
520 assertArrayEquals(kc, params.get(0).kc); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
522 assertArrayEquals(kc, params.get(1).kc); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
555 assertArrayEquals(kc1, params.get(0).kc); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
557 assertArrayEquals(kc2, params.get(1).kc); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
559 assertArrayEquals(kc3, params.get(2).kc); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
599 final byte[] kc = new byte[]{0x45, 0x34, 0x12, 0x34, 0x45, 0x10, 0x34, 0x12}; in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
602 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
/frameworks/ml/nn/apex/
Dcom.android.neuralnetworks.pem8 kc/bt8YjJwlivA2RQKqso3YkZeYFgpmD4qJB/zcoiS8+bf9i+AZe0PjQnVnvFN6b
/frameworks/base/tests/LegacyRestoreTest/
Djbmr2-encrypted-settings-abcd.ab13 \x�[+�L u�nT(�‚�{�O+��kc����^9��#=[J��vb�k��Q@�> �%�0��#� 5�G3���;��'a���Gnd� �b=�� �S�~�^3�/…
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHal.java2629 byte[] kc = NativeUtil.hexStringToByteArray(match.group(1)); in sendNetworkEapSimGsmAuthResponse()
2630 if (kc == null || kc.length != param.kc.length) { in sendNetworkEapSimGsmAuthResponse()
2639 System.arraycopy(kc, 0, param.kc, 0, param.kc.length); in sendNetworkEapSimGsmAuthResponse()