OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ImapStore
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Email/src/com/android/email/mail/
Store.java
23
import com.android.email.mail.store.
ImapStore
;
87
sStoreClasses.put(context.getString(R.string.protocol_legacy_imap),
ImapStore
.class);
/packages/apps/Email/src/com/android/email/mail/store/
ImapConnection.java
21
import com.android.email.mail.store.
ImapStore
.ImapException;
65
private
ImapStore
mImapStore;
73
* Next tag to use. All connections associated to the same
ImapStore
instance share the same
82
ImapConnection(
ImapStore
store, String username, String password) {
86
void setStore(
ImapStore
store, String username, String password) {
166
* until {@link #setStore(
ImapStore
, String, String)} is called.
377
ImapStore
.getImapId(mImapStore.getContext(), mUsername, host, capabilities);
430
mImapStore.setPathPrefix(
ImapStore
.decodeFolderName(namespaceString, null));
ImapStore.java
80
public class
ImapStore
extends Store {
96
return new
ImapStore
(context, account);
103
private
ImapStore
(Context context, Account account) throws MessagingException {
109
throw new MessagingException("No HostAuth in
ImapStore
?");
168
synchronized (
ImapStore
.class) {
Completed in 25 milliseconds