HomeSort by relevance Sort by last modified time
    Searched full:contentlocation (Results 1 - 10 of 10) sorted by null

  /packages/apps/Mms/src/com/android/mms/transaction/
PushReceiver.java 108 byte [] contentLocation = nInd.getContentLocation();
109 if ('=' == contentLocation[contentLocation.length - 1]) {
111 byte [] contentLocationWithId = new byte [contentLocation.length
113 System.arraycopy(contentLocation, 0, contentLocationWithId,
114 0, contentLocation.length);
116 contentLocation.length, transactionId.length);
RetrieveTransaction.java 292 String contentLocation,
295 values.put(Mms.CONTENT_LOCATION, contentLocation);
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduBody.java 52 byte[] contentLocation = part.getContentLocation();
53 if(null != contentLocation) {
54 String clc = new String(contentLocation);
168 public PduPart getPartByContentLocation(String contentLocation) {
169 return mPartMapByContentLocation.get(contentLocation);
PduPart.java 240 * @param contentLocation the value
243 public void setContentLocation(byte[] contentLocation) {
244 if(contentLocation == null) {
248 mPartHeader.put(P_CONTENT_LOCATION, contentLocation);
PduComposer.java 972 byte[] contentLocation = part.getContentLocation();
973 if (null != contentLocation) {
975 appendTextString(contentLocation);
    [all...]
PduPersister.java 394 byte[] contentLocation = getByteArrayFromPartColumn(
396 if (contentLocation != null) {
397 part.setContentLocation(contentLocation);
    [all...]
PduParser.java     [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java 75 String contentLocation,
90 path = chooseFilename(url, hint, contentDisposition, contentLocation,
152 String contentLocation, int destination) {
183 if (filename == null && contentLocation != null) {
184 String decodedContentLocation = Uri.decode(contentLocation);
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsProvider.java 404 String contentLocation = values.getAsString("cl");
405 if (!TextUtils.isEmpty(contentLocation)) {
406 File f = new File(contentLocation);
407 contentLocation = "_" + f.getName();
409 contentLocation = "";
415 + "/PART_" + System.currentTimeMillis() + contentLocation;
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
EmailSyncAdapter.java     [all...]

Completed in 1446 milliseconds