HomeSort by relevance Sort by last modified time
    Searched defs:IccUtils (Results 1 - 4 of 4) sorted by null

  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmAlphabetTest.java 239 unpacked = IccUtils.hexStringToBytes("566F696365204D61696C");
243 assertEquals(IccUtils.bytesToHexString(unpacked),
244 IccUtils.bytesToHexString(
347 unpacked = IccUtils.hexStringToBytes("61626320646566FF");
352 unpacked = IccUtils.hexStringToBytes("C5D7BDBAC6AEFF");
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccUtils.java 33 public class IccUtils {
34 static final String LOG_TAG="IccUtils";
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 35 import com.android.internal.telephony.IccUtils;
143 fillIn.putExtra("pdu", IccUtils.hexStringToBytes(pduString));
189 String smsc = IccUtils.bytesToHexString(
193 IccUtils.bytesToHexString(sms.getPdu()),
293 mCm.sendSMS(IccUtils.bytesToHexString(smsc), IccUtils.bytesToHexString(pdu), reply);
SmsMessage.java 25 import com.android.internal.telephony.IccUtils;
131 msg.parsePdu(IccUtils.hexStringToBytes(lines[1]));
143 msg.parsePdu(IccUtils.hexStringToBytes(line));
574 int year = IccUtils.gsmBcdByteToInt(pdu[cur++]);
575 int month = IccUtils.gsmBcdByteToInt(pdu[cur++]);
576 int day = IccUtils.gsmBcdByteToInt(pdu[cur++]);
577 int hour = IccUtils.gsmBcdByteToInt(pdu[cur++]);
578 int minute = IccUtils.gsmBcdByteToInt(pdu[cur++]);
579 int second = IccUtils.gsmBcdByteToInt(pdu[cur++]);
589 int timezoneOffset = IccUtils.gsmBcdByteToInt((byte) (tzByte & (~0x08)))
    [all...]

Completed in 76 milliseconds