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

  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapResponse.java 23 public class ImapResponse extends ImapList {
27 /* package */ ImapResponse(String tag, boolean isContinuationRequest) {
137 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/src/com/android/email/mail/store/
ImapConnection.java 27 import com.android.email.mail.store.imap.ImapResponse;
118 ImapResponse capabilities = queryCapabilities();
124 ImapResponse newCapabilities = doStartTls(hasStartTlsCapability);
192 private void setCapabilities(ImapResponse capabilities) {
229 ImapResponse readResponse() throws IOException, MessagingException {
272 ImapResponse response = readResponse();
285 List<ImapResponse> executeSimpleCommand(String command) throws IOException,
297 List<ImapResponse> getCommandResponses() throws IOException, MessagingException {
298 ArrayList<ImapResponse> responses = new ArrayList<ImapResponse>();
    [all...]
ImapFolder.java 30 import com.android.email.mail.store.imap.ImapResponse;
258 List<ImapResponse> responseList = mConnection.executeSimpleCommand(
269 for (ImapResponse response : responseList) {
346 List<ImapResponse> responses = mConnection.executeSimpleCommand(String.format(
350 for (ImapResponse response : responses) {
369 String[] getSearchUids(List<ImapResponse> responses) {
372 for (ImapResponse response : responses) {
580 ImapResponse response;
716 private void handleUntaggedResponses(List<ImapResponse> responses) {
717 for (ImapResponse response : responses)
    [all...]
ImapStore.java 33 import com.android.email.mail.store.imap.ImapResponse;
397 List<ImapResponse> responses = connection.executeSimpleCommand(imapCommand);
398 for (ImapResponse response : responses) {
  /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/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java 35 import com.android.email.mail.store.imap.ImapResponse;
91 private final static ImapResponse CAPABILITY_RESPONSE = ImapTestUtils.parseResponse(
    [all...]

Completed in 381 milliseconds