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

12 3 4 5 6 7 8 9

  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
AddressListParserTreeConstants.java 25 "mailbox",
  /packages/apps/Email/src/com/android/exchange/
CalendarSyncAdapterService.java 21 import com.android.email.provider.EmailContent.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");
EasSyncService.java 33 import com.android.email.provider.EmailContent.Mailbox;
113 '=' + Mailbox.CHECK_INTERVAL_PING;
115 MailboxColumns.SYNC_INTERVAL + " IN (" + Mailbox.CHECK_INTERVAL_PING +
116 ',' + Mailbox.CHECK_INTERVAL_PUSH + ") AND " + MailboxColumns.TYPE + "!=\"" +
117 Mailbox.TYPE_EAS_ACCOUNT_MAILBOX + '\"';
120 '=' + Mailbox.CHECK_INTERVAL_PUSH_HOLD;
133 // The amount of time the account mailbox will sleep if there are no pingable mailboxes
138 "Account mailbox sleeping for " + (ACCOUNT_MAILBOX_SLEEP_TIME / MINUTES) + "m";
223 public EasSyncService(Context _context, Mailbox _mailbox) {
1647 Mailbox mailbox = Mailbox.restoreMailboxWithId(mContext, mailboxId); local
2014 Mailbox mailbox = target.mMailbox; local
    [all...]
ContactsSyncAdapterService.java 22 import com.android.email.provider.EmailContent.Mailbox;
48 MailboxColumns.ACCOUNT_KEY + "=? AND " + MailboxColumns.TYPE + '=' + Mailbox.TYPE_CONTACTS;
123 // Now, find the contacts mailbox associated with the account
124 Cursor mailboxCursor = cr.query(Mailbox.CONTENT_URI, ID_PROJECTION,
MailboxAlarmReceiver.java 32 long mailboxId = intent.getLongExtra("mailbox", SyncManager.SYNC_MANAGER_ID);
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
Builder.java 111 private Mailbox buildMailbox(ASTmailbox node) {
149 private Mailbox buildAngleAddr(ASTangle_addr node) {
181 private Mailbox buildAddrSpec(ASTaddr_spec node) {
184 private Mailbox buildAddrSpec(DomainList route, ASTaddr_spec node) {
188 return new Mailbox(route, localPart, domain);
  /hardware/ti/wlan/wl1271/TWD/FW_Transfer/
CmdMBox.c 36 * \brief Handle the wlan hardware command mailbox
72 * \brief Create the mailbox object
102 * \brief Destroys the mailbox object
176 * \brief Send the Command to the Mailbox
180 * \param pParamsBuf - The buffer that will be written to the mailbox
181 * \param uWriteLen - Length of data to write to the mailbox
182 * \param uReadLen - Length of data to read from the mailbox (when the result is received)
187 * and send to the FW's mailbox.
262 * It issues a read transaction from the mailbox with a CB.
349 * \brief configure the mailbox address
    [all...]
  /system/wlan/ti/wilink_6_1/TWD/FW_Transfer/
CmdMBox.c 36 * \brief Handle the wlan hardware command mailbox
72 * \brief Create the mailbox object
102 * \brief Destroys the mailbox object
177 * \brief Send the Command to the Mailbox
181 * \param pParamsBuf - The buffer that will be written to the mailbox
182 * \param uWriteLen - Length of data to write to the mailbox
183 * \param uReadLen - Length of data to read from the mailbox (when the result is received)
188 * and send to the FW's mailbox.
263 * It issues a read transaction from the mailbox with a CB.
348 * \brief configure the mailbox address
    [all...]
  /packages/apps/Email/src/com/android/email/service/
IEmailServiceCallback.aidl 45 * Callback to indicate that a mailbox is being synced
46 * mailboxId = the mailbox being synced
  /packages/apps/Email/src/com/android/email/
Utility.java 24 import com.android.email.provider.EmailContent.Mailbox;
280 if (mailboxId == Mailbox.QUERY_ALL_INBOXES
281 || mailboxId == Mailbox.QUERY_ALL_DRAFTS
282 || mailboxId == Mailbox.QUERY_ALL_OUTBOX) {
285 if (mailboxId == Mailbox.QUERY_ALL_INBOXES) {
286 type = Mailbox.TYPE_INBOX;
287 } else if (mailboxId == Mailbox.QUERY_ALL_DRAFTS) {
288 type = Mailbox.TYPE_DRAFTS;
290 type = Mailbox.TYPE_OUTBOX;
293 Cursor c = resolver.query(Mailbox.CONTENT_URI
    [all...]
LegacyConversions.java 38 import com.android.email.provider.EmailContent.Mailbox;
679 * Conversion from legacy folder to provider mailbox. Used for account migration.
680 * Note: Many mailbox fields are unused in IMAP & POP accounts.
687 public static EmailContent.Mailbox makeMailbox(Context context, EmailContent.Account toAccount,
689 EmailContent.Mailbox result = new EmailContent.Mailbox();
711 * Infer mailbox type from mailbox name. Used by MessagingController (for live folder sync)
719 Mailbox.TYPE_INBOX);
722 Mailbox.TYPE_OUTBOX)
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
AccountFolderList.java 31 import com.android.email.provider.EmailContent.Mailbox;
99 * Reduced mailbox projection used by AccountsAdapter
131 + Mailbox.TYPE_INBOX;
232 MessageList.actionHandleAccount(this, id, Mailbox.TYPE_INBOX);
238 Cursor c = context.getContentResolver().query(Mailbox.CONTENT_URI,
255 Cursor c = context.getContentResolver().query(Mailbox.CONTENT_URI,
297 count = getUnreadCountByMailboxType(this, Mailbox.TYPE_INBOX);
299 row.add(Long.valueOf(Mailbox.QUERY_ALL_INBOXES)); // MAILBOX_COLUMN_ID = 0;
302 row.add(Integer.valueOf(Mailbox.TYPE_INBOX)); // MAILBOX_TYPE = 3;
308 row.add(Long.valueOf(Mailbox.QUERY_ALL_FAVORITES)); // MAILBOX_COLUMN_ID = 0
    [all...]
UpgradeAccounts.java 39 import com.android.email.provider.EmailContent.Mailbox;
541 final EmailContent.Mailbox mailbox; field in class:UpgradeAccounts.FolderConversion
543 public FolderConversion(Folder _folder, EmailContent.Mailbox _mailbox) {
545 mailbox = _mailbox;
588 EmailContent.Mailbox mailbox = local
590 mailbox.save(context);
596 FolderConversion conversion = new FolderConversion(folder, mailbox);
598 switch (mailbox.mType)
    [all...]
MailboxList.java 30 import com.android.email.provider.EmailContent.Mailbox;
69 + " AND " + MailboxColumns.TYPE + "<" + Mailbox.TYPE_NOT_EMAIL
283 * Refresh the mailbox list, or a single mailbox
344 EmailContent.Mailbox.CONTENT_URI,
355 case Mailbox.TYPE_DRAFTS:
358 case Mailbox.TYPE_TRASH:
644 case Mailbox.TYPE_DRAFTS:
648 case Mailbox.TYPE_TRASH:
665 case Mailbox.TYPE_DRAFTS
    [all...]
Welcome.java 24 import com.android.email.provider.EmailContent.Mailbox;
95 MessageList.actionHandleAccount(this, accountId, Mailbox.TYPE_INBOX);
  /packages/apps/Email/tests/src/com/android/exchange/
SyncManagerAccountTests.java 26 import com.android.email.provider.EmailContent.Mailbox;
169 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", acct1.mId, true, context);
170 Mailbox box2 = ProviderTestUtils.setupMailbox("box2", acct1.mId, true, context);
172 Mailbox box3 = ProviderTestUtils.setupMailbox("box3", acct2.mId, true, context);
173 Mailbox box4 = ProviderTestUtils.setupMailbox("box4", acct2.mId, true, context);
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/hal/hw_ctrl/
whalHwMboxCmd.c 56 * DESCRIPTION: Create the mailbox commands object
120 * DESCRIPTION: Construct the StartBss command fileds and send it to the mailbox
218 * DESCRIPTION: Construct the LNA control command fileds and send it to the mailbox
286 * DESCRIPTION: Construct the EnableRx command fileds and send it to the mailbox
309 * DESCRIPTION: Construct the EnableTx command fileds and send it to the mailbox
333 * DESCRIPTION: Construct the DisableRx command fileds and send it to the mailbox
356 * DESCRIPTION: Construct the DisableTx command fileds and send it to the mailbox
426 * DESCRIPTION: Build the tim template fileds and send it to the mailbox
465 * DESCRIPTION: Construct the SetKey command fileds and send it to the mailbox
622 * mailbox
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 23 import com.android.email.provider.EmailContent.Mailbox;
99 * Create a mailbox for test purposes
101 public static Mailbox setupMailbox(String name, long accountId, boolean saveIt,
103 return setupMailbox(name, accountId, saveIt, context, Mailbox.TYPE_MAIL);
106 public static Mailbox setupMailbox(String name, long accountId, boolean saveIt,
108 Mailbox box = new Mailbox();
282 public static void assertMailboxEqual(String caller, Mailbox expect, Mailbox actual) {
  /packages/apps/Email/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 23 import com.android.email.provider.EmailContent.Mailbox;
100 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", acct.mId, true, mMockContext);
151 void setupSyncParserAndAdapter(Account account, Mailbox mailbox) throws IOException {
152 EasSyncService service = getTestService(account, mailbox);
153 mSyncAdapter = new EmailSyncAdapter(mailbox, service);
  /hardware/ti/wlan/wl1271/TWD/Ctrl/
CmdBldCmdIE.c 125 * DESCRIPTION: Construct the StartBss command fileds and send it to the mailbox
192 * DESCRIPTION: Construct the EnableRx command fileds and send it to the mailbox
224 * DESCRIPTION: Construct the EnableTx command fileds and send it to the mailbox
257 * DESCRIPTION: Construct the DisableRx command fileds and send it to the mailbox
275 * DESCRIPTION: Construct the DisableTx command fileds and send it to the mailbox
358 * DESCRIPTION: Construct the SetKey command fileds and send it to the mailbox
489 * mailbox
511 * mailbox
682 * to the mailbox
766 * DESCRIPTION: Construct the Disconnect command fileds and send it to the mailbox
    [all...]
  /system/wlan/ti/wilink_6_1/TWD/Ctrl/
CmdBldCmdIE.c 125 * DESCRIPTION: Construct the StartBss command fileds and send it to the mailbox
192 * DESCRIPTION: Construct the EnableRx command fileds and send it to the mailbox
220 * DESCRIPTION: Construct the EnableTx command fileds and send it to the mailbox
247 * DESCRIPTION: Construct the DisableRx command fileds and send it to the mailbox
265 * DESCRIPTION: Construct the DisableTx command fileds and send it to the mailbox
344 * DESCRIPTION: Construct the SetKey command fileds and send it to the mailbox
470 * mailbox
492 * mailbox
663 * to the mailbox
747 * DESCRIPTION: Construct the Disconnect command fileds and send it to the mailbox
    [all...]
  /packages/apps/Email/res/menu/
message_list_option.xml 17 <!-- This menu is shown when MessageList is viewing a regular mailbox. -->
message_list_option_smart_folder.xml 17 <!-- This menu is shown when MessageList is viewing a smart-folder mailbox. -->
  /packages/apps/Email/src/com/android/exchange/adapter/
EmailSyncAdapter.java 31 import com.android.email.provider.EmailContent.Mailbox;
87 public EmailSyncAdapter(Mailbox mailbox, EasSyncService service) {
88 super(mailbox, service);
417 // Find the message in this mailbox with the given serverId
562 mailboxValues.put(Mailbox.SYNC_KEY, mMailbox.mSyncKey);
564 ContentUris.withAppendedId(Mailbox.CONTENT_URI, mMailbox.mId))
728 if (mMailbox.mType == Mailbox.TYPE_DRAFTS || mMailbox.mType == Mailbox.TYPE_OUTBOX) {
735 // Find our trash mailbox, since deletions will have been moved there..
    [all...]
  /hardware/ti/wlan/wl1271/TWD/TWDriver/
Device.h 73 5 - EVENT_A - Event Mailbox interrupt
74 6 - EVENT_B - Event Mailbox interrupt
208 Command/Information Mailbox Pointers
212 Command Mailbox Pointer - 32bit RW
215 the command mailbox located in the Wlan hardware memory.
217 find the location of the command mailbox.
218 The Wlan hardware initializes the command mailbox
219 pointer with the default address of the command mailbox.
220 The command mailbox pointer is not valid until after
227 Information Mailbox Pointer - 32bit RW
    [all...]

Completed in 2360 milliseconds

12 3 4 5 6 7 8 9