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 161 public static File getAttachmentFilename(Context context, long accountId, long attachmentId) {
162 return new File(getAttachmentDirectory(context, accountId), Long.toString(attachmentId));
294 long attachmentId = c.getLong(Attachment.ID_PROJECTION_COLUMN);
295 File attachmentFile = getAttachmentFilename(context, accountId, attachmentId);
387 long attachmentId = attachment.mId;
394 Uri attUri = getAttachmentUri(accountId, attachmentId);
402 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/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 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 654 milliseconds