Home
last modified time | relevance | path

Searched refs:bytesToHexString (Results 1 – 25 of 34) sorted by relevance

12

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DGsmSMSDispatcher.java192 mCi.sendSMSExpectMore(IccUtils.bytesToHexString(smsc), in sendSms()
193 IccUtils.bytesToHexString(pdu), reply); in sendSms()
195 mCi.sendSMS(IccUtils.bytesToHexString(smsc), in sendSms()
196 IccUtils.bytesToHexString(pdu), reply); in sendSms()
199 mCi.sendImsGsmSms(IccUtils.bytesToHexString(smsc), in sendSms()
200 IccUtils.bytesToHexString(pdu), tracker.mImsRetry, in sendSms()
DUsimDataDownloadHandler.java89 String smsc = IccUtils.bytesToHexString( in handleUsimDataDownload()
93 IccUtils.bytesToHexString(smsMessage.getPdu()), in handleUsimDataDownload()
173 String encodedEnvelope = IccUtils.bytesToHexString(envelope); in handleDataDownload()
264 IccUtils.bytesToHexString(smsAckPdu), null); in sendSmsAckForEnvelopeResponse()
DUsimPhoneBookManager.java592 log("PBR rec: " + IccUtils.bytesToHexString(record)); in PbrRecord()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/apdu/
DApduSenderTest.java108 assertEquals("A1A1A19000", IccUtils.bytesToHexString(mSelectResponse)); in testSendEmptyCommands()
140 assertEquals("A1A1A1", IccUtils.bytesToHexString(mResponseCaptor.response)); in testSend()
160 assertEquals("A4", IccUtils.bytesToHexString(mResponseCaptor.response)); in testSendMultiApdus()
187 assertEquals("A3", IccUtils.bytesToHexString(mResponseCaptor.response)); in testSendMultiApdusStopEarly()
207 assertEquals("A1A1A1B2B2B2B2C3C3", IccUtils.bytesToHexString(mResponseCaptor.response)); in testSendLongResponse()
235 assertEquals("C3", IccUtils.bytesToHexString(mResponseCaptor.response)); in testSendStoreDataLongDataLongResponse()
263 assertEquals("B2222B", IccUtils.bytesToHexString(mResponseCaptor.response)); in testSendStoreDataLongDataMod0()
281 assertEquals("B2222B", IccUtils.bytesToHexString(mResponseCaptor.response)); in testSendStoreDataLen0()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DSIMRecords.java531 + " mEfCfis=" + IccUtils.bytesToHexString(mEfCfis)); in setVoiceCallForwardingFlag()
552 + " invalid mEfCfis=" + IccUtils.bytesToHexString(mEfCfis)); in setVoiceCallForwardingFlag()
656 log("EF_MBI: " + IccUtils.bytesToHexString(data)); in handleMessage()
780 if (DBG) log("EF_MWIS : " + IccUtils.bytesToHexString(data)); in handleMessage()
801 if (DBG) log("EF_CPHS_MWI: " + IccUtils.bytesToHexString(data)); in handleMessage()
842 log("EF_AD: " + IccUtils.bytesToHexString(data)); in handleMessage()
881 log("EF_CFF_CPHS: " + IccUtils.bytesToHexString(data)); in handleMessage()
995 if (DBG) log("iCPHS: " + IccUtils.bytesToHexString(mCphsInfo)); in handleMessage()
1084 log("EF_CFIS: " + IccUtils.bytesToHexString(data)); in handleMessage()
1102 log("EF_CSP: " + IccUtils.bytesToHexString(data)); in handleMessage()
[all …]
DRuimRecords.java246 if (DBG) log("EF_PL=" + IccUtils.bytesToHexString(mEFpl)); in onRecordLoaded()
274 if (DBG) log("EF_LI=" + IccUtils.bytesToHexString(mEFli)); in onRecordLoaded()
289 IccUtils.bytesToHexString(data)); in onRecordLoaded()
377 if (DBG) log("CSIM_MDN=" + IccUtils.bytesToHexString(data)); in onRecordLoaded()
394 if (VDBG) log("CSIM_IMSIM=" + IccUtils.bytesToHexString(data)); in onRecordLoaded()
472 if (DBG) log("CSIM_EPRL=" + IccUtils.bytesToHexString(data)); in onGetCSimEprlDone()
DAdnRecordLoader.java211 + "\n" + IccUtils.bytesToHexString(data)); in handleMessage()
239 + "\n" + IccUtils.bytesToHexString(data)); in handleMessage()
DIccFileHandler.java408 IccUtils.bytesToHexString(data), pin2, mAid, onComplete); in updateEFLinearFixed()
425 IccUtils.bytesToHexString(data), pin2, mAid, onComplete); in updateEFLinearFixed()
437 IccUtils.bytesToHexString(data), null, mAid, onComplete); in updateEFTransparent()
573 + IccUtils.bytesToHexString(data)); in handleMessage()
DIccIoResult.java205 + (TelephonyUtils.IS_DEBUGGABLE ? IccUtils.bytesToHexString(payload) : "*******") in toString()
DIsimUiccRecords.java210 mIsimIst = IccUtils.bytesToHexString(data); in onRecordLoaded()
247 Rlog.d(LOG_TAG, "[ISIM] can't find TLV. record = " + IccUtils.bytesToHexString(record)); in isimTlvToString()
DUiccCarrierPrivilegeRules.java443 statusCode = Integer.parseInt(IccUtils.bytesToHexString(bytes), 16); in shouldRetry()
512 mRules += IccUtils.bytesToHexString(response.payload) in handleMessage()
DUiccPkcs15.java117 String result = IccUtils.bytesToHexString(response.payload) in handleMessage()
/frameworks/av/media/libmedia/
DMediaResource.cpp61 static String8 bytesToHexString(const std::vector<uint8_t> &bytes) { in bytesToHexString() function
73 bytesToHexString(mId).c_str(), in toString()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/asn1/
DIccUtilsTest.java199 assertEquals("", IccUtils.bytesToHexString(new byte[] {})); in testBytesToHexString()
200 assertEquals("00", IccUtils.bytesToHexString(new byte[] {0})); in testBytesToHexString()
203 IccUtils.bytesToHexString(new byte[] {-1, 0x12, -2, 0x34, -3, 0x56, -4, 0x78})); in testBytesToHexString()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DOemHookIndication.java46 com.android.internal.telephony.uicc.IccUtils.bytesToHexString(response)); in oemHookRaw()
DCarrierPrivilegesTracker.java390 certs.add(IccUtils.bytesToHexString(sha1).toUpperCase()); in updateCertsForPackage()
393 certs.add(IccUtils.bytesToHexString(sha256).toUpperCase()); in updateCertsForPackage()
DImsSmsDispatcher.java387 smsc != null ? IccUtils.bytesToHexString(smsc) : null, in sendSms()
/frameworks/base/telephony/java/com/android/internal/telephony/uicc/asn1/
DAsn1Node.java556 return IccUtils.bytesToHexString(toBytes()); in toHex()
561 String headHex = IccUtils.bytesToHexString(IccUtils.unsignedIntToBytes(mTag)); in getHeadAsHex()
567 headHex += IccUtils.bytesToHexString(lenBytes); in getHeadAsHex()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/euicc/
DEuiccCardTest.java513 assertEquals("BF2003010203", IccUtils.bytesToHexString(resultCaptor.result)); in testGetEuiccInfo1()
525 assertEquals("BF2203010203", IccUtils.bytesToHexString(resultCaptor.result)); in testGetEuiccInfo2()
546 assertEquals("BF3802A000", IccUtils.bytesToHexString(resultCaptor.result)); in testAuthenticateServer()
603 assertEquals("BF3802A000", IccUtils.bytesToHexString(resultCaptor.result)); in testAuthenticateService_devCap()
625 assertEquals("BF2102A000", IccUtils.bytesToHexString(resultCaptor.result)); in testPrepareDownload()
687 assertEquals("BF3700", IccUtils.bytesToHexString(resultCaptor.result)); in testLoadBoundProfilePackage()
901 assertEquals("BF4100", IccUtils.bytesToHexString(resultCaptor.result)); in testCancelSession()
/frameworks/base/telephony/java/android/telephony/
DUiccAccessRule.java168 return IccUtils.bytesToHexString(mCertificateHash); in getCertificateHexString()
249 return "cert: " + IccUtils.bytesToHexString(mCertificateHash) + " pkg: " + in toString()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGsmAlphabetTest.java244 assertEquals(IccUtils.bytesToHexString(unpacked), in testBasic()
245 IccUtils.bytesToHexString( in testBasic()
/frameworks/base/telephony/java/android/service/carrier/
DCarrierIdentifier.java105 String hex = IccUtils.bytesToHexString(mccMnc); in CarrierIdentifier()
/frameworks/base/telephony/java/com/android/internal/telephony/uicc/
DIccUtils.java139 String ret = bytesToHexString(trans); in bcdPlmnToString()
437 bytesToHexString(byte[] bytes) { in bytesToHexString() method in IccUtils
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/
DEuiccCard.java406 String eid = IccUtils.bytesToHexString(parseResponse(response) in getEid()
1251 "Cannot parse response: " + IccUtils.bytesToHexString(response), e)); in sendApdu()
1328 gid1 = IccUtils.bytesToHexString(node.getChild(Tags.TAG_CTX_1).asBytes()); in buildCarrierIdentifier()
1332 gid2 = IccUtils.bytesToHexString(node.getChild(Tags.TAG_CTX_2).asBytes()); in buildCarrierIdentifier()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
DCatService.java628 String hexString = IccUtils.bytesToHexString(rawData); in sendTerminalResponse()
726 String hexString = IccUtils.bytesToHexString(rawData); in sendMenuSelection()
798 String hexString = IccUtils.bytesToHexString(rawData); in eventDownload()

12