/external/valgrind/nightly/conf/ |
cellbuzz-cross.sendmail | 7 recipients="valgrind-developers@lists.sourceforge.net" 8 #recipients="bvanassche@acm.org" 11 mutt -s "$1" -a "$3.gz" ${recipients} < "$2" 14 mutt -s "$1" ${recipients} < "$2"
|
cellbuzz-native.sendmail | 7 recipients="valgrind-developers@lists.sourceforge.net" 8 #recipients="bvanassche@acm.org" 11 mutt -s "$1" -a "$3.gz" ${recipients} < "$2" 14 mutt -s "$1" ${recipients} < "$2"
|
/external/curl/docs/examples/ |
smtp-expn.c | 38 struct curl_slist *recipients = NULL; local 46 recipients = curl_slist_append(recipients, "Friends"); 47 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); 60 /* Free the list of recipients */ 61 curl_slist_free_all(recipients);
|
smtp-vrfy.c | 41 struct curl_slist *recipients = NULL; local 49 recipients = curl_slist_append(recipients, "<recipient@example.com>"); 50 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); 60 /* Free the list of recipients */ 61 curl_slist_free_all(recipients);
|
smtp-mail.c | 82 struct curl_slist *recipients = NULL; local 100 /* Add two recipients, in this particular case they correspond to the 103 recipients = curl_slist_append(recipients, TO); 104 recipients = curl_slist_append(recipients, CC); 105 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); 122 /* Free the list of recipients */ 123 curl_slist_free_all(recipients);
|
smtp-ssl.c | 83 struct curl_slist *recipients = NULL; local 126 /* Add two recipients, in this particular case they correspond to the 129 recipients = curl_slist_append(recipients, TO); 130 recipients = curl_slist_append(recipients, CC); 131 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); 153 /* Free the list of recipients */ 154 curl_slist_free_all(recipients);
|
smtp-tls.c | 83 struct curl_slist *recipients = NULL; local 128 /* Add two recipients, in this particular case they correspond to the 131 recipients = curl_slist_append(recipients, TO); 132 recipients = curl_slist_append(recipients, CC); 133 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); 155 /* Free the list of recipients */ 156 curl_slist_free_all(recipients);
|
smtp-multi.c | 102 struct curl_slist *recipients = NULL; local 128 /* Add two recipients, in this particular case they correspond to the 131 recipients = curl_slist_append(recipients, TO); 132 recipients = curl_slist_append(recipients, CC); 133 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); 227 /* Free the list of recipients */ 228 curl_slist_free_all(recipients);
|
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/ |
GetOrCreateConversationActionTest.java | 53 final ArrayList<String> recipients = new ArrayList<String>(); local 54 recipients.add("5551234567"); 55 recipients.add("5551234568"); 62 for (final String recipient : recipients) { 67 final long threadId = MmsUtils.getOrCreateThreadId(mContext, recipients); 114 assertEquals("Participant count mismatch", recipients.size(), 117 assertTrue(recipients.contains(participant.getSendDestination())); 131 assertTrue(recipients.contains(participant.getSendDestination())); 136 assertEquals("Cursor count mismatch", recipients.size(), cursor.getCount() - countSelf);
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
InsertNewMessageAction.java | 76 public static void insertNewMessage(final int subId, final String recipients, 79 subId, recipients, messageText, subject); 89 private static final String KEY_RECIPIENTS = "recipients"; 104 private InsertNewMessageAction(final int subId, final String recipients, 107 if (TextUtils.isEmpty(recipients) || TextUtils.isEmpty(messageText)) { 108 Assert.fail("InsertNewMessageAction: Can't have empty recipients or message"); 111 actionParameters.putString(KEY_RECIPIENTS, recipients); 147 final ArrayList<String> recipients = local 149 if (recipients.size() < 1) { 150 LogUtil.w(TAG, "InsertNewMessageAction: message recipients is empty") 258 final ArrayList<String> recipients = local [all...] |
GetOrCreateConversationAction.java | 67 final String[] recipients, final Object data, final LaunchConversationData listener) { 69 for (String recipient : recipients) { 99 final ArrayList<String> recipients = local 103 recipients); 107 LogUtil.sanitizePII(recipients.toString()));
|
/packages/apps/Messaging/src/com/android/messaging/sms/ |
MmsSmsUtils.java | 153 final Set<String> recipients = new HashSet<String>(); local 155 recipients.add(recipient); 156 return getOrCreateThreadId(context, recipients); 160 * Given the recipients list and subject of an unsaved message, 165 * Find the thread ID of the same set of recipients (in 170 final Context context, final Set<String> recipients) { 173 for (String recipient : recipients) { 200 + LogUtil.sanitizePII(recipients.toString()));
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/compat/ |
TelephonyThreadsCompat.java | 81 Set<String> recipients = new HashSet<String>(); local 83 recipients.add(recipient); 84 return getOrCreateThreadIdInternal(context, recipients); 88 * Given the recipients list and subject of an unsaved message, 93 * <p>Find the thread ID of the same set of recipients (in any order, 97 private static long getOrCreateThreadIdInternal(Context context, Set<String> recipients) { 100 for (String recipient : recipients) {
|
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/ |
LaunchConversationActivity.java | 64 String[] recipients = UriUtil.parseRecipientsFromSmsMmsUri(intent.getData()); local 67 if (recipients == null && (haveAddress || haveEmail)) { 69 recipients = new String[] { intent.getStringExtra(ADDRESS) }; 71 recipients = new String[] { intent.getStringExtra(Intent.EXTRA_EMAIL) }; 85 if (recipients != null) { 87 mBinding.getData().getOrCreateConversation(mBinding, recipients); 89 // No recipients were specified in the intent.
|
MessageDetailsDialog.java | 296 final List<String> recipients = MmsUtils.getRecipientsByThread(threadId); local 297 if (recipients != null) { 299 details.append("Thread recipients: "); 300 details.append(recipients.toString()); 303 final String from = MmsUtils.getMmsSender(recipients, mms.getUri()); 314 final StringBuilder recipients = new StringBuilder(); local 330 if (recipients.length() > 0) { 331 recipients.append(RECIPIENT_SEPARATOR); 333 recipients.append(phoneNumber); 336 return recipients.toString() [all...] |
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/ |
Camera2CaptureCallbackSplitter.java | 38 * @param recipients The listeners to notify. Any {@code null} passed here 41 public Camera2CaptureCallbackSplitter(CaptureCallback... recipients) { 42 for (CaptureCallback listener : recipients) {
|
/frameworks/opt/chips/res/values/ |
strings.xml | 17 <!-- Text displayed when the recipientedittextview is not focused. Displays the total number of recipients since the field is shrunk to just display a portion --> 19 <!-- Text displayed when the user long presses on a chip to copy the recipients email address [CHAR LIMIT=200] --> 29 <!-- Description for the delete button that removes the selected contact from the recipients [CHAR LIMIT=100] --> 30 <string name="dropdown_delete_button_desc">Remove <xliff:g id="contact">%s</xliff:g> from recipients</string>
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
SyncManager.java | 383 // Cache of thread->recipients map 422 final List<String> recipients = getThreadRecipients(threadId); local 424 BugleDatabaseOperations.getConversationParticipantsFromRecipients(recipients, 451 * Load the recipients of a thread from telephony provider. If we fail, use 457 List<String> recipients = mThreadToRecipients.get(threadId); local 458 if (recipients == null) { 459 recipients = MmsUtils.getRecipientsByThread(threadId); 460 if (recipients != null && recipients.size() > 0) { 461 mThreadToRecipients.put(threadId, recipients); [all...] |
/prebuilts/go/darwin-x86/src/text/template/ |
example_test.go | 31 var recipients = []Recipient{ 41 for _, r := range recipients {
|
/prebuilts/go/linux-x86/src/text/template/ |
example_test.go | 31 var recipients = []Recipient{ 41 for _, r := range recipients {
|
/packages/apps/UnifiedEmail/src/com/android/mail/print/ |
PrintUtils.java | 176 final StringBuilder recipients = new StringBuilder(); local 180 buildEmailDiv(res, recipients, replyTo, REPLY_TO_DIV_START, DIV_END, 191 recipients.append(DIV_START).append(res.getString(R.string.draft_heading)) 194 buildEmailDiv(res, recipients, to, DIV_START, DIV_END, 200 buildEmailDiv(res, recipients, cc, DIV_START, DIV_END, 205 buildEmailDiv(res, recipients, bcc, DIV_START, DIV_END, 208 return recipients.toString(); 214 private static void buildEmailDiv(Resources res, StringBuilder recipients, String emailList, 217 recipients.append(divStart).append(res.getString(headingId))
|
/external/autotest/site_utils/ |
gmail_lib.py | 124 @param to: The recipients, separated by comma. 180 parser.add_argument('recipients', nargs='*', 183 if not args.recipients or not args.subject: 184 print 'Requires both recipients and subject.' 188 send_email(','.join(args.recipients), args.subject , message_text)
|
prodcertstatus_checker.py | 25 'recipients.', dest='to', type='string', default='') 27 'recipients.', dest='cc', type='string', default='')
|
/external/curl/docs/libcurl/opts/ |
CURLOPT_MAIL_RCPT.3 | 25 CURLOPT_MAIL_RCPT \- list of SMTP mail recipients 33 Pass a pointer to a linked list of recipients to pass to the server in your
|
/external/llvm/lib/Target/ARM/ |
LICENSE.TXT | 22 Agreement, ARM hereby grants to you and to recipients of the Software 29 Agreement, ARM hereby grants you and to recipients of the Software
|