Searched refs:email (Results 51 - 75 of 147) sorted by relevance

123456

/external/webrtc/webrtc/common_audio/signal_processing/
H A Dspl_sqrt_floor_arm.S2 @ Written by Wilco Dijkstra, 1996. The following email exchange establishes the
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
H A Dutils.py52 import email.mime.multipart namespace
53 import email.mime.base namespace
54 import email.mime.text namespace
55 import email.utils namespace
56 import email.encoders namespace
631 email.utils.formatdate(), msg)
809 msg = email.mime.multipart.MIMEMultipart()
813 msg['Date'] = email.utils.formatdate(localtime=True)
817 msg.attach(email.mime.text.MIMEText(body))
820 part = email
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DPKIXNameConstraintValidator.java482 String email = extractNameAsString(((GeneralSubtree)it.next())
487 if (email != null)
489 intersect.add(email);
499 intersectEmail(email, _permitted, intersect);
506 private Set unionEmail(Set excluded, String email) argument
510 if (email == null)
514 excluded.add(email);
526 unionEmail(_excluded, email, union);
748 private void checkPermittedEmail(Set permitted, String email) argument
762 if (emailIsConstrained(email, st
777 checkExcludedEmail(Set excluded, String email) argument
902 emailIsConstrained(String email, String constraint) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidator.java213 String email = extractNameAsString(((GeneralSubtree)it.next())
218 if (email != null)
220 intersect.add(email);
230 intersectEmail(email, _permitted, intersect);
237 private Set unionEmail(Set excluded, String email) argument
241 if (email == null)
245 excluded.add(email);
257 unionEmail(_excluded, email, union);
479 private void checkPermittedEmail(Set permitted, String email) argument
493 if (emailIsConstrained(email, st
508 checkExcludedEmail(Set excluded, String email) argument
635 emailIsConstrained(String email, String constraint) argument
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/
H A Dupload-diffs.py113 """Prompts the user for their email address and returns it.
115 The last used email address is saved to a file and offered up as a suggestion
117 used email address is used. If the user enters a new address, it is saved
131 email = raw_input(prompt + ": ").strip()
132 if email:
135 last_email_file.write(email)
140 email = last_email
141 return email
189 (email, password) tuple when called. Will be called if authentication
233 def _GetAuthToken(self, email, passwor
[all...]
/external/autotest/contrib/
H A Dsheriff_host_utils.py14 --email someone@something.com
50 parser.add_argument('--email', default=None, help='send results to email.')
161 if args.email:
162 mail.send('', args.email, '',
/external/autotest/site_utils/
H A Dcollect_host_stats.py100 parser.add_argument('-e', '--email', dest='email', default=None,
101 help='Email any errors to the given email address.')
130 if options.email and errors:
131 gmail_lib.send_email(options.email,
H A Dtest_push.py180 parser.add_argument('-e', '--email', dest='email', default=None,
548 # Send out email about the test failure.
549 if arguments.email:
551 arguments.email,
560 # Send out email about test completed successfully.
561 if arguments.email:
563 arguments.email,
/external/chromium-trace/catapult/dashboard/dashboard/
H A Demail_template.py126 """Gets the contents of the email to send once a perf try job completes."""
186 """Gets all of the email addresses to send mail to for a Sheriff.
188 This includes both the general email address of the sheriff rotation,
189 which is often a mailing list, and the email address of the particular
196 A comma-separated list of email addresses; this will be an empty string
197 if there are no email addresses.
199 receivers = [sheriff.email] if sheriff.email else []
207 """Gets the email address of the sheriff on duty for a sheriff rotation.
213 A comma-separated list of email addresse
[all...]
H A Dsend_stoppage_alert_emails_test.py32 email='foo@chromium.org', id='Foo', patterns=['*/*/*/*'],
H A Drequest_handler.py63 display_username = user.email()
H A Dtest_owner.py14 set of its owners' email.
75 owner_email: An email string.
106 owner_dict: A dictionary of "Master/Test suite" to set of owners' email.
121 owner_email: Optional email string. If not specified, dict entry
184 raise ValueError('Owner\'s email is too long: %s.' % owner_email)
/external/chromium-trace/catapult/third_party/Paste/paste/exceptions/
H A Dreporter.py4 from email.mime.text import MIMEText
5 from email.mime.multipart import MIMEMultipart
/external/guice/util/
H A Dgenerate-latest-docs.sh16 git config --global user.email "travis@travis-ci.org"
/external/chromium-trace/catapult/third_party/WebOb/webob/
H A Ddatetime_utils.py10 from email.utils import (
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
H A Dbatch.py5 import email.generator as generator namespace
6 import email.mime.multipart as mime_multipart namespace
7 import email.mime.nonmultipart as mime_nonmultipart namespace
8 import email.parser as email_parser namespace
/external/boringssl/src/crypto/x509v3/
H A Dv3_utl.c80 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email);
525 ASN1_IA5STRING *email; local
529 /* Now add any email address(es) to STACK */
535 email = X509_NAME_ENTRY_get_data(ne);
536 if(!append_ia5(&ret, email)) return NULL;
552 static int append_ia5(STACK_OF(OPENSSL_STRING) **sk, ASN1_IA5STRING *email)
556 if(email->type != V_ASN1_IA5STRING) return 1;
557 if(!email->data || !email->length) return 1;
561 if(sk_OPENSSL_STRING_find(*sk, NULL, (char *)email
[all...]
H A Dv3_alt.c130 X509V3_add_value_uchar("email",gen->d.ia5->data, &ret);
200 BIO_printf(out, "email:%s",gen->d.ia5->data);
324 if(!name_cmp(cnf->name, "email") && cnf->value &&
327 } else if(!name_cmp(cnf->name, "email") && cnf->value &&
343 /* Copy any email addresses in a certificate or request to
350 ASN1_IA5STRING *email = NULL; local
364 /* Now add any email address(es) to STACK */
369 email = M_ASN1_IA5STRING_dup(X509_NAME_ENTRY_get_data(ne));
376 if(!email || !(gen = GENERAL_NAME_new())) {
380 gen->d.ia5 = email;
[all...]
/external/regex-re2/lib/codereview/
H A Dcodereview.py980 # Person <email>
981 # Person <email> <alt-email>
982 # The first email address is the one used in commit logs.
988 email = m.group(2)[1:-1]
989 contributors[email.lower()] = (name, email)
991 contributors[extra[1:-1].lower()] = (name, email)
1019 user, email = contributors[user]
1020 return email, "
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python3/httplib2/
H A D__init__.py31 import email namespace
32 import email.utils namespace
33 import email.message namespace
34 import email.feedparser namespace
293 date = calendar.timegm(email.utils.parsedate_tz(response_headers['date']))
302 expires = email.utils.parsedate_tz(response_headers['expires'])
343 from email.header import Header
366 info = email.message.Message()
1166 info = email.message.Message()
1174 info = email
[all...]
/external/chromium-trace/catapult/dashboard/dashboard/models/
H A Dtry_job.py28 email = ndb.StringProperty() variable in class:TryJob
/external/skia/tools/lua/
H A Dtrigger_ct_lua54 parser.add_argument('--email',
56 'the value of `git config user.email` is used.'))
64 # If the user provided their email address, use that. Otherwise obtain it
66 user = args.email
68 user = subprocess.check_output(['git', 'config', 'user.email']).rstrip()
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dx509v3.h37 char *email; /* emailAddress */ member in struct:x509_name
/external/wpa_supplicant_8/src/tls/
H A Dx509v3.h37 char *email; /* emailAddress */ member in struct:x509_name
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dx509v3.h37 char *email; /* emailAddress */ member in struct:x509_name

Completed in 2961 milliseconds

123456