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 175 public static File getAttachmentFilename(Context context, long accountId, long attachmentId) {
176 return new File(getAttachmentDirectory(context, accountId), Long.toString(attachmentId));
308 long attachmentId = c.getLong(Attachment.ID_PROJECTION_COLUMN);
309 File attachmentFile = getAttachmentFilename(context, accountId, attachmentId);
401 long attachmentId = attachment.mId;
408 Uri attUri = getAttachmentUri(accountId, attachmentId);
416 attachmentId);
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 299 long attachmentId = localAttachment.mId;
308 attachmentId);
317 accountId, attachmentId).toString();
327 Uri uri = ContentUris.withAppendedId(Attachment.CONTENT_URI, attachmentId);
  /packages/apps/Email/tests/src/com/android/emailcommon/utility/
UtilityUnitTests.java 297 long attachmentId = att.mId;
298 Uri uri = AttachmentUtilities.getAttachmentUri(account.mId, attachmentId);
  /packages/apps/Email/tests/src/com/android/email/provider/
AttachmentProviderTests.java 452 long attachmentId = addAttachmentToDb(account, newAttachment);
453 Uri attachmentUri = AttachmentUtilities.getAttachmentUri(account.mId, attachmentId);
469 // We use attachmentId == 1 but any other id would do
475 // We know that the attachmentId 1 does not exist because there are no attachments
  /packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java 178 final long attachmentId;
190 attachmentId = attachment.mId;
204 attachmentId = orig.attachmentId;
220 return (int)attachmentId;
230 return req.attachmentId == attachmentId;
326 if (req.attachmentId == id) {
356 LogUtils.d(TAG, "== Skip #" + req.attachmentId + "; maxed for acct #" +
360 } else if (Attachment.restoreAttachmentWithId(mContext, req.attachmentId) == null)
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java     [all...]

Completed in 209 milliseconds