Home
last modified time | relevance | path

Searched refs:mBoxId (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Mms/src/com/android/mms/ui/
DMessageItem.java71 final int mBoxId; field in MessageItem
140 mBoxId = cursor.getInt(columnsMap.mColumnSmsType); in MessageItem()
142 if (Sms.isOutgoingFolder(mBoxId)) { in MessageItem()
164 mBoxId = cursor.getInt(columnsMap.mColumnMmsMessageBox); in MessageItem()
230 && (mBoxId == Mms.MESSAGE_BOX_INBOX in isMe()
231 || mBoxId == Mms.MESSAGE_BOX_ALL); in isMe()
233 && (mBoxId == Sms.MESSAGE_TYPE_INBOX in isMe()
234 || mBoxId == Sms.MESSAGE_TYPE_ALL); in isMe()
239 boolean isOutgoingMms = isMms() && (mBoxId == Mms.MESSAGE_BOX_OUTBOX); in isOutgoingMessage()
241 && ((mBoxId == Sms.MESSAGE_TYPE_FAILED) in isOutgoingMessage()
[all …]
DComposeMessageActivity.java1068 (msgItem.mBoxId == Sms.MESSAGE_TYPE_OUTBOX ||
1069 msgItem.mBoxId == Sms.MESSAGE_TYPE_FAILED)) {
1088 switch (msgItem.mBoxId) {
DMessageListItem.java323 boolean isSelf = Sms.isOutgoingFolder(mMessageItem.mBoxId); in bindCommonMessage()