Searched refs:cdmaBcdByteToInt (Results 1 – 3 of 3) sorted by relevance
64 assertEquals(89, IccUtils.cdmaBcdByteToInt((byte) 0x89)); in testBasic()67 assertEquals(80, IccUtils.cdmaBcdByteToInt((byte) 0x8c)); in testBasic()
271 int year = IccUtils.cdmaBcdByteToInt(data[0]); in fromByteArray()274 int month = IccUtils.cdmaBcdByteToInt(data[1]); in fromByteArray()277 int day = IccUtils.cdmaBcdByteToInt(data[2]); in fromByteArray()280 int hour = IccUtils.cdmaBcdByteToInt(data[3]); in fromByteArray()283 int minute = IccUtils.cdmaBcdByteToInt(data[4]); in fromByteArray()286 int second = IccUtils.cdmaBcdByteToInt(data[5]); in fromByteArray()1490 bData.numberOfMessages = IccUtils.cdmaBcdByteToInt((byte)inStream.read(8)); in decodeMsgCount()
249 cdmaBcdByteToInt(byte b) { in cdmaBcdByteToInt() method in IccUtils