Home
last modified time | relevance | path

Searched refs:envelope (Results 1 – 20 of 20) sorted by relevance

/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimDataDownloadHandler.java140 byte[] envelope = new byte[totalLength]; in handleDataDownload()
144 envelope[index++] = (byte) BER_SMS_PP_DOWNLOAD_TAG; in handleDataDownload()
148 envelope[index++] = (byte) bodyLength; in handleDataDownload()
152 envelope[index++] = (byte) 2; in handleDataDownload()
153 envelope[index++] = (byte) DEV_ID_NETWORK; in handleDataDownload()
154 envelope[index++] = (byte) DEV_ID_UICC; in handleDataDownload()
159 envelope[index++] = (byte) scAddressLength; in handleDataDownload()
169 envelope[index++] = (byte) tpduLength; in handleDataDownload()
170 System.arraycopy(pdu, tpduIndex, envelope, index, tpduLength); in handleDataDownload()
174 if (index != envelope.length) { in handleDataDownload()
[all …]
/aosp12/frameworks/base/cmds/incidentd/src/
H A DWorkDirectory.cpp199 void log_envelope(const ReportFileProto& envelope) { in log_envelope() argument
201 for (int i=0; i<envelope.report_size(); i++) { in log_envelope()
216 ALOGD(" completed=%d", envelope.completed()); in log_envelope()
226 string envelope; member
233 :envelope(), in WorkDirectoryEntry()
239 :envelope(that.envelope), in WorkDirectoryEntry()
583 it->second.envelope, it->second.data); in getReports()
614 const size_t reportCount = envelope.report_size(); in getReport()
772 entry.envelope = filename; in get_directory_contents_locked()
792 if (it->second.envelope.length() == 0) { in get_directory_contents_locked()
[all …]
H A DBroadcaster.cpp181 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()
H A DIncidentService.cpp424 const ReportFileProto& envelope = file->getEnvelope(); in getIncidentReportList() local
425 size_t reportCount = envelope.report_size(); in getIncidentReportList()
427 const ReportFileProto_Report& report = envelope.report(reportIndex); in getIncidentReportList()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/soap/
H A DUpdateResponseMessage.java42 SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER12); in serializeToSoapEnvelope() local
43 envelope.implicitTypes = true; // Do not include type in element attribute in serializeToSoapEnvelope()
44 envelope.setAddAdornments(false); // Do not generate/include IDs for each element in serializeToSoapEnvelope()
65 envelope.setOutputSoapObject(requestObject); in serializeToSoapEnvelope()
66 return envelope; in serializeToSoapEnvelope()
H A DPostDevDataMessage.java54 SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER12); in serializeToSoapEnvelope() local
55 envelope.implicitTypes = true; // Do not include type in element attribute in serializeToSoapEnvelope()
56 envelope.setAddAdornments(false); // Do not generate/include IDs for each element in serializeToSoapEnvelope()
78 envelope.setOutputSoapObject(requestObject); in serializeToSoapEnvelope()
79 return envelope; in serializeToSoapEnvelope()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaInboundSmsHandler.java467 SmsEnvelope envelope = new SmsEnvelope(); in handleTestAction() local
472 envelope.origAddress = nonNullAddress; in handleTestAction()
476 if (envelope.serviceCategory == -1) { in handleTestAction()
483 envelope.bearerData = decodeHexString(bearerDataString); in handleTestAction()
484 if (envelope.bearerData == null) { in handleTestAction()
489 SmsMessage sms = new SmsMessage(new CdmaSmsAddress(), envelope); in handleTestAction()
511 SmsEnvelope envelope = new SmsEnvelope(); in handleTestAction() local
516 envelope.origAddress = nonNullAddress; in handleTestAction()
520 envelope.bearerData = decodeHexString(bearerDataString); in handleTestAction()
521 if (envelope.bearerData == null) { in handleTestAction()
[all …]
/aosp12/bionic/libc/kernel/uapi/linux/
H A Dinput.h152 struct ff_envelope envelope; member
157 struct ff_envelope envelope; member
173 struct ff_envelope envelope; member
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/
H A DOsuServerConnectionTest.java402 SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER12); in verifyExchangeSoapMessage() local
403 envelope.bodyIn = new SoapObject(); in verifyExchangeSoapMessage()
408 assertTrue(mOsuServerConnection.exchangeSoapMessage(envelope)); in verifyExchangeSoapMessage()
544 SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER12); in verifyCleanup() local
545 envelope.bodyIn = new SoapObject(); in verifyCleanup()
550 assertTrue(mOsuServerConnection.exchangeSoapMessage(envelope)); in verifyCleanup()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java.broken33 * Dummy BaseCommands for UsimDataDownloadTest. Only implements UICC envelope and
44 private boolean mExpectingSendEnvelope; // true to expect a send envelope command
45 private String mExpectingSendEnvelopeContents; // expected string for send envelope
80 * @param contents expected envelope contents to send
83 * @param response simulated envelope response to return
103 Assert.assertFalse("expecting send envelope call", mExpectingSendEnvelope);
146 Assert.assertTrue("unexpected call to send envelope", mExpectingSendEnvelope);
/aosp12/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DSmsMessage.java992 SmsEnvelope envelope = new SmsEnvelope();
993 envelope.messageType = SmsEnvelope.MESSAGE_TYPE_POINT_TO_POINT;
994 envelope.teleService = teleservice;
995 envelope.destAddress = destAddr;
996 envelope.bearerReply = RETURN_ACK;
997 envelope.bearerData = encodedBearerData;
1011 dos.writeInt(envelope.teleService);
/aosp12/packages/services/BuiltInPrintService/jni/plugins/genPCLm/inc/
H A Dcommon_defines.h106 envelope, enumerator
/aosp12/hardware/interfaces/radio/1.0/
H A DIRadio.hal789 * Requests to send a SAT/USAT envelope command to SIM.
790 * The SAT/USAT envelope command refers to 3GPP TS 11.14 and 3GPP TS 31.111
1182 * Requests to send a SAT/USAT envelope command to SIM.
1183 * The SAT/USAT envelope command refers to 3GPP TS 11.14 and 3GPP TS 31.111.
/aosp12/packages/services/BuiltInPrintService/jni/plugins/genPCLm/src/
H A DgenPCLm.cpp1047 case envelope: in getInputBinString()
/aosp12/packages/inputmethods/LatinIME/dictionaries/
H A Den_emoji.combined.gz ... 89 shortcut=⚫,f=14 90 word=envelope,f=120,not_a_word=true 91 shortcut ...
H A Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
H A Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
H A Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
H A Dpt_BR_wordlist.combined.gz1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ...
H A Dpt_PT_wordlist.combined.gz1dictionary=main:pt_pt,locale=pt_PT,description=Português (Portugal),date ...