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
251
String id = ImapStore.
getImapId
(mTestContext, "user-name", "host-name",
290
* Test for the interaction between {@link ImapStore#
getImapId
} and a vendor policy.
298
result.putString("
getImapId
", "\"test-key\" \"test-value\"");
302
String id = ImapStore.
getImapId
(mTestContext, "user-name", "host-name",
309
assertEquals("
getImapId
", MockVendorPolicy.passedPolicy);
310
assertEquals("user-name", MockVendorPolicy.passedBundle.getString("
getImapId
.user"));
311
assertEquals("host-name", MockVendorPolicy.passedBundle.getString("
getImapId
.host"));
313
MockVendorPolicy.passedBundle.getString("
getImapId
.capabilities"));
374
String id1a = ImapStore.
getImapId
(mTestContext, "user1", "host-name", capabilities);
375
String id1b = ImapStore.
getImapId
(mTestContext, "user1", "host-name", capabilities)
[
all
...]
/packages/apps/Email/src/com/android/email/mail/store/
ImapConnection.java
377
ImapStore.
getImapId
(mImapStore.getContext(), mUsername, host, capabilities);
ImapStore.java
164
public static String
getImapId
(Context context, String userName, String host,
213
* separated from
getImapId
for testability. There is no escaping or encoding in IMAP ID so
Completed in 28 milliseconds