Searched defs:contentLocation (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Messaging/src/android/support/v7/mms/pdu/
H A DPduBody.java52 byte[] contentLocation = part.getContentLocation();
53 if(null != contentLocation) {
54 String clc = new String(contentLocation);
165 * @param contentLocation the content location.
168 public PduPart getPartByContentLocation(String contentLocation) { argument
169 return mPartMapByContentLocation.get(contentLocation);
H A DPduPart.java252 * @param contentLocation the value
255 public void setContentLocation(byte[] contentLocation) { argument
256 if(contentLocation == null) {
260 mPartHeader.put(P_CONTENT_LOCATION, contentLocation);
/packages/apps/Messaging/src/com/android/messaging/sms/
H A DMmsSender.java84 * @param contentLocation The url of the MMS message
90 final byte[] transactionId, final String contentLocation, final int status)
95 final Uri messageUri = Uri.parse(contentLocation);
100 MmsConfig.get(subId).getNotifyWapMMSC() ? contentLocation : null,
112 * @param contentLocation The url of the MMS message
117 final byte[] transactionId, final String contentLocation)
124 final Uri messageUri = Uri.parse(contentLocation);
129 MmsConfig.get(subId).getNotifyWapMMSC() ? contentLocation : null,
243 * @param contentLocation The url of the MMS message
248 final String contentLocation, Bundl
89 sendNotifyResponseForMmsDownload(final Context context, final int subId, final byte[] transactionId, final String contentLocation, final int status) argument
116 sendAcknowledgeForMmsDownload(final Context context, final int subId, final byte[] transactionId, final String contentLocation) argument
247 downloadMms(final Context context, final int subId, final String contentLocation, Bundle extras) argument
[all...]
H A DMmsUtils.java955 final long receivedTimestampInSeconds, final String contentLocation) {
971 values.put(Mms.CONTENT_LOCATION, contentLocation);
1844 final String contentLocation, final boolean autoDownload,
1846 if (TextUtils.isEmpty(contentLocation)) {
1864 .isMediaScratchSpaceUri(Uri.parse(contentLocation))) {
1866 LogUtil.d(TAG, "MmsUtils: Reading MMS from dump file: " + contentLocation);
1868 final String fileName = Uri.parse(contentLocation).getPathSegments().get(1);
1892 extras.putString(DownloadMmsAction.EXTRA_CONTENT_LOCATION, contentLocation);
1897 MmsSender.downloadMms(context, subId, contentLocation, extras);
1901 subPhoneNumber, transactionId, contentLocation, autoDownloa
953 insertReceivedMmsMessage(final Context context, final RetrieveConf retrieveConf, final int subId, final String subPhoneNumber, final long receivedTimestampInSeconds, final String contentLocation) argument
1842 downloadMmsMessage(final Context context, final Uri notificationUri, final int subId, final String subPhoneNumber, final String transactionId, final String contentLocation, final boolean autoDownload, final long receivedTimestampInSeconds, Bundle extras) argument
1913 insertDownloadedMessageAndSendResponse(final Context context, final Uri notificationUri, final int subId, final String subPhoneNumber, final String transactionId, final String contentLocation, final boolean autoDownload, final long receivedTimestampInSeconds, final RetrieveConf retrieveConf) argument
1966 sendNotifyResponseForMmsDownload(final Context context, final int subId, final byte[] transactionId, final String contentLocation, final int status) argument
1997 sendAcknowledgeForMmsDownload(final Context context, final int subId, final byte[] transactionId, final String contentLocation) argument
[all...]
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DProcessDownloadedMmsAction.java139 final String contentLocation, final int subId, final String subPhoneNumber,
155 params.putString(KEY_CONTENT_LOCATION, contentLocation);
186 final String contentLocation, final int subId) {
191 params.putString(KEY_CONTENT_LOCATION, contentLocation);
214 final String contentLocation = actionParameters.getString(KEY_CONTENT_LOCATION);
228 contentLocation,
290 contentLocation, autoDownload, receivedTimestampInSeconds,
345 final String contentLocation = actionParameters.getString(KEY_CONTENT_LOCATION);
346 sendDeferredRespStatus(messageId, transactionId, contentLocation, subId);
137 processMessageDownloadFastFailed(final String messageId, final Uri notificationUri, final String conversationId, final String participantId, final String contentLocation, final int subId, final String subPhoneNumber, final int statusIfFailed, final boolean autoDownload, final String transactionId, final int resultCode) argument
185 sendDeferredRespStatus(final String messageId, final String transactionId, final String contentLocation, final int subId) argument
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DHelpers.java82 String contentDisposition, String contentLocation, String mimeType, int destination)
100 name = chooseFilename(url, hint, contentDisposition, contentLocation);
151 String contentLocation) {
182 if (filename == null && contentLocation != null) {
183 String decodedContentLocation = Uri.decode(contentLocation);
81 generateSaveFile(Context context, String url, String hint, String contentDisposition, String contentLocation, String mimeType, int destination) argument
150 chooseFilename(String url, String hint, String contentDisposition, String contentLocation) argument
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
H A DPduPart.java227 * @param contentLocation the value
230 public void setContentLocation(final byte[] contentLocation) { argument
231 if (contentLocation == null) {
235 mPartHeader.put(P_CONTENT_LOCATION, contentLocation);
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
H A DMessageData.java336 final int bugleStatus, final String contentLocation, final String transactionId,
346 message.mMmsContentLocation = contentLocation;
334 createMmsMessage(final String messageUri, final String participantId, final String selfId, final String conversationId, final boolean isNotification, final int bugleStatus, final String contentLocation, final String transactionId, final int smsPriority, final String subject, final boolean seen, final boolean read, final long size, final int rawStatus, final long expiry, final long sent, final long received) argument

Completed in 170 milliseconds