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

1 2

  /packages/apps/Mms/src/com/android/mms/transaction/
MmsMessageSender.java 99 // Move the message into MMS Outbox.
101 // If the message is already in the outbox (most likely because we created a "primed"
102 // message in the outbox when the user hit send), then we have to manually put an
105 // insert_mms_pending_on_update, when a message is moved from drafts to the outbox.
119 p.move(mMessageUri, Mms.Outbox.CONTENT_URI);
165 PduPersister.getPduPersister(context).persist(readRec, Mms.Outbox.CONTENT_URI, true,
ReadRecTransaction.java 40 * <li>Loads the read report indication from storage (Outbox).
79 // Load M-read-rec.ind from outbox
99 Log.v(TAG, "Failed to load message from Outbox.", e);
SendTransaction.java 49 * <li>Loads the multimedia message from storage (Outbox).
53 * <li>Moves sent multimedia message from Outbox to Sent.
91 // Load M-Send.req from outbox
156 // Move M-Send.req from Outbox into Sent.
SmsReceiverService.java 46 import android.provider.Telephony.Sms.Outbox;
239 // Inactive messages includes all messages in outbox and queued box.
390 // Some messages may get stuck in the outbox. At this point, they're probably irrelevant
407 * Move all messages that are in the outbox to the queued state
416 getApplicationContext(), getContentResolver(), Outbox.CONTENT_URI,
425 * Move all messages that are in the outbox to the failed state and set them to unread.
436 getApplicationContext(), getContentResolver(), Outbox.CONTENT_URI,
MmsSystemEventReceiver.java 40 * <li>Resend the MM's in the outbox.</li>
SmsSingleRecipientSender.java 72 "to outbox: " + mUri);
RetryScheduler.java 242 Mms.Outbox.CONTENT_URI, null, Mms._ID + "=" + msgID, null, null);
  /packages/apps/Email/tests/src/com/android/email/activity/
RecentMailboxManagerTest.java 65 ProviderTestUtils.setupMailbox("outbox", 1L, true, mMockContext, Mailbox.TYPE_OUTBOX),
160 mMockClock.advance(1000L); mManager.touch(1L, mMailboxArray[2].mId); // outbox
171 assertEquals(mMailboxArray[2].mId, (long) testList.get(3)); // outbox
186 mMockClock.advance(1000L); mManager.touch(1L, mMailboxArray[2].mId); // outbox
212 mMockClock.advance(1000L); mManager.touch(1L, mMailboxArray[2].mId); // outbox
MailboxFragmentAdapterTest.java 100 // Row 4 -- combined outbox (with total count)
  /packages/apps/Exchange/exchange2/src/com/android/exchange/provider/
MailboxUtilities.java 57 // Outbox, Drafts, and Sent don't allow mail to be moved to them
64 // An example of a mailbox with a null serverId would be an Outbox that we create locally
65 // for hotmail accounts (which don't have a server-based Outbox)
  /frameworks/opt/mms/src/java/com/google/android/mms/util/
PduCache.java 62 URI_MATCHER.addURI("mms", "outbox", MMS_OUTBOX);
63 URI_MATCHER.addURI("mms", "outbox/#", MMS_OUTBOX_ID);
  /packages/apps/Email/tests/src/com/android/email/
FolderPropertiesTests.java 128 Drawable outbox = fp.getIcon(Mailbox.TYPE_OUTBOX, -1, 0); local
138 set.add(outbox);
ControllerProviderOpsTests.java 91 assertEquals("Outbox", Controller.getMailboxServerName(mContext, Mailbox.TYPE_OUTBOX));
100 assertEquals("Outbox", Controller.getMailboxServerName(mContext, Mailbox.TYPE_OUTBOX));
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EasOutboxService.java 328 // the Outbox sync! Message-specific errors are marked in the messages themselves.
440 // Delete the message from the Outbox and send callback
485 // Get a cursor to Outbox messages
524 userLog("Outbox exited with status ", mExitStatus);
530 * Convenience method for adding a Message to an account's outbox
AbstractSyncService.java 37 * mail placed in outbox, etc.) EasSyncService is currently implemented; my goal
ExchangeService.java 396 // sent mail) Upon request to sync the Outbox, we clear this so that all messages
402 // Clear the error state; the Outbox sync will be started from checkMailboxes
404 kick("start outbox");
405 // Outbox can't be synced in EAS
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
Folder.java 41 OUTBOX, // Local folders only - not used in remote Stores
  /packages/apps/Mms/src/com/android/mms/
MmsApp.java 113 // For Sms: retry to send smses in outbox and queued box
  /packages/apps/Mms/tests/src/com/android/mms/ui/
ComposeMessageActivityTests.java 167 BoxChecker boxChecker = new BoxChecker(new int[] {4, 2}); // outbox, sent
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 432 public static final class Outbox implements BaseColumns, TextBasedSmsColumns {
437 Uri.parse("content://sms/outbox");
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
WorkingMessage.java 154 // Message sizes in Outbox
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduPersister.java 203 MESSAGE_BOX_MAP.put(Mms.Outbox.CONTENT_URI, Mms.MESSAGE_BOX_OUTBOX);
    [all...]
  /packages/apps/Email/res/values/
strings.xml 115 <!-- Command shown on Outbox to send all pending messages [CHAR LIMIT=20] -->
143 "Outbox" and "Sent". [CHAR LIMIT=none]-->
144 <string name="cannot_move_special_mailboxes_toast">Messages in Drafts, Outbox, and Sent can\'t be
186 <!-- Do Not Translate. This is the name of the "outbox" folder, on the server. -->
187 <string name="mailbox_name_server_outbox" translatable="false">Outbox</string>
200 <!-- In the UI, the outbox will be displayed with this name -->
201 <string name="mailbox_name_display_outbox">Outbox</string>
258 <string name="account_folder_list_summary_outbox">Outbox</string>
261 Combined Inbox, Combined Outbox, etc. [CHAR LIMIT=30] -->
    [all...]
  /packages/apps/Email/src/com/android/email/
MessagingController.java 332 * We don't ever sync the Outbox.
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/provider/
MailboxTests.java 392 // b2 (account 1, outbox): 2 message, including 1 starred
401 // b4 (account 2, outbox) has no messages.

Completed in 253 milliseconds

1 2