Home
last modified time | relevance | path

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

/aosp12/packages/modules/CellBroadcastService/tests/src/com/android/cellbroadcastservice/tests/
H A DCellBroadcastServiceTestBase.java233 ret[i / 2] = (byte) ((hexCharToInt(s.charAt(i)) << 4) | hexCharToInt(s.charAt(i + 1))); in hexStringToBytes()
251 private static int hexCharToInt(char c) { in hexCharToInt() method in CellBroadcastServiceTestBase
/aosp12/frameworks/base/telephony/java/com/android/internal/telephony/uicc/
H A DIccUtils.java428 hexCharToInt(char c) { in hexCharToInt() method in IccUtils
458 ret[i/2] = (byte) ((hexCharToInt(s.charAt(i)) << 4) in hexStringToBytes()
459 | hexCharToInt(s.charAt(i+1))); in hexStringToBytes()
/aosp12/hardware/ril/libril/
H A Dril_service.cpp6793 uint8_t hexCharToInt(uint8_t c) { in hexCharToInt() function
6814 uint8_t hexChar1 = hexCharToInt(hexString[i]); in convertHexStringToBytes()
6815 uint8_t hexChar2 = hexCharToInt(hexString[i + 1]); in convertHexStringToBytes()