Lines Matching refs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
63 * necessarily be cloned for use in these two cases.
65 * Conventions used in naming columns:
122 * in the ContentResolver in case it is not properly disposed of using {@link #close(Context)}
160 * String for both the EmailProvider call, and the key for the value in the response.
449 // Replied-to or forwarded body (in html form)
452 // Replied-to or forwarded body (in text form)
455 // A reference to a message's unique id used in reply/forward.
456 // Protocol code can be expected to use this column in determining whether a message can be
628 // These get overwritten below if we find a file descriptor in the respond() call,
629 // but we'll keep this here in case we want to construct a matrix cursor or something
639 // Basic columns used in message list presentation
640 // The name as shown to the user in a message list
642 // The time (millis) as shown to the user in a message list [INDEX]
660 // The message-id in the message's header
663 // References to other Email objects in the database
665 // TODO: This column is used in a complicated way: Usually, this refers to the mailbox
666 // the server considers this message to be in. In the case of search results, this key
679 // Meeting invitation related information (for now, start time in ms)
696 // References to other Email objects in the database
698 // In cases where mailboxKey is NOT the real mailbox the server considers this message in,
700 // We'd like to get rid of this column when the other changes mentioned in that bug
826 * number of messages in the message list, but it should be transient...
841 /** Selection to retrieve all messages in "inbox" for any account */
849 /** Selection to retrieve all messages in "drafts" for any account */
857 /** Selection to retrieve all messages in "outbox" for any account */
864 /** Selection to retrieve unread messages in "inbox" for any account */
868 /** Selection to retrieve unread messages in "inbox" for one account */
872 /** Selection to retrieve all messages in "inbox" for one account */
881 // _id field is in AbstractContent
907 // For now, just the start time of a meeting invite, in ms
921 * persisted in the database.
934 // Values used in mFlagRead
938 // Values used in mFlagLoaded
945 // Bits used in mFlags
984 // Flag used in draftInfo to indicate that the reference message should be appended
1079 // This logic is in place so I can (a) short circuit the expensive stuff when
1089 // Call update, rather than super.update in case we ever override it
1108 // Skip over the first two items in the result array
1182 // Put our message id in the Body
1298 // The size of the attachment in bytes
1318 // Content that is actually contained in the Attachment row
1402 // Attachments with an empty URI that are in an inbox
1409 // Bits used in mFlags
1424 // Indicates that the attachment download failed in a non-recoverable manner
1509 * Creates a unique file in the external store by appending a hyphen
1617 public Attachment(Parcel in) {
1619 mId = in.readLong();
1620 mFileName = in.readString();
1621 mMimeType = in.readString();
1622 mSize = in.readLong();
1623 mContentId = in.readString();
1624 mContentUri = in.readString();
1625 mCachedFileUri = in.readString();
1626 mMessageKey = in.readLong();
1627 mLocation = in.readString();
1628 mEncoding = in.readString();
1629 mContent = in.readString();
1630 mFlags = in.readInt();
1631 mAccountKey = in.readLong();
1632 final int contentBytesLen = in.readInt();
1637 in.readByteArray(mContentBytes);
1639 mUiState = in.readInt();
1640 mUiDestination = in.readInt();
1641 mUiDownloadedSize = in.readInt();
1647 public EmailContent.Attachment createFromParcel(Parcel in) {
1648 return new EmailContent.Attachment(in);
1676 // The default sync frequency for this account, in minutes
1711 // information is now found in the Policy table; POLICY_KEY (below) is the foreign key
1761 // Visibility of this folder in a list of folders [INDEX]
1770 // Number of messages locally available in the mailbox.
1772 // The last time a message in this mailbox has been read (in millis)
1792 // The total number of messages in the remote mailbox
1794 // The full hierarchical name of this folder, in the form a/b/c
1813 // A domain or path, if required (used in IMAP and EAS)
1838 // that we store them in the Policy structure