OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImapStore
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java
33
import com.android.email.mail.store.
ImapStore
.ImapMessage;
67
* This is a series of unit tests for the
ImapStore
class. These tests must be locally
96
private
ImapStore
mStore = null;
135
* Setup code. We generate a lightweight
ImapStore
and
ImapStore
.ImapFolder.
141
ImapStore
.sImapId =
ImapStore
.makeCommonImapId(realContext.getPackageName(),
159
mStore = (
ImapStore
)
ImapStore
.newInstance(testAccount, mTestContext);
165
assertEquals("",
ImapStore
.joinMessageUids(new Message[] {}))
[
all
...]
/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));
ImapFolder.java
24
import com.android.email.mail.store.
ImapStore
.ImapException;
25
import com.android.email.mail.store.
ImapStore
.ImapMessage;
73
private final
ImapStore
mStore;
84
/*package*/ ImapFolder(
ImapStore
store, String name) {
195
ImapStore
.encodeFolderName(mName, mStore.mPathPrefix)));
241
ImapStore
.encodeFolderName(mName, mStore.mPathPrefix)));
265
ImapStore
.joinMessageUids(messages),
266
ImapStore
.encodeFolderName(folder.getName(), mStore.mPathPrefix)));
355
ImapStore
.encodeFolderName(mName, mStore.mPathPrefix)));
373
throw new Error("
ImapStore
.delete() not yet implemented")
[
all
...]
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) {
/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);
Completed in 34 milliseconds