Home
last modified time | relevance | path

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

/packages/modules/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()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapSimMethodStateMachine.java515 LOG.d(mTAG, "Kc=" + LOG.pii(randChallengeResult.kc)); in getRandChallengeResults()
541 byte[] kc = new byte[mKcLenBytes]; in getRandChallengeResultFromResponse()
542 buffer.get(kc); in getRandChallengeResultFromResponse()
544 return new RandChallengeResult(sres, kc); in getRandChallengeResultFromResponse()
550 public final byte[] kc; field in EapSimMethodStateMachine.ChallengeState.RandChallengeResult
552 RandChallengeResult(byte[] sres, byte[] kc) throws EapSimAkaInvalidLengthException { in RandChallengeResult() argument
554 this.kc = kc; in RandChallengeResult()
559 if (kc.length != mKcLenBytes) { in RandChallengeResult()
570 && Arrays.equals(kc, that.kc); in equals()
576 result = 31 * result + Arrays.hashCode(kc); in hashCode()
[all …]
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSupplicantStaNetworkHalAidlImplTest.java423 final byte[] kc = new byte[]{0x45, 0x45, 0x32, 0x34, 0x45, 0x10, 0x34, 0x12}; in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
427 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
429 + ":" + NativeUtil.hexStringFromByteArray(kc) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
440 assertArrayEquals(kc, captured[0].kc); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
442 assertArrayEquals(kc, captured[1].kc); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
474 assertArrayEquals(kc1, captured[0].kc); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
476 assertArrayEquals(kc2, captured[1].kc); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
478 assertArrayEquals(kc3, captured[2].kc); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
508 final byte[] kc = new byte[]{0x45, 0x34, 0x12, 0x34, 0x45, 0x10, 0x34, 0x12}; in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
512 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
DSupplicantStaNetworkHalHidlImplTest.java553 final byte[] kc = new byte[]{0x45, 0x45, 0x32, 0x34, 0x45, 0x10, 0x34, 0x12}; in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
556 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
558 + ":" + NativeUtil.hexStringFromByteArray(kc) in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
566 assertArrayEquals(kc, params.get(0).kc); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
568 assertArrayEquals(kc, params.get(1).kc); in testSendNetworkEapSimGsmAuthResponseWith2KcSresPair()
601 assertArrayEquals(kc1, params.get(0).kc); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
603 assertArrayEquals(kc2, params.get(1).kc); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
605 assertArrayEquals(kc3, params.get(2).kc); in testSendNetworkEapSimGsmAuthResponseWith3KcSresPair()
645 final byte[] kc = new byte[]{0x45, 0x34, 0x12, 0x34, 0x45, 0x10, 0x34, 0x12}; in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
648 String paramsStr = ":" + NativeUtil.hexStringFromByteArray(kc) in testSendInvalidKcSresPairNumNetworkEapSimGsmAuthResponse()
/packages/modules/NeuralNetworks/apex/
Dcom.android.neuralnetworks.pem8 kc/bt8YjJwlivA2RQKqso3YkZeYFgpmD4qJB/zcoiS8+bf9i+AZe0PjQnVnvFN6b
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSupplicantStaNetworkHalAidlImpl.java3078 param.kc = new byte[8]; in sendNetworkEapSimGsmAuthResponse()
3080 byte[] kc = NativeUtil.hexStringToByteArray(match.group(1)); in sendNetworkEapSimGsmAuthResponse()
3081 if (kc == null || kc.length != param.kc.length) { in sendNetworkEapSimGsmAuthResponse()
3090 System.arraycopy(kc, 0, param.kc, 0, param.kc.length); in sendNetworkEapSimGsmAuthResponse()
DWifiCarrierInfoManager.java1419 String kc = makeHex(result, 1 + kcOffset, kcLen); in getGsmAuthResponseWithLength() local
1420 sb.append(":" + kc + ":" + sres); in getGsmAuthResponseWithLength()
1421 Log.v(TAG, "kc:" + kc + " sres:" + sres); in getGsmAuthResponseWithLength()
1481 String kc = makeHex(result, START_KC_POS, KC_LEN); in getGsmSimpleSimNoLengthAuthResponse() local
1482 sb.append(":" + kc + ":" + sres); in getGsmSimpleSimNoLengthAuthResponse()
1483 Log.v(TAG, "kc:" + kc + " sres:" + sres); in getGsmSimpleSimNoLengthAuthResponse()
DSupplicantStaNetworkHalHidlImpl.java3242 param.kc = new byte[8]; in sendNetworkEapSimGsmAuthResponse()
3244 byte[] kc = NativeUtil.hexStringToByteArray(match.group(1)); in sendNetworkEapSimGsmAuthResponse()
3245 if (kc == null || kc.length != param.kc.length) { in sendNetworkEapSimGsmAuthResponse()
3254 System.arraycopy(kc, 0, param.kc, 0, param.kc.length); in sendNetworkEapSimGsmAuthResponse()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/
DEapSimChallengeStateTest.java232 assertArrayEquals(KC_1_BYTES, result.kc); in testGetRandChallengeResultFromResponse()
/packages/modules/Virtualization/guest/zipfuse/testdata/dir/
Dfile11209 xHrIcHZZM28uHKNbyWInKUumYwODP2L8FSiBOAOXsUR8SzPZm1hvek79CT/kc+SJvHJXYV9nN4i2
/packages/apps/DocumentsUI/tests/res/raw/
Dimages_tar454 …�ts�@����J3�b;P�$c���%OA��k� �x�i�$��Hp]�Ͻ�Wt�����`Pn��$T�!L�s�IA鷷z�C�0q!$��*���R�xd��kc
814 …]Ƌ��iz z}���ql{���Uxj���7�$��©,ˌ��ij�.�g<��8�~Q��M�6D�jS�EM���Z���&kc��=~���ֶ� �P��qߊ�:�…
1070 �#P�����}[T����%4��H���=��}�]�w�+=�ɬ[St��H�>������H��j���kc*����7u�7ӵ��I�W�8�{~�7��m��m��Q…
1341 ��O�� ������5�� ��2�qn�<=s2iW�$d���;�E�����|���/M��]C$��8j��u���kc�H�dd##�QZ�:��d�w��…
1863 %a�J�����J����N�<=i5��Nm"`k�z�����D;�x�t����˝'�z�wP�R�709�q�X������@�O�o�kc�7���X��"&�o…
4980 …OAڀ��,��r�4�@��o_���>��y�y�����PH�;ʌ�������'��yx��A�h1����kc�4ٍU"^ ���o�q�ϵJ�…
6131 …kh�����c#�{�\�|U�}:�M�H�v*����(�@Q�NO��ĺ���~|��,�ZVs�c����l�|%�εkc���5�{����{u�+�<y;�…
7420 …���A�P:R���Bh�7�X��i��&G����;�}�W$|�J�pO'��;�q��R>{u��! � �Z�k�kc�cH�<�C{`R���:g�Ҍ�>…
7730 �y��=�267GC�8������kc����7�����r(� P���sɤ��F����4�໰1ښ��df���q�0i�e�'�О�ȃl���9s�*��I�Jv…
9029 …�����"0ʹ�r������2��6�G#r2��I$�QT �檊�qd�'��)Km)$,��Oj`� ��62��:��ҫ�-�kc �A��8���̛�vb����"\K…
[all …]
/packages/inputmethods/LatinIME/dictionaries/
Dtr_wordlist.combined.gz1dictionary=main:tr,locale=tr,description=Türkçe,date=1414726261, ...