HomeSort by relevance Sort by last modified time
    Searched full:mailbox (Results 76 - 100 of 246) sorted by null

1 2 34 5 6 7 8 910

  /packages/apps/Email/src/com/android/email/activity/
Welcome.java 43 import com.android.emailcommon.provider.Mailbox;
60 -d '"content://ui.email.android.com/view/mailbox"' \
65 -d '"content://ui.email.android.com/view/mailbox"' \
70 -d '"content://ui.email.android.com/view/mailbox?ACCOUNT_ID=1"' \
73 * Open a message (account id=1, mailbox id=2, message id=3)
75 -d '"content://ui.email.android.com/view/mailbox?ACCOUNT_ID=1&MAILBOX_ID=2&MESSAGE_ID=3"' \
80 -d '"content://ui.email.android.com/view/mailbox?ACCOUNT_ID=1152921504606846976&MAILBOX_ID=-4"' \
89 public static final String VIEW_MAILBOX_INTENT_URL_PATH = "/view/mailbox";
282 Log.i(Logging.LOG_TAG, "Inbox not found. Starting mailbox finder...");
284 mInboxFinder = new MailboxFinder(this, mAccountId, Mailbox.TYPE_INBOX
    [all...]
UIControllerOnePane.java 34 import com.android.emailcommon.provider.Mailbox;
205 if (mailboxId == Mailbox.NO_MAILBOX) {
313 return Mailbox.NO_MAILBOX;
326 // If the mailbox list is shown and showing a nested mailbox, let it navigate up first.
329 Log.d(Logging.LOG_TAG, this + " Back: back handled by mailbox list");
353 // If the mailbox list is shown, always go back to the inbox.
394 * Show the mailbox list.
396 * This is the only way to open the mailbox list on 1-pane.
402 showFragment(MailboxListFragment.newInstance(accountId, Mailbox.NO_MAILBOX, false))
    [all...]
AccountSelectorAdapter.java 41 import com.android.emailcommon.provider.Mailbox;
132 * b) it's ID is {@link Mailbox#NO_MAILBOX}.
168 if (isAccount || id != Mailbox.NO_MAILBOX) {
248 * Returns the account/mailbox ID extracted from the given cursor.
255 * @return ID of the account / mailbox for a row
348 final int unread = Mailbox.getUnreadCountByAccountAndMailboxType(
349 mContext, accountId, Mailbox.TYPE_INBOX);
376 * Adds the recent mailbox list / "show all folders" to the given cursor.
426 addRow(matrixCursor, ROW_TYPE_MAILBOX, Mailbox.NO_MAILBOX, name, null, 0,
439 Mailbox.CONTENT_URI, RECENT_MAILBOX_INFO_PROJECTION
    [all...]
ShortcutPicker.java 34 import com.android.emailcommon.provider.Mailbox;
93 (Mailbox.getMailboxType(this, mailboxId) != Mailbox.TYPE_INBOX)) {
94 shortcutName = Mailbox.getDisplayName(this, mailboxId);
104 // TODO what's the proper handling if the mailbox list is '0'? display toast?
MessageViewFragment.java 41 import com.android.emailcommon.provider.Mailbox;
78 /** Whether or not the message can be moved from the mailbox it's in. */
110 * Called right before the current message will be deleted or moved to another mailbox.
294 protected void onMessageShown(long messageId, Mailbox mailbox) {
295 super.onMessageShown(messageId, mailbox);
299 && mailbox.canHaveMessagesMoved();
309 enableReplyForwardButtons(Mailbox.isMailboxTypeReplyAndForwardable(mailbox.mType));
  /packages/apps/Email/tests/src/com/android/email/provider/
ContentCacheTests.java 24 import com.android.emailcommon.provider.Mailbox;
139 Mailbox box = ProviderTestUtils.setupMailbox("box2", acct.mId, true, context);
143 Uri uri = ContentUris.withAppendedId(Mailbox.CONTENT_URI, box.mId);
145 resolver.query(uri, Mailbox.CONTENT_PROJECTION, null, null, null);
162 assertEquals(Mailbox.CONTENT_PROJECTION.length, columnNames.length);
163 for (int i = 0; i < Mailbox.CONTENT_PROJECTION.length; i++) {
164 assertEquals(Mailbox.CONTENT_PROJECTION[i], columnNames[i]);
187 // cursor = resolver.query(Mailbox.CONTENT_URI, Mailbox.CONTENT_PROJECTION, null, null, null);
ProviderTestUtils.java 26 import com.android.emailcommon.provider.Mailbox;
114 * Create a mailbox for test purposes
116 public static Mailbox setupMailbox(String name, long accountId, boolean saveIt,
118 return setupMailbox(name, accountId, saveIt, context, Mailbox.TYPE_MAIL);
120 public static Mailbox setupMailbox(String name, long accountId, boolean saveIt,
124 public static Mailbox setupMailbox(String name, long accountId, boolean saveIt,
126 Mailbox box = new Mailbox();
358 public static void assertMailboxEqual(String caller, Mailbox expect, Mailbox actual)
    [all...]
  /packages/apps/Email/src/com/android/email/widget/
WidgetManager.java 26 import com.android.emailcommon.provider.Mailbox;
150 * Returns the saved mailbox ID for the given widget. Otherwise, {@link Mailbox#NO_MAILBOX} if
151 * the mailbox ID was not previously saved.
155 long mailboxId = prefs.getLong(MAILBOX_ID_PREFIX + appWidgetId, Mailbox.NO_MAILBOX);
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
Builder.java 110 private Mailbox buildMailbox(ASTmailbox node) {
148 private Mailbox buildAngleAddr(ASTangle_addr node) {
180 private Mailbox buildAddrSpec(ASTaddr_spec node) {
183 private Mailbox buildAddrSpec(DomainList route, ASTaddr_spec node) {
187 return new Mailbox(route, localPart, domain);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
CalendarSyncAdapterService.java 37 import com.android.emailcommon.provider.Mailbox;
45 MailboxColumns.ACCOUNT_KEY + "=? AND " + MailboxColumns.TYPE + '=' + Mailbox.TYPE_CALENDAR;
125 // Now, find the calendar mailbox associated with the account
126 Cursor mailboxCursor = cr.query(Mailbox.CONTENT_URI, ID_SYNC_KEY_PROJECTION,
136 Log.d(TAG, "Can't sync; mailbox in initial state");
EmailSyncAdapterService.java 22 import com.android.emailcommon.provider.Mailbox;
45 MailboxColumns.ACCOUNT_KEY + "=? AND " + MailboxColumns.TYPE + '=' + Mailbox.TYPE_INBOX;
104 Cursor mailboxCursor = cr.query(Mailbox.CONTENT_URI, ID_PROJECTION,
EasSyncService.java 49 import com.android.emailcommon.provider.Mailbox;
178 protected EasSyncService(Context _context, Mailbox _mailbox) {
202 public static EasSyncService getServiceForMailbox(Context context, Mailbox m) {
204 case Mailbox.TYPE_EAS_ACCOUNT_MAILBOX:
206 case Mailbox.TYPE_OUTBOX:
1598 Mailbox mailbox = target.mMailbox; local
    [all...]
ContactsSyncAdapterService.java 21 import com.android.emailcommon.provider.Mailbox;
47 MailboxColumns.ACCOUNT_KEY + "=? AND " + MailboxColumns.TYPE + '=' + Mailbox.TYPE_CONTACTS;
136 // Now, find the contacts mailbox associated with the account
137 Cursor mailboxCursor = cr.query(Mailbox.CONTENT_URI, ID_PROJECTION,
MailboxAlarmReceiver.java 32 long mailboxId = intent.getLongExtra("mailbox", ExchangeService.EXTRA_MAILBOX_ID);
Request.java 20 * Requests for mailbox actions are handled by subclasses of this abstract class.
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSRecordType.java 43 * Mailbox
71 * Mailbox information
239 * Mailbox-related records (MB, MG or MR) [RFC1035]
  /packages/apps/Email/src/com/android/email/service/
PopImapSyncAdapterService.java 36 import com.android.emailcommon.provider.Mailbox;
97 long mailboxId = Mailbox.findMailboxOfType(context, accountId,
98 Mailbox.TYPE_INBOX);
  /external/libnfc-nci/src/nfa/int/
nfa_sys.h 82 UINT16 mbox_evt; /* GKI mailbox event */
83 UINT8 mbox; /* GKI mailbox id */
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 57 import com.android.emailcommon.provider.Mailbox;
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java 39 import com.android.emailcommon.provider.Mailbox;
60 /** The name of the only mailbox available to POP3 accounts */
156 Mailbox.TYPE_DRAFTS,
157 Mailbox.TYPE_OUTBOX,
158 Mailbox.TYPE_SENT,
159 Mailbox.TYPE_TRASH
164 Mailbox mailbox = Mailbox.getMailboxForPath(mContext, mAccount.mId, POP3_MAILBOX_NAME); local
165 updateMailbox(mailbox, mAccount.mId, POP3_MAILBOX_NAME, '\0', true, Mailbox.TYPE_INBOX)
    [all...]
  /packages/apps/Email/res/values-sw720dp/
dimen.xml 23 <!-- width of mailbox list -->
  /packages/apps/Email/res/values-sw720dp-port/
dimensions.xml 19 <!-- width of mailbox list -->
  /packages/apps/Email/tests/src/com/android/email/
NotificationControllerTest.java 28 import com.android.emailcommon.provider.Mailbox;
174 Mailbox b1 = ProviderTestUtils.setupMailbox("inbox", a1.mId, true, c, Mailbox.TYPE_INBOX);
205 Mailbox b1 = ProviderTestUtils.setupMailbox("inbox", a1.mId, true, c, Mailbox.TYPE_INBOX);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java 56 * (Mailbox and Email)
509 // Foreign key to the Mailbox holding this message [INDEX]
525 // a retrieved message (the messageKey for search results will be a TYPE_SEARCH mailbox
641 * This means unread counts on the mailbox list can be different from the
652 + "SELECT " + MailboxColumns.ID + " FROM " + Mailbox.TABLE_NAME + ""
653 + " WHERE " + MailboxColumns.TYPE + " = " + Mailbox.TYPE_TRASH
660 + "SELECT " + MailboxColumns.ID + " FROM " + Mailbox.TABLE_NAME
661 + " WHERE " + MailboxColumns.TYPE + " = " + Mailbox.TYPE_INBOX
668 + "SELECT " + MailboxColumns.ID + " FROM " + Mailbox.TABLE_NAME
669 + " WHERE " + MailboxColumns.TYPE + " = " + Mailbox.TYPE_DRAFT
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceProxy.java 163 * Request the sync of a mailbox; the service MUST send the syncMailboxStatus callback
164 * indicating "starting" and "finished" (or error), regardless of whether the mailbox is
167 * @param mailboxId the id of the mailbox record
182 * Request the immediate termination of a mailbox sync. Although the service is not required to
186 * @param mailboxId the id of the mailbox record
421 * terms separated by white space. The search is performed on the specified mailbox in the
423 * At most numResults messages matching the query term(s) will be added to the mailbox specified
430 * @param destMailboxId the id of the mailbox into which search results are appended

Completed in 342 milliseconds

1 2 34 5 6 7 8 910