Home
last modified time | relevance | path

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

/aosp14/frameworks/base/telephony/java/android/telephony/
H A DSmsCbEtwsInfo.java184 int year = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[0]); in getPrimaryNotificationTimestamp()
185 int month = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[1]); in getPrimaryNotificationTimestamp()
186 int day = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[2]); in getPrimaryNotificationTimestamp()
187 int hour = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[3]); in getPrimaryNotificationTimestamp()
188 int minute = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[4]); in getPrimaryNotificationTimestamp()
189 int second = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[5]); in getPrimaryNotificationTimestamp()
199 int timezoneOffset = IccUtils.gsmBcdByteToInt((byte) (tzByte & (~0x08))); in getPrimaryNotificationTimestamp()
/aosp14/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSmsMessage.java930 int year = IccUtils.gsmBcdByteToInt(mPdu[mCur++]); in getSCTimestampMillis()
931 int month = IccUtils.gsmBcdByteToInt(mPdu[mCur++]); in getSCTimestampMillis()
932 int day = IccUtils.gsmBcdByteToInt(mPdu[mCur++]); in getSCTimestampMillis()
933 int hour = IccUtils.gsmBcdByteToInt(mPdu[mCur++]); in getSCTimestampMillis()
934 int minute = IccUtils.gsmBcdByteToInt(mPdu[mCur++]); in getSCTimestampMillis()
935 int second = IccUtils.gsmBcdByteToInt(mPdu[mCur++]); in getSCTimestampMillis()
945 int timezoneOffset = IccUtils.gsmBcdByteToInt((byte) (tzByte & (~0x08))); in getSCTimestampMillis()
/aosp14/frameworks/base/telephony/java/com/android/internal/telephony/uicc/
H A DIccUtils.java231 gsmBcdByteToInt(byte b) { in gsmBcdByteToInt() method in IccUtils