HomeSort by relevance Sort by last modified time
    Searched refs:recipients (Results 1 - 14 of 14) sorted by null

  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 73 private ContactList mRecipients; // The current set of recipients.
106 * Create a new conversation with no recipients. {@link #setRecipients} can
135 public static Conversation get(Context context, ContactList recipients, boolean allowQuery) {
136 // If there are no recipients in the list, make a new conversation.
137 if (recipients.size() < 1) {
141 Conversation conv = Cache.get(recipients);
145 long threadId = getOrCreateThreadId(context, recipients);
149 if (!conv.getRecipients().equals(recipients)) {
150 Log.e(TAG, "Conversation.get: new conv's recipients don't match input recpients "
151 + /*recipients*/ "xxxxxxx")
475 HashSet<String> recipients = new HashSet<String>(); local
620 ContactList recipients = ContactList.getByIds(recipientIds, allowQuery); local
    [all...]
WorkingMessage.java 79 public static final String EXTRA_SMS_RECIPIENTS = "android.mms.extra.RECIPIENTS";
659 // Make sure our working set of recipients is resolved
671 * Resolve the temporary working set of recipients to a ContactList.
675 ContactList recipients = ContactList.getByNumbers(mWorkingRecipients, false); local
676 mConversation.setRecipients(recipients); // resets the threadId to zero
686 ContactList recipients = ContactList.getByNumbers(mWorkingRecipients, false); local
687 return recipients.serialize();
852 * Update the temporary list of recipients, used when setting up a
    [all...]
  /packages/apps/Mms/tests/src/com/android/mms/
RecyclerTest.java 47 * example: adb push ~/recipients /data/data/com.android.mms/files
55 * example: adb push ~/recipients /data/data/com.android.mms/files
106 // Read in list of recipients
109 Log.v(TAG, "Loading recipients");
110 FileInputStream recipients = context.openFileInput("recipients"); local
112 while ((c = recipients.read()) != -1) {
123 recipients.close();
124 Log.v(TAG, "Loaded recipients: " + mRecipients.size());
126 Log.e(TAG, "can't open recipients file at /data/data/com.android.mms/files/recipients")
    [all...]
  /packages/apps/Mms/tests/src/com/android/mms/ui/
LongThreadTest.java 45 * example: adb push ~/recipients /data/data/com.android.mms/files
99 // Read in list of recipients
102 Log.v(TAG, "Loading recipients");
103 FileInputStream recipients = a.openFileInput("recipients"); local
105 while ((c = recipients.read()) != -1) {
116 recipients.close();
117 Log.v(TAG, "Loaded recipients: " + mRecipients.size());
119 Log.e(TAG, "can't open recipients file at /data/data/com.android.mms/files/recipients");
    [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 276 TextWatcher[] recipients = null; local
279 recipients = sendTextWillChange(start, end - start,
352 sendTextChange(recipients, start, end - start, tbend - tbstart);
353 sendTextHasChanged(recipients);
400 sendTextChange(recipients, start, end - start, tbend - tbstart);
401 sendTextHasChanged(recipients);
442 TextWatcher[] recipients; local
444 recipients = sendTextWillChange(start, end - start,
502 sendTextChange(recipients, start, origlen, inserted);
503 sendTextHasChanged(recipients);
    [all...]
  /frameworks/base/core/java/android/provider/
Telephony.java 743 * The address of the recipients.
749 * The address of the cc. recipients.
755 * The address of the bcc. recipients.
1219 Set<String> recipients = new HashSet<String>(); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationList.java 386 ContactList recipients = conv.getRecipients();
387 menu.setHeaderTitle(recipients.formatNames(","));
395 if (recipients.size() == 1) {
397 if (recipients.get(0).existsInDatabase()) {
ComposeMessageActivity.java 157 * address String The addresses of the recipients in current conversation.
241 private RecipientsEditor mRecipientsEditor; // UI control for editing recipients
255 // think the message list is empty, thus show the recipients
264 private int mLastRecipientCount; // Used for warning the user on too many recipients.
604 // If we have gone to zero recipients, disable send button.
617 // only when the actual # of recipients changes.
659 // Context menu handlers for the recipients editor.
1607 ContactList recipients = getRecipients(); local
2252 ContactList recipients = getRecipients(); local
2273 ContactList recipients = getRecipients(); local
3231 String recipients = bundle.getString("recipients"); local
    [all...]
MessageUtils.java 447 private static StringBuilder extractIdsToAddresses(Context context, String recipients,
450 String[] recipientIds = recipients.split(" ");
    [all...]
  /frameworks/base/core/java/com/google/android/mms/pdu/
PduPersister.java 872 HashSet<String> recipients = new HashSet<String>(); local
1094 HashSet<String> recipients = new HashSet<String>(); local
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsProvider.java 188 AUTHORITY, "conversations/#/recipients",
303 List<String> recipients = uri.getQueryParameters("recipient"); local
305 cursor = getThreadId(recipients);
590 * recipients IDs. If no thread exists with this ID, create
594 private synchronized Cursor getThreadId(List<String> recipients) {
595 Set<Long> addressIds = getAddressIds(recipients);
619 Log.d(LOG_TAG, "getThreadId: create new thread_id for recipients " +
620 /*recipients*/ "xxxxxxxx");
621 insertThread(recipientIds, recipients.size());
    [all...]
  /external/dbus/bus/
dispatch.c 75 DBusList *recipients; local
95 recipients = NULL;
98 &recipients))
104 link = _dbus_list_get_first_link (&recipients);
115 link = _dbus_list_get_next_link (&recipients, link);
118 _dbus_list_clear (&recipients);
    [all...]
  /external/dnsmasq/contrib/dnslist/
dnslist.pl 302 gratis or for a fee, you must give the recipients all the rights that
314 want its recipients to know that what they have is not the original, so
352 and give any other recipients of the Program a copy of this License
461 restrictions on the recipients' exercise of the rights granted herein.
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]

Completed in 508 milliseconds