Searched refs:envelope (Results 1 – 7 of 7) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
D | UsimDataDownloadHandler.java | 151 byte[] envelope = new byte[totalLength]; in handleDataDownload() 156 envelope[index++] = (byte) BER_SMS_PP_DOWNLOAD_TAG; in handleDataDownload() 158 envelope[index++] = (byte) 0x81; // length 128-255 encoded as 0x81 + length in handleDataDownload() 160 envelope[index++] = (byte) bodyLength; in handleDataDownload() 163 envelope[index++] = (byte) (0x80 | ComprehensionTlvTag.DEVICE_IDENTITIES.value()); in handleDataDownload() 164 envelope[index++] = (byte) 2; in handleDataDownload() 165 envelope[index++] = (byte) DEV_ID_NETWORK; in handleDataDownload() 166 envelope[index++] = (byte) DEV_ID_UICC; in handleDataDownload() 170 envelope[index++] = (byte) ComprehensionTlvTag.ADDRESS.value(); in handleDataDownload() 171 envelope[index++] = (byte) scAddressLength; in handleDataDownload() [all …]
|
/frameworks/base/cmds/incidentd/src/ |
D | WorkDirectory.cpp | 199 void log_envelope(const ReportFileProto& envelope) { in log_envelope() argument 201 for (int i=0; i<envelope.report_size(); i++) { in log_envelope() 203 ALOGD(" pkg=%s", envelope.report(i).pkg().c_str()); in log_envelope() 204 ALOGD(" cls=%s", envelope.report(i).cls().c_str()); in log_envelope() 205 ALOGD(" share_approved=%d", envelope.report(i).share_approved()); in log_envelope() 206 ALOGD(" privacy_policy=%d", envelope.report(i).privacy_policy()); in log_envelope() 207 ALOGD(" all_sections=%d", envelope.report(i).all_sections()); in log_envelope() 208 for (int j=0; j<envelope.report(i).section_size(); j++) { in log_envelope() 209 ALOGD(" section[%d]=%d", j, envelope.report(i).section(j)); in log_envelope() 213 ALOGD(" data_file=%s", envelope.data_file().c_str()); in log_envelope() [all …]
|
D | Broadcaster.cpp | 181 const ReportFileProto& envelope = file->getEnvelope(); in sendBroadcasts() local 183 if (!envelope.completed()) { in sendBroadcasts() 196 size_t reportCount = envelope.report_size(); in sendBroadcasts() 200 const ReportFileProto_Report& report = envelope.report(reportIndex); in sendBroadcasts()
|
D | IncidentService.cpp | 426 const ReportFileProto& envelope = file->getEnvelope(); in getIncidentReportList() local 427 size_t reportCount = envelope.report_size(); in getIncidentReportList() 429 const ReportFileProto_Report& report = envelope.report(reportIndex); in getIncidentReportList()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
D | CdmaInboundSmsHandler.java | 472 SmsEnvelope envelope = new SmsEnvelope(); in handleTestAction() local 477 envelope.origAddress = nonNullAddress; in handleTestAction() 480 envelope.serviceCategory = intent.getIntExtra("service_category", -1); in handleTestAction() 481 if (envelope.serviceCategory == -1) { in handleTestAction() 488 envelope.bearerData = decodeHexString(bearerDataString); in handleTestAction() 489 if (envelope.bearerData == null) { in handleTestAction() 494 SmsMessage sms = new SmsMessage(new CdmaSmsAddress(), envelope); in handleTestAction() 516 SmsEnvelope envelope = new SmsEnvelope(); in handleTestAction() local 521 envelope.origAddress = nonNullAddress; in handleTestAction() 525 envelope.bearerData = decodeHexString(bearerDataString); in handleTestAction() [all …]
|
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
D | SmsMessage.java | 996 SmsEnvelope envelope = new SmsEnvelope(); 997 envelope.messageType = SmsEnvelope.MESSAGE_TYPE_POINT_TO_POINT; 998 envelope.teleService = teleservice; 999 envelope.destAddress = destAddr; 1000 envelope.bearerReply = RETURN_ACK; 1001 envelope.bearerData = encodedBearerData; 1015 dos.writeInt(envelope.teleService);
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | UsimDataDownloadHandlerTest.java | 372 private byte[] createSmsAckPdu(boolean success, String envelope, SmsMessage smsMessage) { in createSmsAckPdu() argument 373 byte[] responseBytes = IccUtils.hexStringToBytes(envelope); in createSmsAckPdu()
|