HomeSort by relevance Sort by last modified time
    Searched defs:Mailbox (Results 1 - 21 of 21) sorted by null

  /packages/apps/Email/provider_src/com/android/email/
LegacyConversions.java 44 import com.android.emailcommon.provider.Mailbox;
511 * Infer mailbox type from mailbox name. Used by MessagingController (for live folder sync).
521 Mailbox.TYPE_INBOX);
524 Mailbox.TYPE_OUTBOX);
527 Mailbox.TYPE_DRAFTS);
530 Mailbox.TYPE_TRASH);
533 Mailbox.TYPE_SENT);
536 Mailbox.TYPE_JUNK);
539 return Mailbox.TYPE_MAIL
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
ControllerProviderOpsTests.java 26 import com.android.emailcommon.provider.Mailbox;
68 Mailbox.getSystemMailboxName(mContext, -1);
69 fail("Mailbox.getSystemMailboxName(mContext, -1) succeeded without an exception");
74 assertEquals("Inbox", Mailbox.getSystemMailboxName(mContext, Mailbox.TYPE_INBOX));
75 assertEquals("Outbox", Mailbox.getSystemMailboxName(mContext, Mailbox.TYPE_OUTBOX));
76 assertEquals("Trash", Mailbox.getSystemMailboxName(mContext, Mailbox.TYPE_TRASH));
77 assertEquals("Sent", Mailbox.getSystemMailboxName(mContext, Mailbox.TYPE_SENT))
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
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) {
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DxeDebugAgent/
DxeDebugAgentLib.c 46 It will allocate the NVS memory to store Mailbox and install configuration table
58 DEBUG_AGENT_MAILBOX *Mailbox;
100 DEBUG ((EFI_D_ERROR, "DebugAgent: Cannot install configuration table for mailbox!\n"));
108 // Copy Mailbox and Debug Port Handle buffer to new location in ACPI NVS memory, because original Mailbox
111 Mailbox = GetMailboxPointer ();
112 CopyMem (NewMailbox, Mailbox, sizeof (DEBUG_AGENT_MAILBOX));
113 CopyMem (NewMailbox + 1, (VOID *)(UINTN)Mailbox->DebugPortHandle, PcdGet16(PcdDebugPortHandleBufferSize));
115 // Update Debug Port Handle in new Mailbox
124 DEBUG ((EFI_D_ERROR, "DebugAgent: Failed to install configuration for mailbox!\n"));
    [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/SecPeiDebugAgent/
SecPeiDebugAgentLib.c 119 Get the pointer to location saved Mailbox pointer from IDT entry.
131 // *MailboxLocation is the pointer to Mailbox
138 Set the pointer of Mailbox into IDT entry before memory is ready.
140 @param[in] MailboxLocation Pointer to location saved Mailbox pointer.
152 Get the location of Mailbox pointer from the GUIDed HOB.
154 @return Pointer to the location saved Mailbox pointer.
172 Get Debug Agent Mailbox pointer.
174 @return Mailbox pointer.
185 DEBUG_AGENT_MAILBOX *Mailbox;
188 // Get mailbox from IDT entry firstly
    [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/SmmDebugAgent/
SmmDebugAgentLib.c 64 Get the pointer to Mailbox from the GUIDed HOB.
66 @return Pointer to Mailbox.
76 DEBUG_AGENT_MAILBOX *Mailbox;
83 Mailbox = (DEBUG_AGENT_MAILBOX *)(UINTN)(*MailboxLocation);
84 VerifyMailboxChecksum (Mailbox);
86 return Mailbox;
90 Get Debug Agent Mailbox pointer.
92 @return Mailbox pointer.
160 and initialize debug port. It will get debug agent Mailbox from GUIDed HOB,
161 it it exists, debug agent wiil copied it into the local Mailbox in SMM space.
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/provider/
MailboxTests.java 40 * Unit tests for the Mailbox inner class.
72 /** Returns the number of messages in a mailbox. */
75 ContentUris.withAppendedId(Mailbox.CONTENT_URI, mailboxId),
80 private static Message createMessage(Context c, Mailbox b, boolean starred, boolean read,
94 * Test simple mailbox save/retrieve
99 Account account1 = ProviderTestUtils.setupAccount("mailbox-save", true, c);
101 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, c);
104 Mailbox box2 = Mailbox.restoreMailboxWithId(c, box1Id);
110 * Test delete mailbox
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
mailbox.py 5 # Notes for authors of new mailbox subclasses:
37 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
42 class Mailbox:
46 """Initialize a Mailbox instance."""
143 """Return a count of messages in the mailbox."""
165 raise KeyError('No messages in mailbox')
189 """Lock the mailbox."""
193 """Unlock the mailbox if it is locked."""
197 """Flush and close the mailbox."""
229 class Maildir(Mailbox):
    [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugAgent.c 296 Calculate Mailbox checksum and update the checksum field.
298 @param[in] Mailbox Debug Agent Mailbox pointer.
303 IN DEBUG_AGENT_MAILBOX *Mailbox
306 Mailbox->CheckSum = CalculateCheckSum8 ((UINT8 *)Mailbox, sizeof (DEBUG_AGENT_MAILBOX) - 2);
310 Verify Mailbox checksum.
314 @param[in] Mailbox Debug Agent Mailbox pointer.
319 IN DEBUG_AGENT_MAILBOX *Mailbox
    [all...]
  /external/python/cpython2/Lib/
mailbox.py 3 # Notes for authors of new mailbox subclasses:
35 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
40 class Mailbox:
44 """Initialize a Mailbox instance."""
141 """Return a count of messages in the mailbox."""
163 raise KeyError('No messages in mailbox')
187 """Lock the mailbox."""
191 """Unlock the mailbox if it is locked."""
195 """Flush and close the mailbox."""
242 class Maildir(Mailbox)
    [all...]
  /external/python/cpython3/Lib/
mailbox.py 3 # Notes for authors of new mailbox subclasses:
26 __all__ = ['Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
33 class Mailbox:
37 """Initialize a Mailbox instance."""
139 """Return a count of messages in the mailbox."""
161 raise KeyError('No messages in mailbox')
185 """Lock the mailbox."""
189 """Unlock the mailbox if it is locked."""
193 """Flush and close the mailbox."""
264 class Maildir(Mailbox)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mailbox.py 5 # Notes for authors of new mailbox subclasses:
37 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
42 class Mailbox:
46 """Initialize a Mailbox instance."""
143 """Return a count of messages in the mailbox."""
165 raise KeyError('No messages in mailbox')
189 """Lock the mailbox."""
193 """Unlock the mailbox if it is locked."""
197 """Flush and close the mailbox."""
244 class Maildir(Mailbox)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
mailbox.py 5 # Notes for authors of new mailbox subclasses:
37 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
42 class Mailbox:
46 """Initialize a Mailbox instance."""
143 """Return a count of messages in the mailbox."""
165 raise KeyError('No messages in mailbox')
189 """Lock the mailbox."""
193 """Unlock the mailbox if it is locked."""
197 """Flush and close the mailbox."""
244 class Maildir(Mailbox)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailbox.py 5 # Notes for authors of new mailbox subclasses:
37 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
42 class Mailbox:
46 """Initialize a Mailbox instance."""
143 """Return a count of messages in the mailbox."""
165 raise KeyError('No messages in mailbox')
189 """Lock the mailbox."""
193 """Unlock the mailbox if it is locked."""
197 """Flush and close the mailbox."""
244 class Maildir(Mailbox)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailbox.py 5 # Notes for authors of new mailbox subclasses:
37 __all__ = [ 'Mailbox', 'Maildir', 'mbox', 'MH', 'Babyl', 'MMDF',
42 class Mailbox:
46 """Initialize a Mailbox instance."""
143 """Return a count of messages in the mailbox."""
165 raise KeyError('No messages in mailbox')
189 """Lock the mailbox."""
193 """Unlock the mailbox if it is locked."""
197 """Flush and close the mailbox."""
244 class Maildir(Mailbox)
    [all...]
  /external/python/cpython3/Lib/email/
_header_value_parser.py 696 if self[0].token_type == 'mailbox':
698 elif self[0].token_type == 'invalid-mailbox':
704 if self[0].token_type == 'mailbox':
706 elif self[0].token_type == 'invalid-mailbox':
712 token_type = 'mailbox-list'
716 return [x for x in self if x.token_type=='mailbox']
721 if x.token_type in ('mailbox', 'invalid-mailbox')]
730 if not self or self[0].token_type != 'mailbox-list':
736 if not self or self[0].token_type != 'mailbox-list'
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Mailbox.java 44 public class Mailbox extends EmailContent implements EmailContent.MailboxColumns, Parcelable {
52 * which mailbox to sync. Is intentionally private, we have helper functions
66 * Sync extras key to specify that only a specific mailbox type should be synced.
70 * Sync extras key when syncing a mailbox to specify how many additional messages to sync.
76 public static final String TABLE_NAME = "Mailbox";
83 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/mailbox");
244 * Projection to use when reading {@link MailboxColumns#ACCOUNT_KEY} for a mailbox.
264 // Sentinel values for the mSyncInterval field of both Mailbox records
270 // Ping indicates that the EAS mailbox is synced based on a "ping" from the server
273 // Push-Hold indicates an EAS push or ping Mailbox shouldn't sync just ye
521 Mailbox mailbox = null; local
541 Mailbox mailbox = restoreMailboxForPath(context, accountId, path); local
    [all...]
EmailContent.java 68 * (Mailbox and Email)
189 Mailbox.initMailbox();
664 // Foreign key to the Mailbox holding this message [INDEX]
665 // TODO: This column is used in a complicated way: Usually, this refers to the mailbox
667 // will refer to a special "search" mailbox, which does not exist on the server.
684 // a retrieved message (the messageKey for search results will be a TYPE_SEARCH mailbox
697 // Foreign key to the Mailbox holding this message [INDEX]
698 // In cases where mailboxKey is NOT the real mailbox the server considers this message in,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cdoexm.h 52 typedef class Mailbox Mailbox;
54 typedef struct Mailbox Mailbox;
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 50 import com.android.emailcommon.provider.Mailbox;
153 db.update(Mailbox.TABLE_NAME, values, null, null);
156 /** Returns the number of messages in a mailbox. */
159 ContentUris.withAppendedId(Mailbox.CONTENT_URI, mailboxId),
169 Context c, Mailbox b, boolean starred, boolean read, int flagLoaded) {
361 * Get the value of the unread count in the mailbox of the account.
362 * This can be different from the actual number of unread messages in that mailbox.
368 c = mMockContext.getContentResolver().query(Mailbox.CONTENT_URI,
410 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext);
454 Mailbox box1 = ProviderTestUtils.setupMailbox("box1", account1Id, true, mMockContext)
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/james/apache-mime4j-dom/0.7.2/
apache-mime4j-dom-0.7.2.jar 

Completed in 889 milliseconds