HomeSort by relevance Sort by last modified time
    Searched refs:mailbox (Results 1 - 25 of 45) sorted by null

1 2

  /external/smack/src/org/xbill/DNS/
RPRecord.java 19 private Name mailbox; field in class:RPRecord
31 * @param mailbox The responsible person
35 RPRecord(Name name, int dclass, long ttl, Name mailbox, Name textDomain) {
38 this.mailbox = checkName("mailbox", mailbox);
44 mailbox = new Name(in);
50 mailbox = st.getName(origin);
58 sb.append(mailbox);
64 /** Gets the mailbox address of the RP Record *
    [all...]
MBRecord.java 6 * Mailbox Record - specifies a host containing a mailbox.
24 * @param mailbox The host containing the mailbox for the domain.
27 MBRecord(Name name, int dclass, long ttl, Name mailbox) {
28 super(name, Type.MB, dclass, ttl, mailbox, "mailbox");
31 /** Gets the mailbox for the domain */
MGRecord.java 6 * Mail Group Record - specifies a mailbox which is a member of a mail group.
24 * @param mailbox The mailbox that is a member of the group specified by the
28 MGRecord(Name name, int dclass, long ttl, Name mailbox) {
29 super(name, Type.MG, dclass, ttl, mailbox, "mailbox");
32 /** Gets the mailbox in the mail group specified by the domain */
  /packages/apps/Email/src/org/apache/james/mime4j/field/
MailboxField.java 27 import org.apache.james.mime4j.field.address.Mailbox;
32 private final Mailbox mailbox; field in class:MailboxField
35 protected MailboxField(final String name, final String body, final String raw, final Mailbox mailbox, final ParseException parseException) {
37 this.mailbox = mailbox;
41 public Mailbox getMailbox() {
42 return mailbox;
53 Mailbox mailbox = null; local
    [all...]
  /external/kernel-headers/original/linux/
omap_csmi.h 26 void (*ack)(int mailbox);
27 int (*data)(int mailbox);
28 void (*reset)(int mailbox);
29 void (*start)(int mailbox);
30 void (*stop)(int mailbox);
61 int omap_csmi_send_mailbox(int mailbox, void *data, size_t size, unsigned int flags);
62 void omap_csmi_read_mailbox(int mailbox, void *data, size_t size);
63 int omap_csmi_install_mailbox_handlers(int mailbox, omap_csmi_mailbox_handlers_t handlers);
64 int omap_csmi_uninstall_mailbox_handlers(int mailbox, omap_csmi_mailbox_handlers_t handlers);
66 //mailbox channel 1 command
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Store.java 33 import com.android.emailcommon.provider.Mailbox;
180 * Updates the fields within the given mailbox. Only the fields that are important to
183 protected static void updateMailbox(Mailbox mailbox, long accountId, String mailboxPath,
185 mailbox.mAccountKey = accountId;
186 mailbox.mDelimiter = delimiter;
192 mailbox.mDisplayName = displayPath;
194 mailbox.mFlags = Mailbox.FLAG_HOLDS_MAIL | Mailbox.FLAG_ACCEPTS_MOVED_MAIL
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
FolderSyncParser.java 32 import com.android.emailcommon.provider.Mailbox;
74 // Chunk size for our mailbox commits
83 MailboxColumns.TYPE + "!=" + Mailbox.TYPE_EAS_ACCOUNT_MAILBOX;
120 UNINITIALIZED_PARENT_KEY.put(MailboxColumns.PARENT_KEY, Mailbox.PARENT_KEY_UNINITIALIZED);
141 // only the account mailbox
145 mContentResolver.delete(Mailbox.CONTENT_URI, ALL_BUT_ACCOUNT_MAILBOX,
174 // Save away any mailbox sync information that is NOT default
177 mContentResolver.delete(Mailbox.CONTENT_URI, ALL_BUT_ACCOUNT_MAILBOX,
217 return mContentResolver.query(Mailbox.CONTENT_URI, MAILBOX_ID_COLUMNS_PROJECTION,
226 // Find the mailbox in this account with the given serverI
351 Mailbox mailbox = new Mailbox(); local
558 Mailbox mailbox = addParser(); local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
MailboxList.java 25 * An immutable, random-access list of Mailbox objects.
34 * @param mailboxes An ArrayList that contains only Mailbox objects.
54 public Mailbox get(int index) {
57 return (Mailbox)mailboxes.get(index);
61 * Dumps a representation of this mailbox list to
66 Mailbox mailbox = get(i); local
67 System.out.println(mailbox.toString());
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/adapter/
SyncAdapterTestCase.java 25 import com.android.emailcommon.provider.Mailbox;
40 public Mailbox mMailbox;
80 Mailbox mailbox = new Mailbox(); local
81 mailbox.mId = -1;
82 return getTestService(mAccount, mailbox);
85 EasSyncService getTestService(Account account, Mailbox mailbox) {
88 service.mMailbox = mailbox;
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
SyncAdapterTestCase.java 25 import com.android.emailcommon.provider.Mailbox;
40 public Mailbox mMailbox;
80 Mailbox mailbox = new Mailbox(); local
81 mailbox.mId = -1;
82 return getTestService(mAccount, mailbox);
85 EasSyncService getTestService(Account account, Mailbox mailbox) {
88 service.mMailbox = mailbox;
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessagesAdapter.java 40 import com.android.emailcommon.provider.Mailbox;
109 /** Whether the mailbox is found. */
111 /** {@link Account} that owns the mailbox. Null for combined mailboxes. */
113 /** {@link Mailbox} for the loaded mailbox. Null for combined mailboxes. */
114 public final Mailbox mMailbox;
117 /** {@code true} if the loaded mailbox can be refreshed. */
123 boolean found, Account account, Mailbox mailbox, boolean isEasAccount,
128 mMailbox = mailbox;
316 Mailbox mailbox = null; local
    [all...]
UIControllerBase.java 42 import com.android.emailcommon.provider.Mailbox;
546 openMailbox(accountId, Mailbox.QUERY_ALL_INBOXES);
548 long inboxId = Mailbox.findMailboxOfType(mActivity, accountId, Mailbox.TYPE_INBOX);
549 if (inboxId == Mailbox.NO_MAILBOX) {
568 * Returns the id of the parent mailbox used for the mailbox list fragment.
575 : Mailbox.NO_MAILBOX;
579 * Returns the id of the mailbox used for the message list fragment.
586 : Mailbox.NO_MAILBOX
709 Mailbox mailbox = getSearchableMailbox(); local
804 Mailbox mailbox = getMessageListFragment().getMailbox(); local
    [all...]
RecentMailboxManager.java 28 import com.android.emailcommon.provider.Mailbox;
53 + " FROM " + Mailbox.TABLE_NAME
55 + " AND " + Mailbox.USER_VISIBLE_MAILBOX_SELECTION
56 + " AND " + MailboxColumns.TYPE + "!=" + Mailbox.TYPE_INBOX
64 + " FROM " + Mailbox.TABLE_NAME
66 + " AND " + Mailbox.USER_VISIBLE_MAILBOX_SELECTION
67 + " AND " + MailboxColumns.TYPE + "=" + Mailbox.TYPE_MAIL
72 /** Mailbox types for default "recent mailbox" entries if none exist */
75 Mailbox.TYPE_DRAFTS
    [all...]
MailboxFragmentAdapter.java 48 import com.android.emailcommon.provider.Mailbox;
55 * Mailbox cursor adapter for the mailbox list fragment.
57 * A mailbox cursor may contain one of several different types of data. Currently, this
59 * 1. The standard inbox, mailbox view
60 * 2. The combined mailbox view
73 /** Callback for setting background of mailbox list items during a drag */
92 // The following types are used when drilling into a mailbox
93 /** The current mailbox */
105 * Projection for a typical mailbox or account row
575 final Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mailboxId); local
    [all...]
  /packages/apps/Email/src/com/android/email/
MessagingController.java 56 import com.android.emailcommon.provider.Mailbox;
74 * that require remote mailbox access. This class is used to serialize and
141 * Simple cache for last search result mailbox by account and serverId, since the most common
142 * case will be repeated use of the same mailbox
146 private Mailbox mLastSearchRemoteMailbox = null;
256 // TODO For now, mailbox addition occurs in the server-dependent store implementation,
257 // but, mailbox removal occurs here. Instead, each store should be responsible for
274 Mailbox.CONTENT_URI,
280 // Step 3: Remove any local mailbox not on the remote list
283 // Short circuit if we have a remote mailbox with the same nam
618 final Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, searchParams.mMailboxId); local
1125 Mailbox mailbox = new Mailbox(); local
1170 Mailbox mailbox = getRemoteMailboxForMessage(oldMessage); local
1235 Mailbox mailbox = null; local
1331 Mailbox mailbox = null; local
    [all...]
FolderProperties.java 21 import com.android.emailcommon.provider.Mailbox;
37 * Some methods probably should belong to {@link Mailbox}, but as this class uses resources,
81 if (mailboxId == Mailbox.QUERY_ALL_INBOXES) {
83 } else if (mailboxId == Mailbox.QUERY_ALL_FAVORITES) {
85 } else if (mailboxId == Mailbox.QUERY_ALL_DRAFTS) {
87 } else if (mailboxId == Mailbox.QUERY_ALL_OUTBOX) {
109 * Return the display name for a mailbox for UI. For normal mailboxes, it just returns
113 * @param mailboxType Such as {@link Mailbox#TYPE_INBOX}
114 * @param mailboxId ID of a mailbox.
115 * @param originalDisplayName Display name of the mailbox stored in the database
    [all...]
Controller.java 50 import com.android.emailcommon.provider.Mailbox;
95 MailboxColumns.TYPE + "=" + Mailbox.TYPE_ATTACHMENT;
112 Mailbox.TYPE_EAS_ACCOUNT_MAILBOX;
207 * Delete all Messages that live in the attachment mailbox
210 // Note: There should only be one attachment mailbox at present
214 c = resolver.query(Mailbox.CONTENT_URI, EmailContent.ID_PROJECTION,
232 * Get a mailbox based on a sqlite WHERE clause
234 private Mailbox getGlobalMailboxWhere(String where) {
235 Cursor c = mProviderContext.getContentResolver().query(Mailbox.CONTENT_URI,
236 Mailbox.CONTENT_PROJECTION, where, null, null)
296 Mailbox mailbox = getAttachmentMailbox(); local
790 Mailbox mailbox = Mailbox.getMailboxForMessageId(mProviderContext, messageId); local
    [all...]
  /packages/apps/Email/src/com/android/email/widget/
EmailWidgetLoader.java 25 import com.android.emailcommon.provider.Mailbox;
85 * Gets the count to be shown on the widget header. If the currently viewed mailbox ID is
86 * not {@link Mailbox#QUERY_ALL_FAVORITES}, it is the unread count, which is different from
96 /** Gets the display name of the mailbox */
118 if (mMailboxId != Mailbox.QUERY_ALL_FAVORITES) {
145 Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mMailboxId); local
146 if (mailbox != null) {
147 mailboxName = mailbox.mDisplayName; // regular mailbo
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
MailboxSettings.java 44 import com.android.emailcommon.provider.Mailbox;
50 * "Mailbox settings" activity.
52 * It's used to update per-mailbox sync settings. It normally updates Mailbox settings, unless
53 * the target mailbox is Inbox, in which case it updates Account settings instead.
62 private static final String BUNDLE_MAILBOX = "MailboxSettings.mailbox";
70 // Account and Mailbox -- directly loaded by LoadMailboxTask
72 private Mailbox mMailbox;
79 * Starts the activity for a mailbox.
91 final long mailboxId = getIntent().getLongExtra(EXTRA_MAILBOX_ID, Mailbox.NO_MAILBOX)
345 final Mailbox mailbox = mMailbox; local
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
ImapStore.java 45 import com.android.emailcommon.provider.Mailbox;
319 * Creates a mailbox hierarchy out of the flat data provided by the server.
326 final Mailbox mailbox = folder.mMailbox; local
327 int delimiterIdx = mailbox.mServerId.lastIndexOf(mailbox.mDelimiter);
328 long parentKey = Mailbox.NO_MAILBOX;
332 final Mailbox parentMailbox = (parentFolder == null) ? null : parentFolder.mMailbox;
336 |= (Mailbox.FLAG_HAS_CHILDREN | Mailbox.FLAG_CHILDREN_VISIBLE)
356 Mailbox mailbox = Mailbox.getMailboxForPath(context, accountId, mailboxPath); local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/
RecentMailboxManagerTest.java 30 import com.android.emailcommon.provider.Mailbox;
37 * Tests for the recent mailbox manager.
48 private Mailbox[] mMailboxArray;
62 mMailboxArray = new Mailbox[] {
63 ProviderTestUtils.setupMailbox("inbox", 1L, true, mMockContext, Mailbox.TYPE_INBOX),
64 ProviderTestUtils.setupMailbox("drafts", 1L, true, mMockContext, Mailbox.TYPE_DRAFTS),
65 ProviderTestUtils.setupMailbox("outbox", 1L, true, mMockContext, Mailbox.TYPE_OUTBOX),
66 ProviderTestUtils.setupMailbox("sent", 1L, true, mMockContext, Mailbox.TYPE_SENT),
67 ProviderTestUtils.setupMailbox("trash", 1L, true, mMockContext, Mailbox.TYPE_TRASH),
68 ProviderTestUtils.setupMailbox("junk", 1L, true, mMockContext, Mailbox.TYPE_JUNK)
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-85721.js 241 // ## Item #1: mailbox is an addr_spec or a phrase/route_addr
242 $mailbox =
254 re = new RegExp($mailbox, "g");
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Mailbox.java 34 public class Mailbox extends EmailContent implements SyncColumns, MailboxColumns, Parcelable {
35 public static final String TABLE_NAME = "Mailbox";
37 public static final Uri CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/mailbox");
136 // Sentinel values for the mSyncInterval field of both Mailbox records
140 // Ping indicates that the EAS mailbox is synced based on a "ping" from the server
142 // Push-Hold indicates an EAS push or ping Mailbox shouldn't sync just yet
151 public static final Integer[] INVALID_DROP_TARGETS = new Integer[] {Mailbox.TYPE_DRAFTS,
152 Mailbox.TYPE_OUTBOX, Mailbox.TYPE_SENT};
155 MailboxColumns.TYPE + "<" + Mailbox.TYPE_NOT_EMAIL
283 Mailbox mailbox = null; local
303 Mailbox mailbox = restoreMailboxForPath(context, accountId, path); local
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
ExchangeService.java 63 import com.android.emailcommon.provider.Mailbox;
111 // The ExchangeService's mailbox "id"
130 // Mailbox was marked push
148 Mailbox.TYPE_EAS_ACCOUNT_MAILBOX + " and " + MailboxColumns.SYNC_INTERVAL +
149 " IN (" + Mailbox.CHECK_INTERVAL_PING + ',' + Mailbox.CHECK_INTERVAL_PUSH + ')';
151 MailboxColumns.ACCOUNT_KEY + "=? and type in (" + Mailbox.TYPE_INBOX + ','
152 + Mailbox.TYPE_EAS_ACCOUNT_MAILBOX + ',' + Mailbox.TYPE_CONTACTS + ','
153 + Mailbox.TYPE_CALENDAR + ')'
1358 Mailbox mailbox = new Mailbox(); local
1648 Mailbox mailbox = service.mMailbox; local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj 183 void mailbox() :
184 {/*@bgen(jjtree) mailbox */
190 {/*@bgen(jjtree) mailbox */
265 [ mailbox() ]
268 [ mailbox() ]

Completed in 5477 milliseconds

1 2