Home
last modified time | relevance | path

Searched refs:hexCharToInt (Results 1 – 2 of 2) sorted by relevance

/frameworks/libs/gsma_services/ts43authentication/src/com/android/libraries/ts43authentication/
DTs43AuthenticationLibrary.java462 (byte) ((hexCharToInt(hex.charAt(i)) << 4) | hexCharToInt(hex.charAt(i + 1))); in hexStringToBytes()
467 private int hexCharToInt(char hex) { in hexCharToInt() method in Ts43AuthenticationLibrary
/frameworks/base/telephony/java/com/android/internal/telephony/uicc/
DIccUtils.java433 hexCharToInt(char c) { in hexCharToInt() method in IccUtils
463 ret[i/2] = (byte) ((hexCharToInt(s.charAt(i)) << 4) in hexStringToBytes()
464 | hexCharToInt(s.charAt(i+1))); in hexStringToBytes()