Home | History | Annotate | Download | only in store

Lines Matching refs:ImapConstants

25 import com.android.email.mail.store.imap.ImapConstants;
116 mLoginPhrase = ImapConstants.AUTHENTICATE + " " + ImapConstants.XOAUTH2 + " " +
124 mLoginPhrase = ImapConstants.LOGIN + " " + mImapStore.getUsername() + " "
154 capabilities.contains(ImapConstants.STARTTLS);
226 if (capabilities.contains(ImapConstants.ID)) {
229 if (capabilities.contains(ImapConstants.NAMESPACE)) {
232 if (capabilities.contains(ImapConstants.UIDPLUS)) {
235 if (capabilities.contains(ImapConstants.STARTTLS)) {
353 if (ImapConstants.UNAVAILABLE.equals(responseCode)) {
401 for (ImapResponse r : executeSimpleCommand(ImapConstants.CAPABILITY)) {
402 if (r.is(0, ImapConstants.CAPABILITY)) {
434 mIdPhrase = ImapConstants.ID + " (" + mUserAgent + ")";
436 mIdPhrase = ImapConstants.ID + " " + ImapConstants.NIL;
468 responseList = executeSimpleCommand(ImapConstants.NAMESPACE);
479 if (response.isDataResponse(0, ImapConstants.NAMESPACE)) {
514 if (ImapConstants.AUTHENTICATIONFAILED.equals(code) ||
515 ImapConstants.EXPIRED.equals(code) ||
516 (ImapConstants.NO.equals(status) && TextUtils.isEmpty(code))) {
572 if (ImapConstants.UNAVAILABLE.equals(responseCode)) {
591 responseList = executeSimpleCommand(ImapConstants.LIST + " \"\" \"\"");
602 if (response.isDataResponse(0, ImapConstants.LIST)) {
619 executeSimpleCommand(ImapConstants.STARTTLS);