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 | 254 private void constructQueryForBox(SQLiteQueryBuilder qb, int msgBox, String pduTable) { in constructQueryForBox() argument 257 if (msgBox != Mms.MESSAGE_BOX_ALL) { in constructQueryForBox() 258 qb.appendWhere(Mms.MESSAGE_BOX + "=" + msgBox); in constructQueryForBox() 310 int msgBox = Mms.MESSAGE_BOX_ALL; in insert() local 323 msgBox = (Integer) msgBoxObj; in insert() 327 msgBox = Mms.MESSAGE_BOX_INBOX; in insert() 331 msgBox = Mms.MESSAGE_BOX_INBOX; in insert() 334 msgBox = Mms.MESSAGE_BOX_SENT; in insert() 337 msgBox = Mms.MESSAGE_BOX_DRAFTS; in insert() 340 msgBox = Mms.MESSAGE_BOX_OUTBOX; in insert() [all …]
|
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/ |
D | PduPersister.java | 565 int msgBox = 0; in load() local 601 msgBox = c.getInt(PDU_COLUMN_MESSAGE_BOX); in load() 626 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 | 370 int textOnly, int msgBox, in createMmsRow() argument 388 mmsRow.put(Telephony.Mms.MESSAGE_BOX, String.valueOf(msgBox)); in createMmsRow()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapContent.java | 3996 int msgBox, threadId; in getMmsMessage() local 4017 msgBox = c.getInt(c.getColumnIndex(Mms.MESSAGE_BOX)); in getMmsMessage() 4019 message.setFolder(getFolderName(msgBox, threadId)); in getMmsMessage()
|
D | BluetoothMapContentObserver.java | 2291 int msgBox = c.getInt(c.getColumnIndex(Mms.MESSAGE_BOX)); in unDeleteMessageMms() local 2292 if (msgBox == Mms.MESSAGE_BOX_INBOX) { in unDeleteMessageMms()
|