OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mImapStore
(Results
1 - 3
of
3
) sorted by null
/packages/services/Telephony/src/com/android/phone/common/mail/store/
ImapConnection.java
48
private ImapStore
mImapStore
;
71
mImapStore
= store;
83
if (
mImapStore
.getUsername() != null &&
mImapStore
.getPassword() != null) {
86
mLoginPhrase = ImapConstants.LOGIN + " " +
mImapStore
.getUsername() + " "
87
+ ImapUtility.imapQuoted(
mImapStore
.getPassword());
101
mTransport =
mImapStore
.cloneTransport();
113
mImapStore
.getImapHelper()
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/services/Telephony/src/com/android/phone/vvm/omtp/imap/
ImapHelper.java
70
private ImapStore
mImapStore
;
127
mImapStore
= new ImapStore(
143
mImapStore
.closeConnection();
161
return
mImapStore
.getConnection();
394
ImapConnection connection =
mImapStore
.getConnection();
411
ImapConnection connection =
mImapStore
.getConnection();
425
ImapConnection connection =
mImapStore
.getConnection();
667
if (
mImapStore
== null) {
670
ImapFolder folder = new ImapFolder(
mImapStore
, ImapConstants.INBOX);
Completed in 1304 milliseconds