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

  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
ImapConnection.java 46 private ImapStore mImapStore;
68 mImapStore = store;
80 if (mImapStore.getUsername() != null && mImapStore.getPassword() != null) {
86 + mImapStore.getUsername()
88 + ImapUtility.imapQuoted(mImapStore.getPassword());
102 mTransport = mImapStore.cloneTransport();
114 mImapStore.getImapHelper().handleEvent(OmtpEvents.DATA_INVALID_INITIAL_SERVER_RESPONSE);
128 mImapStore.getImapHelper().handleEvent(OmtpEvents.DATA_SSL_EXCEPTION);
132 mImapStore.getImapHelper().handleEvent(OmtpEvents.DATA_IOE_ON_OPEN)
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapConnection.java 67 private ImapStore mImapStore;
92 mImapStore = store;
107 if (mImapStore.getUseOAuth()) {
111 mImapStore.getContext(), mImapStore.getAccount());
114 final String oauthCode = "user=" + mImapStore.getUsername() + '\001' +
121 if (mImapStore.getUsername() != null && mImapStore.getPassword() != null) {
124 mLoginPhrase = ImapConstants.LOGIN + " " + mImapStore.getUsername() + " "
125 + ImapUtility.imapQuoted(mImapStore.getPassword())
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/imap/
ImapHelper.java 69 private ImapStore mImapStore;
128 mImapStore =
139 mImapStore.closeConnection();
157 return mImapStore.getConnection();
383 ImapConnection connection = mImapStore.getConnection();
398 ImapConnection connection = mImapStore.getConnection();
411 ImapConnection connection = mImapStore.getConnection();
652 if (mImapStore == null) {
655 ImapFolder folder = new ImapFolder(mImapStore, ImapConstants.INBOX);

Completed in 1017 milliseconds