/external/autotest/site_utils/ |
D | gmail_lib.py | 133 @param to: The recipients, separated by comma. 195 parser.add_argument('recipients', nargs='*', 198 if not args.recipients or not args.subject: 199 print 'Requires both recipients and subject.' 205 recipients = [] variable 206 for r in args.recipients: 208 recipients.append(r) 209 if recipients: 210 print 'Randomly selected recipients %s' % recipients 212 print 'Random filtering removed all recipients. Sending nothing.' [all …]
|
/external/curl/tests/libtest/ |
D | lib652.c | 34 struct curl_slist *recipients = NULL; in test() local 89 /* Prepare recipients. */ in test() 90 recipients = curl_slist_append(NULL, "someone@example.com"); in test() 91 if(!recipients) { in test() 102 /* Set recipients. */ in test() 103 test_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in test() 122 /* cleanup the recipients. */ in test() 123 curl_slist_free_all(recipients); in test()
|
/external/curl/docs/examples/ |
D | smtp-mail.c | 93 struct curl_slist *recipients = NULL; in main() local 112 /* Add two recipients, in this particular case they correspond to the in main() 115 recipients = curl_slist_append(recipients, TO_ADDR); in main() 116 recipients = curl_slist_append(recipients, CC_ADDR); in main() 117 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main() 134 /* Free the list of recipients */ in main() 135 curl_slist_free_all(recipients); in main()
|
D | smtp-ssl.c | 90 struct curl_slist *recipients = NULL; in main() local 134 /* Add two recipients, in this particular case they correspond to the in main() 137 recipients = curl_slist_append(recipients, TO); in main() 138 recipients = curl_slist_append(recipients, CC); in main() 139 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main() 161 /* Free the list of recipients */ in main() 162 curl_slist_free_all(recipients); in main()
|
D | smtp-tls.c | 90 struct curl_slist *recipients = NULL; in main() local 136 /* Add two recipients, in this particular case they correspond to the in main() 139 recipients = curl_slist_append(recipients, TO); in main() 140 recipients = curl_slist_append(recipients, CC); in main() 141 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main() 163 /* Free the list of recipients */ in main() 164 curl_slist_free_all(recipients); in main()
|
D | smtp-vrfy.c | 47 struct curl_slist *recipients = NULL; in main() local 55 recipients = curl_slist_append(recipients, "<recipient@example.com>"); in main() 56 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main() 66 /* Free the list of recipients */ in main() 67 curl_slist_free_all(recipients); in main()
|
D | smtp-expn.c | 44 struct curl_slist *recipients = NULL; in main() local 52 recipients = curl_slist_append(recipients, "Friends"); in main() 53 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main() 66 /* Free the list of recipients */ in main() 67 curl_slist_free_all(recipients); in main()
|
D | smtp-mime.c | 74 struct curl_slist *recipients = NULL; in main() local 95 /* Add two recipients, in this particular case they correspond to the in main() 98 recipients = curl_slist_append(recipients, TO); in main() 99 recipients = curl_slist_append(recipients, CC); in main() 100 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main() 144 curl_slist_free_all(recipients); in main()
|
D | smtp-multi.c | 109 struct curl_slist *recipients = NULL; in main() local 135 /* Add two recipients, in this particular case they correspond to the in main() 138 recipients = curl_slist_append(recipients, TO); in main() 139 recipients = curl_slist_append(recipients, CC); in main() 140 curl_easy_setopt(curl, CURLOPT_MAIL_RCPT, recipients); in main() 233 /* Free the list of recipients */ in main() 234 curl_slist_free_all(recipients); in main()
|
/external/python/cpython2/Doc/includes/ |
D | email-dir.py | 49 default=[], dest='recipients', 52 if not opts.sender or not opts.recipients: 61 outer['To'] = COMMASPACE.join(opts.recipients) 109 s.sendmail(opts.sender, opts.recipients, composed)
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/ |
D | X0017_StrongEncryptionHeader.java | 35 * RCount 4 bytes Number of recipients. 38 * SRList (var) Simple list of recipients hashed public keys 57 * RCount - This defines the number intended recipients whose 162 * RCount 4 bytes Number of recipients. 165 * <p>RCount - This defines the number intended recipients whose public keys were 199 * REHData HSize Hash of recipients public key
|
/external/python/google-api-python-client/docs/dyn/ |
D | gmail_v1.users.settings.html | 181 …": True or False, # Flag that determines whether responses are sent to recipients who are not in t… 186 …": True or False, # Flag that determines whether responses are sent to recipients who are outside … 282 …": True or False, # Flag that determines whether responses are sent to recipients who are not in t… 287 …": True or False, # Flag that determines whether responses are sent to recipients who are outside … 297 …": True or False, # Flag that determines whether responses are sent to recipients who are not in t… 302 …": True or False, # Flag that determines whether responses are sent to recipients who are outside …
|
D | gmail_v1.users.settings.filters.html | 115 …"to": "A String", # The recipient's display name or email address. Includes recipients in the "to"… 143 …"to": "A String", # The recipient's display name or email address. Includes recipients in the "to"… 189 …"to": "A String", # The recipient's display name or email address. Includes recipients in the "to"… 226 …"to": "A String", # The recipient's display name or email address. Includes recipients in the "to"…
|
D | mirror_v1.subscriptions.html | 119 # - REPLY_ALL - the user replied to all recipients of an item. 166 # - REPLY_ALL - the user replied to all recipients of an item. 221 # - REPLY_ALL - the user replied to all recipients of an item. 277 # - REPLY_ALL - the user replied to all recipients of an item. 324 # - REPLY_ALL - the user replied to all recipients of an item.
|
/external/curl/docs/libcurl/opts/ |
D | CURLOPT_MAIL_RCPT.3 | 26 CURLOPT_MAIL_RCPT \- list of SMTP mail recipients 34 Pass a pointer to a linked list of recipients to pass to the server in your
|
/external/autotest/server/cros/dynamic_suite/ |
D | reporting.py | 173 recipients = ', '.join(to_set) 174 if not recipients: 180 recipients, bug.title(), bug.summary(), retry=False,
|
/external/python/cpython2/Lib/ |
D | smtpd.py | 257 # Resets the sender, recipients, and data, but not the greeting 372 refused = e.recipients 375 # All recipients were refused. If the exception had an associated 416 # Remove all list recipients from rcpttos and forward what we're not 418 # since we don't expect a large number of recipients. 421 # If there's any non-list destined recipients left,
|
/external/python/cpython2/Doc/library/ |
D | smtplib.rst | 113 through the attribute :attr:`recipients`, which is a dictionary of exactly the 299 options to different recipients you have to use the low-level methods such as 324 All recipients were refused. Nobody got the mail. The :attr:`recipients` 326 refused recipients (like the one returned when at least one recipient was
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | 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
|
/external/llvm/lib/Target/ARM/ |
D | 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
|
/external/python/cpython3/Doc/includes/ |
D | email-dir.py | 36 default=[], dest='recipients', 45 msg['To'] = ', '.join(args.recipients)
|
/external/eigen/ |
D | COPYING.MPL2 | 164 the terms of this License. You must inform recipients that the Source 167 attempt to alter or restrict the recipients' rights in the Source Code 175 Form, as described in Section 3.1, and You must inform recipients of 183 the recipients' rights in the Source Code Form under this License. 209 indemnity or liability obligations to one or more recipients of Covered
|
D | NOTICE | 164 the terms of this License. You must inform recipients that the Source 167 attempt to alter or restrict the recipients' rights in the Source Code 175 Form, as described in Section 3.1, and You must inform recipients of 183 the recipients' rights in the Source Code Form under this License. 209 indemnity or liability obligations to one or more recipients of Covered
|
/external/doclava/res/assets/templates-sdk/assets/ |
D | GPL-LICENSE.txt | 34 gratis or for a fee, you must give the recipients all the rights that 46 want its recipients to know that what they have is not the original, so 84 and give any other recipients of the Program a copy of this License 193 restrictions on the recipients' exercise of the rights granted herein.
|
/external/ltp/testcases/kernel/io/disktest/ |
D | LICENSE | 34 for a fee, you must give the recipients all the rights that you have. You 45 recipients to know that what they have is not the original, so that any 81 License and to the absence of any warranty; and give any other recipients 186 recipients' exercise of the rights granted herein. You are not responsible
|