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

123

/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
H A Dx509_vpm.c151 if (paramid->email)
153 OPENSSL_free(paramid->email);
154 paramid->email = NULL;
314 if (test_x509_verify_param_copy_id(email, NULL))
316 if (!X509_VERIFY_PARAM_set1_email(dest, id->email, id->emaillen))
492 const char *email, size_t emaillen)
494 return int_x509_param_set1(&param->id->email, &param->id->emaillen,
495 email, emaillen);
491 X509_VERIFY_PARAM_set1_email(X509_VERIFY_PARAM *param, const char *email, size_t emaillen) argument
/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/trace-viewer/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/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
H A Dlist_people.cc17 cout << " E-mail address: " << person.email() << endl;
/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/lldb/utils/test/
H A Dras.py4 Run the test suite and send the result as an email message.
7 http://docs.python.org/library/email-examples.html.
19 from email import encoders
20 from email.message import Message
21 from email.mime.audio import MIMEAudio
22 from email.mime.base import MIMEBase
23 from email.mime.image import MIMEImage
24 from email.mime.multipart import MIMEMultipart
25 from email.mime.text import MIMEText
50 # This will be used as the subject line of our email abou
[all...]
/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/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);
/external/llvm/utils/
H A Dwciia.py63 email = line[2:].strip() variable
64 code_owner['email'] = email
/external/clang/tools/scan-view/
H A DReporter.py26 import email, mimetypes, smtplib namespace
27 from email import encoders
28 from email.message import Message
29 from email.mime.base import MIMEBase
30 from email.mime.multipart import MIMEMultipart
31 from email.mime.text import MIMEText
82 # Lifted from python email module examples.
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/
H A Dextras_appengine_auth_models_test.py16 email = model.StringProperty() variable in class:User
150 # Create the unique username, auth_id and email.
168 def create_user(username, auth_id, email):
172 unique_email = 'User.email:%s' % email
174 # Create the unique username, auth_id and email.
179 user = User(username=username, auth_id=auth_id, email=email)
191 'exists' % email)
H A Dextras_appengine_users_test.py10 def set_current_user(email, user_id, is_admin=False):
11 os.environ['USER_EMAIL'] = email or ''
/external/google-breakpad/src/testing/gtest/scripts/
H A Dupload.py66 """Prompts the user for their email address and returns it.
68 The last used email address is saved to a file and offered up as a suggestion
70 used email address is used. If the user enters a new address, it is saved
84 email = raw_input(prompt + ": ").strip()
85 if email:
88 last_email_file.write(email)
93 email = last_email
94 return email
134 (email, password) tuple when called. Will be called if authentication
172 def _GetAuthToken(self, email, passwor
[all...]
/external/google-breakpad/src/testing/scripts/
H A Dupload.py66 """Prompts the user for their email address and returns it.
68 The last used email address is saved to a file and offered up as a suggestion
70 used email address is used. If the user enters a new address, it is saved
84 email = raw_input(prompt + ": ").strip()
85 if email:
88 last_email_file.write(email)
93 email = last_email
94 return email
134 (email, password) tuple when called. Will be called if authentication
172 def _GetAuthToken(self, email, passwor
[all...]
/external/markdown/markdown/
H A Dinlinepatterns.py351 email = m.group(2)
352 if email.startswith("mailto:"):
353 email = email[len("mailto:"):]
363 letters = [codepoint2name(ord(letter)) for letter in email]
366 mailto = "mailto:" + email
/external/libpng/contrib/gregbook/
H A Dwritepng.h105 char *email; member in struct:_mainprog_info
/external/libxml2/example/
H A Dgjobread.c34 xmlChar *email; member in struct:person
69 ret->email = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
84 if (cur->email) printf(" email: %s\n", cur->email);
/external/nanopb-c/tests/basic_stream/
H A Ddecode_stream.c26 printf("email: \"%s\"\n", person.email);

Completed in 916 milliseconds

123