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

  /packages/apps/Email/src/com/android/email/
MessagingListener.java 80 long attachmentId,
87 long attachmentId) {
93 long attachmentId,
GroupMessagingListener.java 165 long attachmentId,
168 l.loadAttachmentStarted(accountId, messageId, attachmentId, requiresDownload);
176 long attachmentId) {
178 l.loadAttachmentFinished(accountId, messageId, attachmentId);
186 long attachmentId,
189 l.loadAttachmentFailed(accountId, messageId, attachmentId, reason);
Controller.java 564 public void deleteAttachment(long attachmentId) {
566 Uri uri = ContentUris.withAppendedId(Attachment.CONTENT_URI, attachmentId);
737 * @param attachmentId the attachment to load
743 public void loadAttachment(final long attachmentId, final long messageId, final long mailboxId,
747 accountId, attachmentId);
748 Attachment attachInfo = Attachment.restoreAttachmentWithId(mProviderContext, attachmentId);
757 listener.loadAttachmentCallback(null, messageId, attachmentId, 0);
760 listener.loadAttachmentCallback(null, messageId, attachmentId, 100);
772 AttachmentProvider.getAttachmentUri(accountId, attachmentId).toString());
783 mLegacyController.loadAttachment(accountId, messageId, mailboxId, attachmentId,
    [all...]
ExchangeUtils.java 100 public void loadAttachment(long attachmentId, String destinationFile,
MessagingController.java     [all...]
LegacyConversions.java 439 long attachmentId = localAttachment.mId;
448 attachmentId);
457 accountId, attachmentId).toString();
466 Uri uri = ContentUris.withAppendedId(Attachment.CONTENT_URI, attachmentId);
    [all...]
  /packages/apps/Email/src/com/android/email/service/
IEmailServiceCallback.aidl 55 * attachmentId = the attachment being synced
59 void loadAttachmentStatus(long messageId, long attachmentId, int statusCode, int progress);
IEmailService.aidl 30 void loadAttachment(long attachmentId, String destinationFile, String contentUriString);
EmailServiceProxy.java 37 * new EmailServiceClass(context, class).loadAttachment(attachmentId, callback)
158 public void loadAttachment(final long attachmentId, final String destinationFile,
164 mService.loadAttachment(attachmentId, destinationFile, contentUriString);
MailService.java 594 long attachmentId, int progress) {
  /packages/apps/Email/tests/src/com/android/email/mail/
MessageTestUtils.java 64 * @param attachmentId attachment id
68 public static Uri contentUri(long attachmentId, EmailContent.Account account) {
69 return AttachmentProvider.getAttachmentUri(account.mId, attachmentId);
108 * @param attachmentId attachment id of store
115 long attachmentId, LocalStore store) throws MessagingException, IOException {
118 store.new LocalAttachmentBodyPart(imageBody, attachmentId);
  /packages/apps/Email/src/com/android/email/activity/
MessageView.java 246 long attachmentId = (Long)msg.obj;
247 doFinishLoadAttachment(attachmentId);
301 public void finishLoadAttachment(long attachmentId) {
303 msg.obj = Long.valueOf(attachmentId);
315 public long attachmentId;
741 mLoadAttachmentId = attachment.attachmentId;
745 mController.loadAttachment(attachment.attachmentId, mMessageId, mMessage.mMailboxKey,
750 mLoadAttachmentId = attachment.attachmentId;
754 mController.loadAttachment(attachment.attachmentId, mMessageId, mMessage.mMailboxKey,
    [all...]
MailboxList.java 538 long attachmentId, int progress) {
AccountFolderList.java 700 long attachmentId, int progress) {
    [all...]
MessageCompose.java     [all...]
MessageList.java     [all...]
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 116 public static File getAttachmentFilename(Context context, long accountId, long attachmentId) {
117 return new File(getAttachmentDirectory(context, accountId), Long.toString(attachmentId));
445 long attachmentId = c.getLong(Attachment.ID_PROJECTION_COLUMN);
446 File attachmentFile = getAttachmentFilename(context, accountId, attachmentId);
  /packages/apps/Email/src/com/android/email/mail/store/
LocalStore.java     [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
AttachmentProviderTests.java 447 long attachmentId = addAttachmentToDb(account, newAttachment);
448 Uri attachmentUri = AttachmentProvider.getAttachmentUri(account.mId, attachmentId);
464 // We use attachmentId == 1 but any other id would do
476 // We know that the attachmentId 1 does not exist because there are no attachments
638 long attachmentId = -1;
652 attachmentId = db.insertOrThrow("attachments", "message_id", cv);
661 attachmentId = newAttachment.mId;
663 return attachmentId;
  /packages/apps/Email/src/com/android/exchange/
EasSyncService.java     [all...]
SyncManager.java 256 public void loadAttachmentStatus(long messageId, long attachmentId, int statusCode,
260 cb.loadAttachmentStatus(messageId, attachmentId, statusCode, progress);
339 public void loadAttachment(long attachmentId, String destinationFile,
341 Attachment att = Attachment.restoreAttachmentWithId(SyncManager.this, attachmentId);
    [all...]

Completed in 737 milliseconds