HomeSort by relevance Sort by last modified time
    Searched defs:attachmentId (Results 1 - 6 of 6) sorted by null

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
AttachmentUtilities.java 163 public static File getAttachmentFilename(Context context, long accountId, long attachmentId) {
164 return new File(getAttachmentDirectory(context, accountId), Long.toString(attachmentId));
314 long attachmentId = c.getLong(Attachment.ID_PROJECTION_COLUMN);
315 File attachmentFile = getAttachmentFilename(context, accountId, attachmentId);
380 long attachmentId = attachment.mId;
390 File file = getAttachmentFilename(context, accountId, attachmentId);
393 contentUri = getAttachmentUri(accountId, attachmentId).toString();
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 292 long attachmentId = localAttachment.mId;
301 attachmentId);
310 accountId, attachmentId).toString();
319 Uri uri = ContentUris.withAppendedId(Attachment.CONTENT_URI, attachmentId);
  /packages/apps/Email/tests/src/com/android/email/provider/
AttachmentProviderTests.java 462 long attachmentId = addAttachmentToDb(account, newAttachment);
463 Uri attachmentUri = AttachmentUtilities.getAttachmentUri(account.mId, attachmentId);
479 // We use attachmentId == 1 but any other id would do
485 // We know that the attachmentId 1 does not exist because there are no attachments
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
UtilityUnitTests.java 299 long attachmentId = att.mId;
300 Uri uri = AttachmentUtilities.getAttachmentUri(account.mId, attachmentId);
  /packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java 169 final long attachmentId;
179 attachmentId = attachment.mId;
193 return (int)attachmentId;
203 return req.attachmentId == attachmentId;
299 if (req.attachmentId == id) {
328 Log.d(TAG, "== Skip #" + req.attachmentId + "; maxed for acct #" +
423 Log.d(TAG, "== Download of " + req.attachmentId + " timed out");
452 boolean alreadyInProgress = mDownloadsInProgress.get(req.attachmentId) != null;
457 Log.d(TAG, ">> Starting download for attachment #" + req.attachmentId);
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageCompose.java     [all...]

Completed in 94 milliseconds