Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/google/android/mms/util/
DPduCache.java97 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.remove(msgBoxId); in purgeByMessageBox() local
219 if (msgBox != null) { in purgeByMessageBox()
220 for (Uri key : msgBox) { in purgeByMessageBox()
256 HashSet<Uri> msgBox = mThreads.get(Long.valueOf(entry.getMessageBox())); in removeFromMessageBoxes() local
257 if (msgBox != null) { in removeFromMessageBoxes()
[all …]
DPduCacheEntry.java27 public PduCacheEntry(GenericPdu pdu, int msgBox, long threadId) { in PduCacheEntry() argument
29 mMessageBox = msgBox; in PduCacheEntry()
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
DPduPersister.java530 int msgBox = 0; in load() local
564 msgBox = c.getInt(PDU_COLUMN_MESSAGE_BOX); in load()
673 cacheEntry = new PduCacheEntry(pdu, msgBox, threadId); in load()
1531 Integer msgBox = MESSAGE_BOX_MAP.get(to); in move() local
1532 if (msgBox == null) { in move()
1541 values.put(Mms.MESSAGE_BOX, msgBox); in move()