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()
240 int year = IccUtils.cdmaBcdByteToInt(data[0]); in fromByteArray()243 int month = IccUtils.cdmaBcdByteToInt(data[1]); in fromByteArray()246 int day = IccUtils.cdmaBcdByteToInt(data[2]); in fromByteArray()249 int hour = IccUtils.cdmaBcdByteToInt(data[3]); in fromByteArray()252 int minute = IccUtils.cdmaBcdByteToInt(data[4]); in fromByteArray()255 int second = IccUtils.cdmaBcdByteToInt(data[5]); in fromByteArray()1349 bData.numberOfMessages = IccUtils.cdmaBcdByteToInt((byte)inStream.read(8)); in decodeMsgCount()
167 cdmaBcdByteToInt(byte b) { in cdmaBcdByteToInt() method in IccUtils