/packages/services/Telephony/src/com/android/phone/vvm/omtp/fetch/ |
H A D | VoicemailFetchedCallback.java | 16 package com.android.phone.vvm.omtp.fetch;
|
H A D | FetchVoicemailReceiver.java | 16 package com.android.phone.vvm.omtp.fetch; 85 // Ignore if the fetch request is for a voicemail not from this package.
|
/packages/apps/Email/tests/src/com/android/email/mail/store/ |
H A D | Pop3StoreUnitTests.java | 514 * Pop3Folder.fetch(), for a failure in the call to indexUids(). 532 // try the basic fetch of flags & envelope 537 mFolder.fetch(messages, fp, null); 539 fail("Broken stream should cause fetch() to throw."); 565 * Pop3Folder.fetch(), for a failure in the call to fetchEnvelope(). 579 // try the basic fetch of flags & envelope, but the LIST command fails 585 mFolder.fetch(messages, fp, null); 587 fail("Broken stream should cause fetch() to throw."); 613 * Pop3Folder.fetch(). 627 // try the basic fetch o [all...] |
H A D | ImapStoreUnitTests.java | 792 mFolder.fetch(new Message[] { message }, fp, null); 820 mFolder.fetch(new Message[] { message }, fp, null); 868 mFolder.fetch(new Message[] { message }, fp, null); 984 mFolder.fetch(new Message[] { message }, fp, null); 1007 mFolder.fetch(new Message[] { message }, fp, null); 1031 mFolder.fetch(new Message[] { message }, fp, null); 1052 mFolder.fetch(new Message[] { message }, fp, null); 1077 mFolder.fetch(new Message[] { message1 }, fp, null); 1083 // Because this breaks our little parser, fetch() skips over empty parts. 1097 mFolder.fetch(ne [all...] |
/packages/apps/Email/tests/src/com/android/emailcommon/mail/ |
H A D | MockFolder.java | 64 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) { method in class:MockFolder
|
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/ |
H A D | Folder.java | 118 * each fetch completes. Messages are downloaded as (as) lightweight (as 163 public abstract void fetch(Message[] messages, FetchProfile fp, method in class:Folder
|
/packages/services/Telephony/src/com/android/phone/vvm/omtp/imap/ |
H A D | ImapHelper.java | 51 import com.android.phone.vvm.omtp.fetch.VoicemailFetchedCallback; 220 * Extract voicemail details from the message structure. Also fetch transcription if a 232 mFolder.fetch(new Message[] {messageDetails}, fetchProfile, listener); 287 // The IMAP folder fetch method will call "messageRetrieved" on the listener when the 289 mFolder.fetch(new Message[] {message}, fetchProfile, listener); 333 mFolder.fetch(new Message[] {message}, fetchProfile, listener); 359 mFolder.fetch(new Message[] {message}, fetchProfile, listener); 495 /** Returns the fetch voicemail payload. */
|
/packages/apps/Email/provider_src/com/android/email/service/ |
H A D | ImapService.java | 80 // The maximum number of messages to fetch in a single command. 260 remoteFolder.fetch(messages.toArray(new Message[messages.size()]), fp, null); 273 remoteFolder.fetch(oneMessageArray, fp, null); 296 remoteFolder.fetch(unsyncedMessages.toArray(new Message[unsyncedMessages.size()]), fp, 627 // TODO: the fetch() function, and others, should take List<>s of messages, not 641 remoteFolder.fetch(partialArray, fp, null); 644 remoteFolder.fetch(remoteMessages, fp, null); 1374 remoteFolder.fetch(new Message[] { remoteMessage }, fp, null); 1414 remoteFolder.fetch(new Message[] { remoteMessage2 }, fp2, null); 1521 // First fetch FLAG [all...] |
H A D | EmailServiceStub.java | 219 remoteFolder.fetch(new Message[] { storeMessage }, fp,
|
/packages/services/Telephony/src/com/android/phone/vvm/omtp/sync/ |
H A D | OmtpVvmSyncService.java | 38 import com.android.phone.vvm.omtp.fetch.VoicemailFetchedCallback; 78 * The voicemail to fetch.
|
/packages/apps/Email/provider_src/com/android/email/mail/store/ |
H A D | Pop3Store.java | 541 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) method in class:Pop3Store.Pop3Folder 544 "Pop3Folder.fetch(Message[], FetchProfile, MessageRetrievalListener)"); 556 * @param callback optional callback that reports progress of the fetch
|
H A D | ImapFolder.java | 608 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) method in class:ImapFolder 670 // TODO Why can a single part have more than one Id? And why should we only fetch 919 * This will be caught by fetch and handled appropriately.
|
/packages/services/Telephony/src/com/android/phone/common/mail/store/ |
H A D | ImapFolder.java | 258 public void fetch(Message[] messages, FetchProfile fp, method in class:ImapFolder 317 // TODO Why can a single part have more than one Id? And why should we only fetch 555 * This will be caught by fetch and handled appropriately.
|