/third_party/node/lib/internal/crypto/ |
H A D | x509.js | 313 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 D | extension.rs | 468 /// 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 D | tests.rs | 110 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 D | add_codereview_message.py | 42 # 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 D | test_smtplib.py | 2 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 D | test_httpservers.py | 19 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 D | test_mailbox.py | 6 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 D | test__encoded_words.py | 2 from email import _encoded_words as _ew 3 from email import errors
|
H A D | test_defect_handling.py | 4 from email import policy 5 from email import errors
|
H A D | test_headerregistry.py | 4 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 D | writepng.h | 105 char *email; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
H A D | x509v3.c | 27 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 D | x509v3.h | 37 char *email; /* emailAddress */ member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
H A D | x509v3.c | 27 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 D | x509v3.h | 37 char *email; /* emailAddress */ member
|
/third_party/python/Lib/email/ |
H A D | headerregistry.py | 1 """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 D | feedparser.py | 3 # 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.py | 47 from email import errors
|
/third_party/python/Lib/test/test_importlib/import_/ |
H A D | test_path.py | 107 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 D | help_about.py | 88 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 D | request.py | 86 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 D | commit-queue.sh | 31 git config --local user.email "github-bot@iojs.org"
|
/third_party/rust/crates/clap/clap_complete/examples/ |
H A D | completion-derive.rs | 66 email: Option<String>,
|
/third_party/mesa3d/src/freedreno/rnn/ |
H A D | rnn.h | 34 char* email; member
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | x509_local.h | 35 char *email; /* If not NULL email address to match */ member
|