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

1 2 3 4 5 6 7 8 9

  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
NamedMailbox.java 23 * A Mailbox that has a name/description.
27 public class NamedMailbox extends Mailbox {
31 * @see Mailbox#Mailbox(String, String)
39 * @see Mailbox#Mailbox(DomainList, String, String)
47 * Creates a named mailbox based on an unnamed mailbox.
49 public NamedMailbox(String name, Mailbox baseMailbox) {
55 * Returns the name of the mailbox.
    [all...]
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());
Mailbox.java 29 public class Mailbox extends Address {
35 * Creates a mailbox without a route. Routes are obsolete.
39 public Mailbox(String localPart, String domain) {
44 * Creates a mailbox with a route. Routes are obsolete.
49 public Mailbox(DomainList route, String localPart, String domain) {
  /packages/apps/Email/src/com/android/exchange/adapter/
AccountSyncAdapter.java 3 import com.android.email.provider.EmailContent.Mailbox;
11 public AccountSyncAdapter(Mailbox mailbox, EasSyncService service) {
12 super(mailbox, service);
FolderSyncParser.java 24 import com.android.email.provider.EmailContent.Mailbox;
71 MailboxColumns.TYPE + "!=" + Mailbox.TYPE_EAS_ACCOUNT_MAILBOX;
114 mContentResolver.delete(Mailbox.CONTENT_URI, ALL_BUT_ACCOUNT_MAILBOX,
149 return mContentResolver.query(Mailbox.CONTENT_URI, EmailContent.ID_PROJECTION,
158 // Find the mailbox in this account with the given serverId
164 ContentUris.withAppendedId(Mailbox.CONTENT_URI,
208 Mailbox m = new Mailbox();
212 m.mType = Mailbox.TYPE_MAIL;
215 m.mSyncInterval = Mailbox.CHECK_INTERVAL_NEVER
    [all...]
AbstractSyncAdapter.java 22 import com.android.email.provider.EmailContent.Mailbox;
42 public Mailbox mMailbox;
64 public AbstractSyncAdapter(Mailbox mailbox, EasSyncService service) {
65 mMailbox = mailbox;
83 * @return the current SyncKey for the Mailbox
AbstractSyncParser.java 21 import com.android.email.provider.EmailContent.Mailbox;
42 protected Mailbox mMailbox;
122 mMailbox.mSyncInterval = Mailbox.CHECK_INTERVAL_PUSH;
153 if (mMailbox.mSyncInterval == Mailbox.CHECK_INTERVAL_PUSH) {
154 mMailbox.mSyncInterval = Mailbox.CHECK_INTERVAL_PING;
179 userLog("Changes found to ping loop mailbox ", mMailbox.mDisplayName, ": will ping.");
180 cv.put(MailboxColumns.SYNC_INTERVAL, Mailbox.CHECK_INTERVAL_PING);
194 userLog("Aborting account syncs due to mailbox change to ping...");
  /packages/apps/Email/tests/src/com/android/email/
ControllerProviderOpsTests.java 23 import com.android.email.provider.EmailContent.Mailbox;
82 assertEquals("Inbox", ct.getMailboxServerName(Mailbox.TYPE_INBOX));
83 assertEquals("Outbox", ct.getMailboxServerName(Mailbox.TYPE_OUTBOX));
84 assertEquals("Trash", ct.getMailboxServerName(Mailbox.TYPE_TRASH));
85 assertEquals("Sent", ct.getMailboxServerName(Mailbox.TYPE_SENT));
86 assertEquals("Junk", ct.getMailboxServerName(Mailbox.TYPE_JUNK));
91 assertEquals("Inbox", ct.getMailboxServerName(Mailbox.TYPE_INBOX));
92 assertEquals("Outbox", ct.getMailboxServerName(Mailbox.TYPE_OUTBOX));
93 assertEquals("Trash", ct.getMailboxServerName(Mailbox.TYPE_TRASH));
94 assertEquals("Sent", ct.getMailboxServerName(Mailbox.TYPE_SENT))
    [all...]
UtilityUnitTests.java 19 import com.android.email.provider.EmailContent.Mailbox;
62 name = Utility.FolderProperties.getInstance(context).getDisplayName(Mailbox.TYPE_INBOX);
65 name = Utility.FolderProperties.getInstance(context).getDisplayName(Mailbox.TYPE_MAIL);
68 name = Utility.FolderProperties.getInstance(context).getDisplayName(Mailbox.TYPE_PARENT);
71 name = Utility.FolderProperties.getInstance(context).getDisplayName(Mailbox.TYPE_DRAFTS);
74 name = Utility.FolderProperties.getInstance(context).getDisplayName(Mailbox.TYPE_OUTBOX);
77 name = Utility.FolderProperties.getInstance(context).getDisplayName(Mailbox.TYPE_SENT);
80 name = Utility.FolderProperties.getInstance(context).getDisplayName(Mailbox.TYPE_TRASH);
83 name = Utility.FolderProperties.getInstance(context).getDisplayName(Mailbox.TYPE_JUNK);
98 Drawable inbox = fp.getIconIds(Mailbox.TYPE_INBOX)
    [all...]
  /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/e2fsprogs/lib/et/test_cases/
imap_err.c 12 "Too many user flags in mailbox",
13 "Mailbox has an invalid format",
14 "Operation is not supported on mailbox",
15 "Mailbox does not exist",
16 "Mailbox already exists",
17 "Invalid mailbox name",
18 "Mailbox is locked by POP server",
32 "Mailbox is over quota",
33 "Mailbox is at %d%% of quota",
imap_err.et 39 "Too many user flags in mailbox"
42 "Mailbox has an invalid format"
45 "Operation is not supported on mailbox"
48 "Mailbox does not exist"
51 "Mailbox already exists"
54 "Invalid mailbox name"
57 "Mailbox is locked by POP server"
103 "Mailbox is over quota"
106 "Mailbox is at %d%% of quota"
  /packages/apps/Email/tests/src/com/android/exchange/adapter/
SyncAdapterTestCase.java 21 import com.android.email.provider.EmailContent.Mailbox;
39 Mailbox mMailbox;
73 Mailbox mailbox = new Mailbox(); local
74 mailbox.mId = -1;
75 return getTestService(account, mailbox);
78 EasSyncService getTestService(Account account, Mailbox mailbox) {
81 service.mMailbox = mailbox;
    [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...]
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmsdpcm.h 32 * Software allocation of To SB Mailbox resources
36 #define I_SMB_NAK I_SMB_SW0 /* To SB Mailbox Frame NAK */
37 #define I_SMB_INT_ACK I_SMB_SW1 /* To SB Mailbox Host Interrupt ACK */
38 #define I_SMB_USE_OOB I_SMB_SW2 /* To SB Mailbox Use OOB Wakeup */
39 #define I_SMB_DEV_INT I_SMB_SW3 /* To SB Mailbox Miscellaneous Interrupt */
42 #define SMB_NAK (1 << 0) /* To SB Mailbox Frame NAK */
43 #define SMB_INT_ACK (1 << 1) /* To SB Mailbox Host Interrupt ACK */
44 #define SMB_USE_OOB (1 << 2) /* To SB Mailbox Use OOB Wakeup */
45 #define SMB_DEV_INT (1 << 3) /* To SB Mailbox Miscellaneous Interrupt */
46 #define SMB_MASK 0x0000000f /* To SB Mailbox Mask *
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 26 import com.android.email.provider.EmailContent.Mailbox;
188 * Get the value of the unread count in the mailbox of the account.
189 * This can be different from the actual number of unread messages in that mailbox.
199 Mailbox.CONTENT_URI,
323 * Test simple mailbox save/retrieve
326 Account account1 = ProviderTestUtils.setupAccount("mailbox-save", true, mMockContext);
328 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true,
332 Mailbox box2 = EmailContent.Mailbox.restoreMailboxWithId(mMockContext, box1Id);
370 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext)
    [all...]
  /hardware/ti/wlan/wl1271/TWD/FW_Transfer/Export_Inc/
CmdMBox_api.h 58 * \brief Create the mailbox object
72 * \brief Destroys the mailbox object
109 * \brief configure the mailbox address.
117 * Called from HwInit to read the command mailbox address.
125 * \brief Send the Command to the Mailbox
129 * \param pParamsBuf - The buffer that will be written to the mailbox
130 * \param uWriteLen - Length of data to write to the mailbox
131 * \param uReadLen - Length of data to read from the mailbox (when the result is received)
136 * and send to the FW's mailbox.
158 * It issues a read transaction from the mailbox with a CB
    [all...]
  /system/wlan/ti/wilink_6_1/TWD/FW_Transfer/Export_Inc/
CmdMBox_api.h 58 * \brief Create the mailbox object
72 * \brief Destroys the mailbox object
109 * \brief configure the mailbox address.
117 * Called from HwInit to read the command mailbox address.
125 * \brief Send the Command to the Mailbox
129 * \param pParamsBuf - The buffer that will be written to the mailbox
130 * \param uWriteLen - Length of data to write to the mailbox
131 * \param uReadLen - Length of data to read from the mailbox (when the result is received)
136 * and send to the FW's mailbox.
158 * It issues a read transaction from the mailbox with a CB
    [all...]
  /packages/apps/Email/src/com/android/exchange/
SyncManager.java 31 import com.android.email.provider.EmailContent.Mailbox;
116 // The SyncManager's mailbox "id"
135 // 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 + ')'
1428 Mailbox mailbox = Mailbox.restoreMailboxWithId(this, mailboxId); local
    [all...]
EasOutboxService.java 24 import com.android.email.provider.EmailContent.Mailbox;
62 public EasOutboxService(Context _context, Mailbox _mailbox) {
96 // The reference message and mailbox are called item and collection in EAS
111 // Then, we need the serverId of the mailbox
112 cols = getRowColumns(Mailbox.CONTENT_URI, boxId, MailboxColumns.SERVER_ID);
226 Mailbox mailbox = Mailbox.restoreMailboxOfType(context, accountId, Mailbox.TYPE_OUTBOX); local
227 if (mailbox != null)
    [all...]
Request.java 20 * Requests for mailbox actions are handled by subclasses of this abstract class.
  /packages/apps/Email/src/com/android/email/
MessagingController.java 39 import com.android.email.provider.EmailContent.Mailbox;
64 * that require remote mailbox access. This class is used to serialize and
271 EmailContent.Mailbox.CONTENT_URI,
295 case Mailbox.TYPE_INBOX:
296 case Mailbox.TYPE_DRAFTS:
297 case Mailbox.TYPE_OUTBOX:
298 case Mailbox.TYPE_SENT:
299 case Mailbox.TYPE_TRASH:
302 // Drop all attachment files related to this mailbox
305 // Delete the mailbox. Triggers will take care o
1085 Mailbox mailbox = null; local
1163 Mailbox mailbox = null; local
1261 Mailbox mailbox = null; local
    [all...]
Controller.java 26 import com.android.email.provider.EmailContent.Mailbox;
176 * Request a remote update of a mailbox. For use by the timed service.
208 * Request a remote update of a mailbox.
212 * downloading some/all of the messages in this mailbox, but that should be interruptable.
234 Mailbox mailbox = local
235 EmailContent.Mailbox.restoreMailboxWithId(mProviderContext, mailboxId);
236 if (account == null || mailbox == null) {
239 mLegacyController.synchronizeMailbox(account, mailbox, mLegacyListener);
285 * Saves the message to a mailbox of given type
516 Mailbox mailbox = Mailbox.restoreMailboxWithId(mProviderContext, mailboxId); local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageList.java 31 import com.android.email.provider.EmailContent.Mailbox;
168 * Open a specific mailbox.
174 * @param id mailbox key
181 * Open a specific mailbox by account & type
185 * @param mailboxType the type of mailbox to open (e.g. @see EmailContent.Mailbox.TYPE_INBOX)
196 Intent i = createIntent(context, -1, -1, Mailbox.TYPE_INBOX);
202 * Return an intent to open a specific mailbox by account & type.
206 * @param mailboxId the ID of the mailbox to open, or -1
207 * @param mailboxType the type of mailbox to open (e.g. @see Mailbox.TYPE_INBOX) or -
496 Mailbox mailbox = Mailbox.restoreMailboxWithId(this, itemView.mMailboxId); local
554 Mailbox mailbox = Mailbox.restoreMailboxWithId(this, mMailboxId); local
564 Mailbox mailbox = Mailbox.restoreMailboxWithId(this, mMailboxId); local
583 EmailContent.Mailbox mailbox = local
617 EmailContent.Mailbox mailbox = EmailContent.Mailbox.restoreMailboxWithId(this, mailboxId); local
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 28 import com.android.email.provider.EmailContent.Mailbox;
103 private static final int MAILBOX = MAILBOX_BASE;
148 EmailContent.Mailbox.TABLE_NAME,
185 "create trigger mailbox_delete before delete on " + Mailbox.TABLE_NAME +
202 // insert into this URI causes a mailbox to be added to the account
205 matcher.addURI(EMAIL_AUTHORITY, "account/#/mailbox", ACCOUNT_MAILBOXES);
208 matcher.addURI(EMAIL_AUTHORITY, "mailbox", MAILBOX);
209 // A specific mailbox
210 // insert into this URI causes a message to be added to the mailbox
    [all...]

Completed in 1225 milliseconds

1 2 3 4 5 6 7 8 9