OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IccUtils
(Results
1 - 5
of
5
) sorted by null
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmAlphabetTest.java
20
import com.android.internal.telephony.uicc.
IccUtils
;
240
unpacked =
IccUtils
.hexStringToBytes("566F696365204D61696C");
244
assertEquals(
IccUtils
.bytesToHexString(unpacked),
245
IccUtils
.bytesToHexString(
348
unpacked =
IccUtils
.hexStringToBytes("61626320646566FF");
353
unpacked =
IccUtils
.hexStringToBytes("C5D7BDBAC6AEFF");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccUtils.java
31
public class
IccUtils
{
32
static final String LOG_TAG="
IccUtils
";
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccUtils.java
31
public class
IccUtils
{
32
static final String LOG_TAG="
IccUtils
";
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java
40
import com.android.internal.telephony.uicc.
IccUtils
;
137
fillIn.putExtra("pdu",
IccUtils
.hexStringToBytes(pduString));
254
mCi.sendSMS(
IccUtils
.bytesToHexString(smsc),
255
IccUtils
.bytesToHexString(pdu), reply);
257
mCi.sendImsGsmSms(
IccUtils
.bytesToHexString(smsc),
258
IccUtils
.bytesToHexString(pdu), tracker.mImsRetry,
SmsMessage.java
26
import com.android.internal.telephony.uicc.
IccUtils
;
127
msg.parsePdu(
IccUtils
.hexStringToBytes(lines[1]));
139
msg.parsePdu(
IccUtils
.hexStringToBytes(line));
577
int year =
IccUtils
.gsmBcdByteToInt(mPdu[mCur++]);
578
int month =
IccUtils
.gsmBcdByteToInt(mPdu[mCur++]);
579
int day =
IccUtils
.gsmBcdByteToInt(mPdu[mCur++]);
580
int hour =
IccUtils
.gsmBcdByteToInt(mPdu[mCur++]);
581
int minute =
IccUtils
.gsmBcdByteToInt(mPdu[mCur++]);
582
int second =
IccUtils
.gsmBcdByteToInt(mPdu[mCur++]);
592
int timezoneOffset =
IccUtils
.gsmBcdByteToInt((byte) (tzByte & (~0x08)))
[
all
...]
Completed in 55 milliseconds