Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/com/android/internal/telephony/uicc/
DIccUtils.java125 bytes[j] = (byte) (charToByte(bcd.charAt(i + 1)) << 4 | charToByte(bcd.charAt(i))); in bcdToBytes()
160 data[offset] = (byte) (charToByte(plmn.charAt(1)) << 4 | charToByte(plmn.charAt(0))); in stringToBcdPlmn()
161 data[offset + 1] = (byte) (charToByte(digit6) << 4 | charToByte(plmn.charAt(2))); in stringToBcdPlmn()
162 data[offset + 2] = (byte) (charToByte(plmn.charAt(4)) << 4 | charToByte(plmn.charAt(3))); in stringToBcdPlmn()
933 private static byte charToByte(char c) { in charToByte() method in IccUtils