HomeSort by relevance Sort by last modified time
    Searched full:recipientids (Results 1 - 3 of 3) sorted by null

  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsProvider.java 567 private void insertThread(String recipientIds, int numberOfRecipients) {
572 values.put(ThreadsColumns.RECIPIENT_IDS, recipientIds);
580 " for recipientIds " + /*recipientIds*/ "xxxxxxx");
596 String recipientIds = "";
601 recipientIds = Long.toString(addressId);
604 recipientIds = getSpaceSeparatedNumbers(getSortedSet(addressIds));
608 Log.d(LOG_TAG, "getThreadId: recipientIds (selectionArgs) =" +
609 /*recipientIds*/ "xxxxxxx");
612 String[] selectionArgs = new String[] { recipientIds };
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessageUtils.java 424 * @parameter recipientIds space-separated list of ids
426 public static String getRecipientsByIds(Context context, String recipientIds,
428 String value = sRecipientAddress.get(recipientIds);
432 if (!TextUtils.isEmpty(recipientIds)) {
434 context, recipientIds, allowQuery);
443 sRecipientAddress.put(recipientIds, value);
450 String[] recipientIds = recipients.split(" ");
452 for (String recipientId : recipientIds) {
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 619 String recipientIds = c.getString(RECIPIENT_IDS);
620 ContactList recipients = ContactList.getByIds(recipientIds, allowQuery);
626 LogTag.debug("fillFromCursor: conv=" + conv + ", recipientIds=" + recipientIds);
    [all...]

Completed in 1344 milliseconds