Home
last modified time | relevance | path

Searched refs:FetchProfile (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Email/tests/src/com/android/email/mail/store/
DPop3StoreUnitTests.java30 import com.android.emailcommon.mail.FetchProfile;
534 FetchProfile fp = new FetchProfile(); in testCatchClosed2()
535 fp.add(FetchProfile.Item.FLAGS); in testCatchClosed2()
536 fp.add(FetchProfile.Item.ENVELOPE); in testCatchClosed2()
582 FetchProfile fp = new FetchProfile(); in testCatchClosed2a()
583 fp.add(FetchProfile.Item.FLAGS); in testCatchClosed2a()
584 fp.add(FetchProfile.Item.ENVELOPE); in testCatchClosed2a()
629 FetchProfile fp = new FetchProfile(); in testCatchClosed3()
630 fp.add(FetchProfile.Item.FLAGS); in testCatchClosed3()
631 fp.add(FetchProfile.Item.ENVELOPE); in testCatchClosed3()
[all …]
DImapStoreUnitTests.java46 import com.android.emailcommon.mail.FetchProfile;
771 final FetchProfile fp = new FetchProfile(); in testFetchFlagEnvelope()
772 fp.add(FetchProfile.Item.FLAGS); in testFetchFlagEnvelope()
773 fp.add(FetchProfile.Item.ENVELOPE); in testFetchFlagEnvelope()
812 final FetchProfile fp = new FetchProfile(); in testFetchBodyStructureSimple()
813 fp.add(FetchProfile.Item.STRUCTURE); in testFetchBodyStructureSimple()
851 final FetchProfile fp = new FetchProfile(); in testFetchBodyStructureMultipart()
852 fp.add(FetchProfile.Item.STRUCTURE); in testFetchBodyStructureMultipart()
973 final FetchProfile fp = new FetchProfile(); in testFetchBodySane()
974 fp.add(FetchProfile.Item.BODY_SANE); in testFetchBodySane()
[all …]
/packages/apps/Email/provider_src/com/android/email/service/
DImapService.java44 import com.android.emailcommon.mail.FetchProfile;
258 FetchProfile fp = new FetchProfile(); in loadUnsyncedMessages()
259 fp.add(FetchProfile.Item.STRUCTURE); in loadUnsyncedMessages()
285 FetchProfile fp = new FetchProfile(); in downloadFlagAndEnvelope()
286 fp.add(FetchProfile.Item.FLAGS); in downloadFlagAndEnvelope()
287 fp.add(FetchProfile.Item.ENVELOPE); in downloadFlagAndEnvelope()
629 FetchProfile fp = new FetchProfile(); in synchronizeMailboxGeneric()
630 fp.add(FetchProfile.Item.FLAGS); in synchronizeMailboxGeneric()
1372 FetchProfile fp = new FetchProfile(); in processPendingAppend()
1373 fp.add(FetchProfile.Item.ENVELOPE); in processPendingAppend()
[all …]
DEmailServiceStub.java40 import com.android.emailcommon.mail.FetchProfile;
217 final FetchProfile fp = new FetchProfile(); in loadAttachment()
/packages/apps/Email/provider_src/com/android/email/mail/store/
DImapFolder.java41 import com.android.emailcommon.mail.FetchProfile;
608 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) in fetch()
621 public void fetchInternal(Message[] messages, FetchProfile fp, in fetchInternal()
646 if (fp.contains(FetchProfile.Item.FLAGS)) { in fetchInternal()
649 if (fp.contains(FetchProfile.Item.ENVELOPE)) { in fetchInternal()
654 if (fp.contains(FetchProfile.Item.STRUCTURE)) { in fetchInternal()
658 if (fp.contains(FetchProfile.Item.BODY_SANE)) { in fetchInternal()
661 if (fp.contains(FetchProfile.Item.BODY)) { in fetchInternal()
700 if (fp.contains(FetchProfile.Item.FLAGS)) { in fetchInternal()
716 if (fp.contains(FetchProfile.Item.ENVELOPE)) { in fetchInternal()
[all …]
DPop3Store.java28 import com.android.emailcommon.mail.FetchProfile;
541 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) in fetch()
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
DFetchProfile.java33 public class FetchProfile extends ArrayList<Fetchable> { class
DFolder.java163 public abstract void fetch(Message[] messages, FetchProfile fp, in fetch()
/packages/apps/Email/tests/src/com/android/emailcommon/mail/
DMockFolder.java64 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) { in fetch()