OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:findOrCreateMailboxOfType
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Email/tests/src/com/android/email/
ControllerProviderOpsTests.java
142
* Test of Controller.
findOrCreateMailboxOfType
().
158
long testBoxId = mTestController.
findOrCreateMailboxOfType
(accountId, boxType);
163
long boxId2 = mTestController.
findOrCreateMailboxOfType
(accountId, Mailbox.TYPE_DRAFTS);
168
long boxId3 = mTestController.
findOrCreateMailboxOfType
(accountId, Mailbox.TYPE_DRAFTS);
173
mTestController.
findOrCreateMailboxOfType
(-1, Mailbox.TYPE_DRAFTS));
174
assertEquals(Mailbox.NO_MAILBOX, mTestController.
findOrCreateMailboxOfType
(accountId, -1));
/packages/apps/Email/src/com/android/email/activity/
RecentMailboxManager.java
161
long mailbox = Controller.getInstance(mContext).
findOrCreateMailboxOfType
(
/packages/apps/Email/src/com/android/email/
Controller.java
479
long mailboxId =
findOrCreateMailboxOfType
(accountId, mailboxType);
496
public synchronized long
findOrCreateMailboxOfType
(long accountId, int mailboxType) {
577
long outboxId =
findOrCreateMailboxOfType
(accountId, Mailbox.TYPE_OUTBOX);
603
final long sentboxId =
findOrCreateMailboxOfType
(accountId, Mailbox.TYPE_SENT);
[
all
...]
Completed in 48 milliseconds