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

  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
ImapConnection.java 26 import com.android.voicemail.impl.mail.store.ImapStore.ImapException;
46 private ImapStore imapStore;
54 * Next tag to use. All connections associated to the same ImapStore instance share the same
60 ImapConnection(ImapStore store) {
64 void setStore(ImapStore store) {
68 imapStore = store;
80 if (imapStore.getUsername() != null && imapStore.getPassword() != null) {
86 + imapStore.getUsername(
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/imap/
ImapHelper.java 49 import com.android.voicemail.impl.mail.store.ImapStore;
70 private ImapStore imapStore;
121 int auth = ImapStore.FLAG_NONE;
126 auth = ImapStore.FLAG_SSL;
129 imapStore = new ImapStore(context, this, username, password, port, serverName, auth, network);
139 imapStore.closeConnection();
157 return imapStore.getConnection();
388 ImapConnection connection = imapStore.getConnection()
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
DigestMd5Utils.java 28 import com.android.voicemail.impl.mail.store.ImapStore;
73 public Data(ImapStore imapStore, MailTransport transport, Map<String, String> challenge) {
74 username = imapStore.getUsername();
75 password = imapStore.getPassword();

Completed in 218 milliseconds