OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getImapId
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java
249
String id = ImapStore.
getImapId
(mTestContext, "user-name", "host-name",
288
* Test for the interaction between {@link ImapStore#
getImapId
} and a vendor policy.
296
result.putString("
getImapId
", "\"test-key\" \"test-value\"");
300
String id = ImapStore.
getImapId
(mTestContext, "user-name", "host-name",
307
assertEquals("
getImapId
", MockVendorPolicy.passedPolicy);
308
assertEquals("user-name", MockVendorPolicy.passedBundle.getString("
getImapId
.user"));
309
assertEquals("host-name", MockVendorPolicy.passedBundle.getString("
getImapId
.host"));
311
MockVendorPolicy.passedBundle.getString("
getImapId
.capabilities"));
372
String id1a = ImapStore.
getImapId
(mTestContext, "user1", "host-name", capabilities);
373
String id1b = ImapStore.
getImapId
(mTestContext, "user1", "host-name", capabilities)
[
all
...]
/packages/apps/Email/src/com/android/email/mail/store/
ImapConnection.java
379
ImapStore.
getImapId
(mImapStore.getContext(), mUsername, host, capabilities);
ImapStore.java
185
static String
getImapId
(Context context, String userName, String host, String capabilities) {
233
* separated from
getImapId
for testability. There is no escaping or encoding in IMAP ID so
Completed in 31 milliseconds