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 | 251 private void constructQueryForBox(SQLiteQueryBuilder qb, int msgBox, String pduTable) { in constructQueryForBox() argument 254 if (msgBox != Mms.MESSAGE_BOX_ALL) { in constructQueryForBox() 255 qb.appendWhere(Mms.MESSAGE_BOX + "=" + msgBox); in constructQueryForBox() 315 int msgBox = Mms.MESSAGE_BOX_ALL; in insert() local 328 msgBox = (Integer) msgBoxObj; in insert() 332 msgBox = Mms.MESSAGE_BOX_INBOX; in insert() 336 msgBox = Mms.MESSAGE_BOX_INBOX; in insert() 339 msgBox = Mms.MESSAGE_BOX_SENT; in insert() 342 msgBox = Mms.MESSAGE_BOX_DRAFTS; in insert() 345 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() 1615 final Integer msgBox = MESSAGE_BOX_MAP.get(to); in move() local 1616 if (msgBox == null) { in move() 1626 values.put(Mms.MESSAGE_BOX, msgBox); in move()
|
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/ |
D | TelephonyBackupAgentTest.java | 297 int textOnly, int msgBox, in createMmsRow() argument 312 mmsRow.put(Telephony.Mms.MESSAGE_BOX, String.valueOf(msgBox)); in createMmsRow()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapContent.java | 3694 int msgBox, threadId; in getMmsMessage() local 3714 msgBox = c.getInt(c.getColumnIndex(Mms.MESSAGE_BOX)); in getMmsMessage() 3716 message.setFolder(getFolderName(msgBox, threadId)); in getMmsMessage()
|
D | BluetoothMapContentObserver.java | 2199 int msgBox = c.getInt(c.getColumnIndex(Mms.MESSAGE_BOX)); in unDeleteMessageMms() local 2200 if (msgBox == Mms.MESSAGE_BOX_INBOX) { in unDeleteMessageMms()
|