Searched defs:mailbox (Results 1 - 10 of 10) sorted by relevance

/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
H A DMailboxField.java32 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) { argument
37 this.mailbox = mailbox;
42 return mailbox;
53 Mailbox mailbox = null;
58 mailbox = mailboxList.get(0);
67 return new MailboxField(name, body, raw, mailbox, parseException);
/packages/services/Telephony/src/org/apache/james/mime4j/field/
H A DMailboxField.java32 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) { argument
37 this.mailbox = mailbox;
42 return mailbox;
53 Mailbox mailbox = null;
58 mailbox = mailboxList.get(0);
67 return new MailboxField(name, body, raw, mailbox, parseException);
/packages/apps/Email/provider_src/com/android/email/mail/
H A DStore.java162 * @param type The type of mailbox
163 * @return true if the given type of mailbox can be synced.
200 * Updates the fields within the given mailbox. Only the fields that are important to
203 protected static void updateMailbox(Mailbox mailbox, long accountId, String mailboxPath, argument
205 mailbox.mAccountKey = accountId;
206 mailbox.mDelimiter = delimiter;
212 mailbox.mDisplayName = displayPath;
214 mailbox.mFlags = Mailbox.FLAG_HOLDS_MAIL | Mailbox.FLAG_ACCEPTS_MOVED_MAIL;
216 mailbox.mFlagVisible = true;
217 //mailbox
[all...]
/packages/apps/Email/provider_src/com/android/email/service/
H A DPop3Service.java155 // Note: mailbox key and account key not needed - they are projected
166 * @param toMailbox the destination mailbox we're syncing
226 * @param mailbox the mailbox to sync
231 final Mailbox mailbox, final int deltaMessageCount) throws MessagingException {
236 if (mailbox.mType != Mailbox.TYPE_INBOX) {
251 String.valueOf(mailbox.mId)
270 Pop3Folder remoteFolder = (Pop3Folder)remoteStore.getFolder(mailbox.mServerId);
309 mailbox.updateMessageCount(context, remoteMessageCount);
318 * Get all messageIds in the mailbox
230 synchronizePop3Mailbox(final Context context, final Account account, final Mailbox mailbox, final int deltaMessageCount) argument
[all...]
H A DImapService.java92 * Simple cache for last search result mailbox by account and serverId, since the most common
93 * case will be repeated use of the same mailbox
235 // Note: mailbox key and account key not needed - they are projected for the SELECT
251 * @param toMailbox the destination mailbox we're syncing
282 final Mailbox mailbox, Folder remoteFolder, ArrayList<Message> unsyncedMessages,
325 message, account.mId, mailbox.mId);
357 * @param mailbox the mailbox to sync
363 final Account account, Store remoteStore, final Mailbox mailbox, final boolean loadMore,
367 LogUtils.d(Logging.LOG_TAG, "synchronizeMailboxGeneric " + account + " " + mailbox
281 downloadFlagAndEnvelope(final Context context, final Account account, final Mailbox mailbox, Folder remoteFolder, ArrayList<Message> unsyncedMessages, HashMap<String, LocalMessageInfo> localMessageMap, final ArrayList<Long> unseenMessages) argument
362 synchronizeMailboxGeneric(final Context context, final Account account, Store remoteStore, final Mailbox mailbox, final boolean loadMore, final boolean uiRefresh) argument
1037 processUploadMessage(Context context, Store remoteStore, Mailbox mailbox, long messageId, boolean manualSync) argument
1082 processPendingDataChange(final Context context, Store remoteStore, Mailbox mailbox, boolean changeRead, boolean changeFlagged, boolean changeMailbox, boolean changeAnswered, EmailContent.Message oldMessage, final EmailContent.Message newMessage) argument
1323 processPendingAppend(Context context, Store remoteStore, Mailbox mailbox, EmailContent.Message message, boolean manualSync) argument
[all...]
/packages/apps/Email/provider_src/com/android/email/mail/store/
H A DImapStore.java332 * Creates a mailbox hierarchy out of the flat data provided by the server.
339 final Mailbox mailbox = folder.mMailbox;
340 int delimiterIdx = mailbox.mServerId.lastIndexOf(mailbox.mDelimiter);
358 mailbox.mParentKey = parentKey;
359 mailbox.mParentServerId = parentPath;
365 * exist in the local database, a new row will immediately be created in the mailbox table.
368 * @param accountId The ID of the account the mailbox is to be associated with
369 * @param mailboxPath The path of the mailbox to add
371 * @param selectable If {@code true}, the mailbox ca
374 addMailbox(Context context, long accountId, String mailboxPath, char delimiter, boolean selectable, Mailbox mailbox) argument
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
H A DAddressListParser.java192 final public void mailbox() throws ParseException { method in class:AddressListParser
193 /*@bgen(jjtree) mailbox */
281 mailbox();
302 mailbox();
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/
H A DAddressListParser.java192 final public void mailbox() throws ParseException { method in class:AddressListParser
193 /*@bgen(jjtree) mailbox */
281 mailbox();
302 mailbox();
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapContentObserver.java518 Log.e(TAG, "New SMS mailbox types have been introduced, without an update in BT...");
532 private static String getMmsFolderName(int mailbox) { argument
533 String name = FOLDER_MMS_MAP.get(mailbox);
/packages/apps/Email/provider_src/com/android/email/provider/
H A DEmailProvider.java438 * When we sync folders, we do two passes: First to create the mailbox rows, and second
447 // Update the parentKey for each mailbox row to match the _id of the row whose
454 // update mailbox set parentKey = (select _id from mailbox as b where
455 // mailbox.parentServerId=b.serverId and mailbox.parentServerId not null and
456 // mailbox.accountKey=b.accountKey)
468 // update mailbox set parentKey = -1 where parentKey=0 or parentKey is null;
520 // Clear mailbox sync status
593 // Get the mailbox ke
4862 uiSaveMessage(Message msg, Mailbox mailbox, Bundle extras) argument
5822 startSync(final Mailbox mailbox, final int deltaMessageCount) argument
5848 uiFolderRefresh(final Mailbox mailbox, final int deltaMessageCount) argument
5880 uiFolderLoadMore(final Mailbox mailbox) argument
[all...]

Completed in 500 milliseconds