Searched refs:msgBox (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Messaging/src/com/android/messaging/mmslib/util/ |
D | PduCache.java | 97 HashSet<Uri> msgBox = mMessageBoxes.get(msgBoxId); in put() local 98 if (msgBox == null) { in put() 99 msgBox = new HashSet<Uri>(); in put() 100 mMessageBoxes.put(msgBoxId, msgBox); in put() 113 msgBox.add(finalKey); in put() 218 HashSet<Uri> msgBox = mMessageBoxes.get(msgBoxId); in purgeByMessageBox() local 220 if (msgBox != null) { in purgeByMessageBox() 221 for (Uri key : msgBox) { in purgeByMessageBox() 257 HashSet<Uri> msgBox = mThreads.get(Long.valueOf(entry.getMessageBox())); in removeFromMessageBoxes() local 258 if (msgBox != null) { in removeFromMessageBoxes() [all …]
|
D | PduCacheEntry.java | 27 public PduCacheEntry(GenericPdu pdu, int msgBox, long threadId) { in PduCacheEntry() argument 29 mMessageBox = msgBox; in PduCacheEntry()
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
D | MmsProvider.java | 317 private void constructQueryForBox(SQLiteQueryBuilder qb, int msgBox, String pduTable) { in constructQueryForBox() argument 320 if (msgBox != Mms.MESSAGE_BOX_ALL) { in constructQueryForBox() 321 qb.appendWhere(Mms.MESSAGE_BOX + "=" + msgBox); in constructQueryForBox() 374 int msgBox = Mms.MESSAGE_BOX_ALL; in insert() local 396 msgBox = (Integer) msgBoxObj; in insert() 400 msgBox = Mms.MESSAGE_BOX_INBOX; in insert() 404 msgBox = Mms.MESSAGE_BOX_INBOX; in insert() 407 msgBox = Mms.MESSAGE_BOX_SENT; in insert() 410 msgBox = Mms.MESSAGE_BOX_DRAFTS; in insert() 413 msgBox = Mms.MESSAGE_BOX_OUTBOX; in insert() [all …]
|
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/ |
D | PduPersister.java | 566 int msgBox = 0; in load() local 602 msgBox = c.getInt(PDU_COLUMN_MESSAGE_BOX); in load() 627 cacheEntry = new PduCacheEntry(pdu, msgBox, threadId); in load() 1623 final Integer msgBox = MESSAGE_BOX_MAP.get(to); in move() local 1624 if (msgBox == null) { in move() 1634 values.put(Mms.MESSAGE_BOX, msgBox); in move()
|
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/ |
D | TelephonyBackupAgentTest.java | 408 int textOnly, int msgBox, in createMmsRow() argument 426 mmsRow.put(Telephony.Mms.MESSAGE_BOX, String.valueOf(msgBox)); in createMmsRow()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/ |
D | BluetoothMapContent.java | 3979 int msgBox, threadId; in getMmsMessage() local 4000 msgBox = c.getInt(c.getColumnIndex(Mms.MESSAGE_BOX)); in getMmsMessage() 4002 message.setFolder(getFolderName(msgBox, threadId)); in getMmsMessage()
|
D | BluetoothMapContentObserver.java | 2749 int msgBox = c.getInt(c.getColumnIndex(Mms.MESSAGE_BOX)); in unDeleteMessageMms() local 2750 if (msgBox == Mms.MESSAGE_BOX_INBOX) { in unDeleteMessageMms()
|