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

  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapConnection.java 27 import com.android.email.mail.store.imap.ImapResponse;
151 ImapResponse capabilities = queryCapabilities();
157 ImapResponse newCapabilities = doStartTls(hasStartTlsCapability);
225 private void setCapabilities(ImapResponse capabilities) {
262 ImapResponse readResponse() throws IOException, MessagingException {
313 ImapResponse response = readResponse();
326 List<ImapResponse> executeSimpleCommand(String command) throws IOException, MessagingException {
337 List<ImapResponse> getCommandResponses() throws IOException, MessagingException {
338 final List<ImapResponse> responses = new ArrayList<ImapResponse>();
    [all...]
ImapFolder.java 29 import com.android.email.mail.store.imap.ImapResponse;
268 List<ImapResponse> responseList = mConnection.executeSimpleCommand(
279 for (ImapResponse response : responseList) {
357 final List<ImapResponse> responses = mConnection.executeSimpleCommand(
362 for (ImapResponse response : responses) {
381 String[] getSearchUids(List<ImapResponse> responses) {
384 for (ImapResponse response : responses) {
683 ImapResponse response;
    [all...]
ImapStore.java 30 import com.android.email.mail.store.imap.ImapResponse;
432 List<ImapResponse> responses = connection.executeSimpleCommand(imapCommand);
433 for (ImapResponse response : responses) {
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapResponse.java 23 public class ImapResponse extends ImapList {
27 /* package */ ImapResponse(String tag, boolean isContinuationRequest) {
144 final ImapResponse thatResponse = (ImapResponse) that;
ImapResponseParser.java 64 * We store all {@link ImapResponse} in it. {@link #destroyResponses()} must be called from
67 private final ArrayList<ImapResponse> mResponsesToDestroy = new ArrayList<ImapResponse>();
138 * Destroy all the {@link ImapResponse}s stored in the internal storage and clear it.
143 for (ImapResponse r : mResponsesToDestroy) {
151 * {@link ImapResponse} object that represents it.
153 * <p>When this method successfully returns an {@link ImapResponse}, the {@link ImapResponse}
154 * is stored in the internal storage. When the {@link ImapResponse} is no longer used
157 * @return the parsed {@link ImapResponse} object
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapResponseTest.java 22 import com.android.email.mail.store.imap.ImapResponse;
43 final ImapResponse OK = buildResponse("tag", false, new ImapSimpleString("OK"));
44 final ImapResponse SEARCH = buildResponse(null, false, new ImapSimpleString("SEARCH"),
46 final ImapResponse EXISTS = buildResponse(null, false, new ImapSimpleString("3"),
49 final ImapResponse TAGGED_EXISTS = buildResponse("tag", false, new ImapSimpleString("1"),
ImapTestUtils.java 22 import com.android.email.mail.store.imap.ImapResponse;
74 /** Convenience method to build an {@link ImapResponse} */
75 public static final ImapResponse buildResponse(String tag, boolean isContinuationRequest,
77 ImapResponse res = new ImapResponse(tag, isContinuationRequest);
85 * Convenience method to build an {@link ImapResponse} from a single response.
87 public static final ImapResponse parseResponse(String line) {
ImapResponseParserTest.java 72 ImapResponse r;
147 ImapResponse r;
164 ImapResponse r;
185 ImapResponse r;
224 ImapResponse r;
248 ImapResponse r;
262 ImapResponse r;
369 ImapResponse r;
379 ImapResponse r;
  /packages/apps/Email/provider_src/com/android/email/service/
ImapTempFileLiteral.java 20 import com.android.email.mail.store.imap.ImapResponse;
64 * We should always be calling {@link ImapResponse#destroy()}, but it's here as a last resort.
  /packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java 34 import com.android.email.mail.store.imap.ImapResponse;
92 private final static ImapResponse CAPABILITY_RESPONSE = ImapTestUtils.parseResponse(
    [all...]

Completed in 357 milliseconds