Searched defs:recipients (Results 1 - 2 of 2) sorted by relevance

/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
H A DMmsSmsProvider.java214 AUTHORITY, "conversations/#/recipients",
326 List<String> recipients = uri.getQueryParameters("recipient");
328 cursor = getThreadId(recipients);
608 * recipients IDs. If no thread exists with this ID, create
612 private synchronized Cursor getThreadId(List<String> recipients) { argument
613 Set<Long> addressIds = getAddressIds(recipients);
637 Log.d(LOG_TAG, "getThreadId: create new thread_id for recipients " +
638 /*recipients*/ "xxxxxxxx");
639 insertThread(recipientIds, recipients.size());
917 * Return the union of MMS and SMS messages whose recipients
[all...]
/packages/apps/Mms/src/com/android/mms/data/
H A DConversation.java80 private ContactList mRecipients; // The current set of recipients.
121 * Create a new conversation with no recipients. {@link #setRecipients} can
156 public static Conversation get(Context context, ContactList recipients, boolean allowQuery) { argument
158 Log.v(TAG, "Conversation get by recipients: " + recipients.serialize());
160 // If there are no recipients in the list, make a new conversation.
161 if (recipients.size() < 1) {
165 Conversation conv = Cache.get(recipients);
169 long threadId = getOrCreateThreadId(context, recipients);
173 if (!conv.getRecipients().equals(recipients)) {
[all...]

Completed in 1737 milliseconds