Searched refs:email (Results 1 - 25 of 147) sorted by relevance

123456

/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-edgedata/
H A Dscript_multi_import.py23 import email namespace
26 import email namespace
/external/boringssl/src/crypto/x509/
H A Dvpm_int.h66 char *email; /* If not NULL email address to match */ member in struct:X509_VERIFY_PARAM_ID_st
/external/autotest/client/site_tests/telemetry_LoginTest/
H A Dtelemetry_LoginTest.py26 email = login_status['email']
29 return (is_regular_user, email)
40 (is_regular_user, email) = self._get_login_status(cr)
43 if email != cr.username:
44 raise error.TestFail('user email mismatch %s' % email)
/external/chromium-trace/catapult/dashboard/dashboard/models/
H A Dsheriff_test.py27 # If the given email address is not valid, an assertion error
30 sheriff.Sheriff(email='oops')
34 sheriff.Sheriff(email='some+thing@yahoo.com').put()
35 # If the Sheriff is internal only, the email address domain must be within
36 # the set of allowed email address domains.
37 sheriff.Sheriff(internal_only=True, email='my-alerts@google.com').put()
38 sheriff.Sheriff(internal_only=True, email='alerts@chromium.org').put()
43 entity = sheriff.Sheriff(internal_only=True, email='x@notgoogle.com')
H A Dsheriff.py14 # Acceptable suffixes for internal-only sheriff rotation email addresses.
47 """Validates an email address property."""
48 # Note, this doesn't check the domain of the email address;
51 raise ValidationError('Invalid email %s' % val)
57 # Many perf sheriff email addresses are stored at a url. If there is a url
58 # specified here, it will be used as the perf sheriff address. But the email
61 email = ndb.StringProperty(validator=_EmailValidator, indexed=False) variable in class:Sheriff
80 if (self.internal_only and self.email
81 and not _IsAllowedInternalOnlyEmail(self.email)):
82 raise ValidationError('Invalid internal sheriff email
[all...]
/external/chromium-trace/catapult/dashboard/dashboard/
H A Dbad_bisect.py49 email = user.email()
52 if email not in job.bad_result_emails:
53 job.bad_result_emails.add(email)
55 _LogFeedback(try_job_id, email)
64 def _LogFeedback(try_job_id, email):
67 message = '%s marked try job %d.' % (email, try_job_id)
H A Dlist_monitored_tests_test.py37 def _AddSheriff(self, name, email=None, url=None,
41 id=name, email=email, url=url, internal_only=internal_only,
H A Dauto_triage_test.py72 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put()
85 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put()
98 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put()
111 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put()
124 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put()
142 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put()
171 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put()
199 sheriff_key = sheriff.Sheriff(email='a@google.com', id='sheriff_key').put()
H A Dedit_sheriffs.py19 url: A URL at which there is a list of email addresses to send mail to.
20 email: An email address to send mail to, possibly a mailing list.
34 'email': sheriff_entity.email or '',
57 sheriff_entity.email = self.request.get('email') or None
/external/autotest/client/cros/
H A Dservice_login.js11 gaia.chromeOSLogin.attemptLogin = function(email, password, attemptToken) {
14 'email': email,
31 var email = emailFormElement.value;
35 gaia.chromeOSLogin.attemptLogin(email, passwd, attemptToken);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-javamail.jar ... org/apache/tools/ant/taskdefs/ org/apache/tools/ant/taskdefs/email/ org/apache/tools/ant/taskdefs/email/MimeMailer$SimpleAuthenticator. ...
/external/chromium-trace/catapult/catapult_build/
H A Dappengine_deploy.py47 email = _Run(['git', 'config', '--get', 'user.email'])
48 username = email[0:email.find('@')]
/external/chromium-trace/catapult/third_party/Paste/tests/
H A Dtest_httpserver.py1 import email namespace
25 wsgi_handler.headers = email.message_from_string('Host: mywebsite')
41 wsgi_handler.headers = email.message_from_string('Host: host1\nHost: host2')
/external/autotest/client/common_lib/
H A Dmail.py1 import os, email, smtplib namespace
6 Send out a plain old text email. It uses sendmail by default, but
10 from_address: the email address to put in the "From:" field
12 strings to put in the "To:" field of the email
14 strings to put in the "Cc:" field of the email
15 subject: the email subject
16 message_body: the body of the email. there's no special
30 message = email.Message.Message()
H A Dmail_unittest.py4 import mail, email namespace
54 message = email.Message.Message()
/external/protobuf/examples/
H A Dadd_person.cc20 cout << "Enter email address (blank for none): ";
21 string email; local
22 getline(cin, email);
23 if (!email.empty()) {
24 person->set_email(email);
H A Dadd_person.py13 email = raw_input("Enter email address (blank for none): ")
14 if email != "":
15 person.email = email
H A DAddPerson.java25 stdout.print("Enter email address (blank for none): ");
26 String email = stdin.readLine();
27 if (email.length() > 0) {
28 person.setEmail(email);
H A Dlist_people.py13 if person.HasField('email'):
14 print " E-mail address:", person.email
/external/google-breakpad/src/common/linux/
H A Dgoogle_crashdump_uploader.h50 const string& email,
62 const string& email,
75 const string& email,
H A Dgoogle_crashdump_uploader.cc48 const string& email,
60 email,
74 const string& email,
86 email,
100 const string& email,
112 email_ = email;
189 parameters_["email"] = email_;
43 GoogleCrashdumpUploader(const string& product, const string& version, const string& guid, const string& ptime, const string& ctime, const string& email, const string& comments, const string& minidump_pathname, const string& crash_server, const string& proxy_host, const string& proxy_userpassword) argument
69 GoogleCrashdumpUploader(const string& product, const string& version, const string& guid, const string& ptime, const string& ctime, const string& email, const string& comments, const string& minidump_pathname, const string& crash_server, const string& proxy_host, const string& proxy_userpassword, LibcurlWrapper* http_layer) argument
95 Init(const string& product, const string& version, const string& guid, const string& ptime, const string& ctime, const string& email, const string& comments, const string& minidump_pathname, const string& crash_server, const string& proxy_host, const string& proxy_userpassword, LibcurlWrapper* http_layer) argument
/external/skia/tools/
H A Dadd_codereview_message.py42 # Passing None for the email and password will result in a prompt or
44 my_rietveld = rietveld.Rietveld(RIETVELD_URL, email=None, password=None)
/external/autotest/server/cros/dynamic_suite/
H A Dreporting_utils.py127 for email in emails:
128 if not email or not cls.EMAIL_REGEX.match(email):
130 'Invalid email address: %s.' % email)
153 template[email_attribute] = [email for email in value
154 if email]
/external/google-breakpad/src/client/linux/sender/
H A Dgoogle_crash_report_sender.cc51 DEFINE_string(email, "",
52 "The user's email address.");
/external/nanopb-c/tests/basic_buffer/
H A Ddecode_buffer.c30 printf("email: \"%s\"\n", person.email);

Completed in 812 milliseconds

123456