Home
last modified time | relevance | path

Searched refs:email (Results 76 - 100 of 204) sorted by relevance

123456789

/third_party/node/lib/internal/crypto/
H A Dx509.js313 checkEmail(email, options) {
314 validateString(email, 'email');
315 return this[kHandle].checkEmail(email, getFlags(options));
/third_party/rust/crates/rust-openssl/openssl/src/x509/
H A Dextension.rs468 /// Sets the `email` flag.
469 pub fn email(&mut self, email: &str) -> &mut SubjectAlternativeName { in email() functions
470 self.items.push(RustGeneralName::Email(email.to_string())); in email()
H A Dtests.rs110 let email = subject in test_nid_values()
114 assert_eq!(email.data().as_slice(), b"test@example.com"); in test_nid_values()
127 let email = all_entries.next().unwrap(); in test_nameref_iterator()
129 email.object().nid().as_raw(), in test_nameref_iterator()
132 assert_eq!(email.data().as_slice(), b"test@example.com"); in test_nameref_iterator()
170 assert_eq!(Some("test@example.com"), subject_alt_names[3].email()); in test_subject_alt_name()
258 subject_alt_names_iter.next().unwrap().email(), in test_subject_alt_name_iter()
/third_party/skia/tools/
H A Dadd_codereview_message.py42 # Passing None for the email and auth_config will result in a prompt or
44 my_rietveld = rietveld.Rietveld(RIETVELD_URL, email=None, auth_config=None)
/third_party/python/Lib/test/
H A Dtest_smtplib.py2 import email.mime.text namespace
3 from email.message import EmailMessage
4 from email.base64mime import body_encode as encode_base64
5 import email.utils namespace
497 m = email.mime.text.MIMEText('A test message')
519 m = email.mime.text.MIMEText('A test message')
556 m = email.mime.text.MIMEText('A test message')
585 m = email.mime.text.MIMEText('A test message')
616 m = email.mime.text.MIMEText('A test message')
645 m = email
[all...]
H A Dtest_httpservers.py19 import email.message namespace
20 import email.utils namespace
375 self.last_modif_header = email.utils.formatdate(
555 headers = email.message.Message()
562 headers = email.message.Message()
563 headers['If-Modified-Since'] = email.utils.format_datetime(new_dt,
573 headers = email.message.Message()
574 headers['If-Modified-Since'] = email.utils.format_datetime(old_dt,
582 headers = email.message.Message()
H A Dtest_mailbox.py6 import email namespace
7 import email.message namespace
32 self.assertIsInstance(msg, email.message.Message)
40 self.assertIsInstance(part, email.message.Message)
75 keys.append(self._box.add(email.message_from_string(_sample_message)))
121 support.patch(self, email.generator.BytesGenerator, 'flatten', raiser)
123 self._box.add(email.message_from_string("From: Alphöso"))
543 for input in (email.message_from_string(_sample_message),
1146 message = email.message.Message()
1384 # Initialize based on email
[all...]
/third_party/python/Lib/test/test_email/
H A Dtest__encoded_words.py2 from email import _encoded_words as _ew
3 from email import errors
H A Dtest_defect_handling.py4 from email import policy
5 from email import errors
H A Dtest_headerregistry.py4 from email import errors
5 from email import policy
6 from email.message import Message
8 from email import headerregistry
9 from email.headerregistry import Address, Group
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
H A Dwritepng.h105 char *email; member
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dx509v3.c27 os_free(name->email); in x509_free_name()
28 name->email = NULL; in x509_free_name()
173 res = x509_str_compare(a->email, b->email); in x509_name_compare()
412 os_free(name->email); in x509_parse_name()
413 name->email = os_malloc(hdr.length + 1); in x509_parse_name()
414 if (name->email == NULL) { in x509_parse_name()
418 os_memcpy(name->email, hdr.payload, hdr.length); in x509_parse_name()
419 name->email[hdr.length] = '\0'; in x509_parse_name()
526 if (name->email) { in x509_name_string()
[all...]
H A Dx509v3.h37 char *email; /* emailAddress */ member
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dx509v3.c27 os_free(name->email); in x509_free_name()
28 name->email = NULL; in x509_free_name()
173 res = x509_str_compare(a->email, b->email); in x509_name_compare()
406 os_free(name->email); in x509_parse_name()
407 name->email = os_malloc(hdr.length + 1); in x509_parse_name()
408 if (name->email == NULL) { in x509_parse_name()
412 os_memcpy(name->email, hdr.payload, hdr.length); in x509_parse_name()
413 name->email[hdr.length] = '\0'; in x509_parse_name()
520 if (name->email) { in x509_name_string()
[all...]
H A Dx509v3.h37 char *email; /* emailAddress */ member
/third_party/python/Lib/email/
H A Dheaderregistry.py1 """Representing and manipulating email headers via custom objects.
8 from email import utils
9 from email import errors
10 from email import _header_value_parser as parser
15 """Create an object representing a full email address.
37 # keyword. The email library code itself must always supply username
H A Dfeedparser.py3 # Contact: email-sig@python.org
5 """FeedParser - An email feed parser.
7 The feed parser implements an interface for incrementally parsing an email
9 those reading email messages off a socket.
26 from email import errors
27 from email._policybase import compat32
139 """A feed-style parser of email."""
153 from email.message import Message
H A D_encoded_words.py47 from email import errors
/third_party/python/Lib/test/test_importlib/import_/
H A Dtest_path.py107 email = sys.modules.pop('email', missing)
113 module = self.importlib.import_module('email')
116 if email is not missing:
117 sys.modules['email'] = email
/third_party/python/Lib/idlelib/
H A Dhelp_about.py88 email = Label(frame_background, text='email: idle-dev@python.org',
90 email.grid(row=6, column=0, columnspan=2, sticky=W, padx=10, pady=0)
/third_party/python/Lib/urllib/
H A Drequest.py86 import email namespace
1499 import email.utils namespace
1507 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
1509 headers = email.message_from_string(
1579 headers = email.message_from_string(headers)
1666 headers = email.message_from_string("Content-type: %s\nContent-length: %d\n" %
2009 import email.utils namespace
2018 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
2020 headers = email.message_from_string(
2092 headers = email
[all...]
/third_party/node/tools/actions/
H A Dcommit-queue.sh31 git config --local user.email "github-bot@iojs.org"
/third_party/rust/crates/clap/clap_complete/examples/
H A Dcompletion-derive.rs66 email: Option<String>,
/third_party/mesa3d/src/freedreno/rnn/
H A Drnn.h34 char* email; member
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx509_local.h35 char *email; /* If not NULL email address to match */ member

Completed in 24 milliseconds

123456789