Home | History | Annotate | Download | only in store

Lines Matching refs:ImapConstants

29 import com.android.email.mail.store.imap.ImapConstants;
345 if (ImapConstants.INBOX.equalsIgnoreCase(parentPath)) {
348 parentPath = ImapConstants.INBOX;
427 connection.executeSimpleCommand(ImapConstants.NOOP);
428 String imapCommand = ImapConstants.LIST + " \"\" \"*\"";
430 imapCommand = ImapConstants.LIST + " \"\" \"" + mPathPrefix + "*\"";
435 if (response.isDataResponse(0, ImapConstants.LIST)) {
442 if (ImapConstants.INBOX.equalsIgnoreCase(folderName)) continue;
446 !response.getListOrEmpty(1).contains(ImapConstants.FLAG_NO_SELECT);
463 mailboxes.put(ImapConstants.INBOX, newFolder);
559 connection.executeSimpleCommand(ImapConstants.NOOP);
591 if (ImapConstants.INBOX.equalsIgnoreCase(name)) return name;