Home | History | Annotate | Download | only in service

Lines Matching defs:AttachmentService

63 public class AttachmentService extends Service implements Runnable {
65 public static final String LOG_TAG = "AttachmentService";
108 "com.android.email.AttachmentService.attachment_id";
110 "com.android.email.AttachmentService.attachment_flags";
118 static volatile AttachmentService sRunningService = null;
430 // TODO: Really don't like hard coding the AttachmentService reference here
433 // static (or test) AttachmentService instance to use.
434 final AttachmentService service = AttachmentService.sRunningService;
444 }, "AttachmentService AttachmentWatchdog").start();
462 void watchdogAlarm(final AttachmentService service, final int callbackTimeout) {
486 void issueNextWatchdogAlarm(final AttachmentService service) {
545 Attachment.restoreAttachmentWithId(AttachmentService.this, attachmentId);
549 attachment.update(AttachmentService.this, values);
583 final Intent intent = new Intent(context, AttachmentService.class);
624 new Thread(this, "AttachmentService").start();
634 debugTrace("Destroying AttachmentService object");
637 // Mark this instance of the service as stopped. Our main loop for the AttachmentService
653 * The main routine for our AttachmentService service thread.
662 // the queue. This is the case where a previous AttachmentService may have been notified
695 LogUtils.d(LOG_TAG, "AttachmentService has been instructed to stop");
977 AttachmentService.this, req.mAccountId);
1072 // AttachmentService will try to download this attachment again the next time
1313 pw.println("AttachmentService");