Home
last modified time | relevance | path

Searched refs:AttachmentService (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Email/tests/src/com/android/email/service/
DAttachmentServiceTests.java40 final AttachmentService.DownloadRequest dr = in testDownloadRequestIsEquals()
41 new AttachmentService.DownloadRequest(AttachmentService.PRIORITY_FOREGROUND, 1); in testDownloadRequestIsEquals()
42 final AttachmentService.DownloadRequest dr2 = in testDownloadRequestIsEquals()
43 new AttachmentService.DownloadRequest(AttachmentService.PRIORITY_FOREGROUND, 2); in testDownloadRequestIsEquals()
49 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); in testDownloadQueueEmptyQueue()
55 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); in testDownloadQueueAddRequest()
56 final AttachmentService.DownloadRequest dr = in testDownloadQueueAddRequest()
57 new AttachmentService.DownloadRequest(AttachmentService.PRIORITY_FOREGROUND, 1); in testDownloadQueueAddRequest()
65 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); in testDownloadQueueAddRequestNull()
78 final AttachmentService.DownloadQueue dq = new AttachmentService.DownloadQueue(); in testDownloadQueueAddRequestExisting()
[all …]
/packages/apps/Email/provider_src/com/android/email/service/
DAttachmentService.java64 public class AttachmentService extends Service implements Runnable { class
119 static volatile AttachmentService sRunningService = null;
436 final AttachmentService service = AttachmentService.sRunningService; in onReceive()
464 void watchdogAlarm(final AttachmentService service, final int callbackTimeout) { in watchdogAlarm()
488 void issueNextWatchdogAlarm(final AttachmentService service) { in issueNextWatchdogAlarm()
547 Attachment.restoreAttachmentWithId(AttachmentService.this, attachmentId); in loadAttachmentStatus()
551 attachment.update(AttachmentService.this, values); in loadAttachmentStatus()
585 final Intent intent = new Intent(context, AttachmentService.class); in attachmentChanged()
980 AttachmentService.this, req.mAccountId); in tryStartDownload()
/packages/apps/Email/src/com/android/email2/ui/
DMailActivityEmail.java31 import com.android.email.service.AttachmentService;
/packages/apps/Email/provider_src/com/android/email/provider/
DEmailProvider.java75 import com.android.email.service.AttachmentService;
2565 AttachmentService.attachmentChanged(context, id, flags);
6352 new ComponentName(context, AttachmentService.class), in setServicesEnabled()
6360 startOrStopService(enabled, context, new Intent(context, AttachmentService.class)); in setServicesEnabled()