Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
DPduPersister.java185 private static final HashMap<Uri, Integer> MESSAGE_BOX_MAP; field in PduPersister
199 MESSAGE_BOX_MAP = new HashMap<Uri, Integer>();
200 MESSAGE_BOX_MAP.put(Mms.Inbox.CONTENT_URI, Mms.MESSAGE_BOX_INBOX); in MESSAGE_BOX_MAP.put()
201 MESSAGE_BOX_MAP.put(Mms.Sent.CONTENT_URI, Mms.MESSAGE_BOX_SENT); in MESSAGE_BOX_MAP.put()
202 MESSAGE_BOX_MAP.put(Mms.Draft.CONTENT_URI, Mms.MESSAGE_BOX_DRAFTS); in MESSAGE_BOX_MAP.put()
203 MESSAGE_BOX_MAP.put(Mms.Outbox.CONTENT_URI, Mms.MESSAGE_BOX_OUTBOX); in MESSAGE_BOX_MAP.put()
1254 if (!existingUri && MESSAGE_BOX_MAP.get(uri) == null) { in persist()
1513 Integer msgBox = MESSAGE_BOX_MAP.get(to); in move()