HomeSort by relevance Sort by last modified time
    Searched refs:domain_match (Results 1 - 15 of 15) sorted by null

  /external/wpa_supplicant_8/src/eap_peer/
eap_config.h 281 * domain_match - Constraint for server domain name
299 char *domain_match; member in struct:eap_peer_config
407 * This field is like domain_match, but used for phase 2 (inside
eap_tls_common.c 121 params->domain_match = config->domain_match;
145 params->domain_match = config->domain_match2;
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_gnutls.c 63 char *domain_match; member in struct:tls_connection
287 os_free(conn->domain_match);
395 os_free(conn->domain_match);
396 conn->domain_match = NULL;
397 if (params->domain_match) {
398 conn->domain_match = os_strdup(params->domain_match);
399 if (conn->domain_match == NULL)
403 if (params->domain_match) {
404 wpa_printf(MSG_INFO, "GnuTLS: domain_match not supported")
    [all...]
tls_wolfssl.c 76 char *domain_match; member in struct:tls_connection
337 os_free(conn->domain_match);
384 const char *domain_match)
410 os_free(conn->domain_match);
411 conn->domain_match = NULL;
412 if (domain_match) {
413 conn->domain_match = os_strdup(domain_match);
414 if (!conn->domain_match)
952 char *match, *altmatch, *suffix_match, *domain_match; local
    [all...]
tls.h 127 * @domain_match: String to match in the dNSName or CN of the peer
185 const char *domain_match; member in struct:tls_connection_params
tls_openssl.c 249 char *subject_match, *altsubject_match, *suffix_match, *domain_match; member in struct:tls_connection
2280 char *match, *altmatch, *suffix_match, *domain_match; local
    [all...]
tls_internal.c 239 if (params->domain_match) {
240 wpa_printf(MSG_INFO, "TLS: domain_match not supported");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_cookielib.py 677 from cookielib import domain_match, user_domain_match
678 self.assertTrue(domain_match("192.168.1.1", "192.168.1.1"))
679 self.assertTrue(not domain_match("192.168.1.1", ".168.1.1"))
680 self.assertTrue(domain_match("x.y.com", "x.Y.com"))
681 self.assertTrue(domain_match("x.y.com", ".Y.com"))
682 self.assertTrue(not domain_match("x.y.com", "Y.com"))
683 self.assertTrue(domain_match("a.b.c.com", ".c.com"))
684 self.assertTrue(not domain_match(".c.com", "a.b.c.com"))
685 self.assertTrue(domain_match("example.local", ".local"))
686 self.assertTrue(not domain_match("blah.blah", ""))
    [all...]
  /external/python/cpython2/Lib/test/
test_cookielib.py 705 from cookielib import domain_match, user_domain_match
706 self.assertTrue(domain_match("192.168.1.1", "192.168.1.1"))
707 self.assertFalse(domain_match("192.168.1.1", ".168.1.1"))
708 self.assertTrue(domain_match("x.y.com", "x.Y.com"))
709 self.assertTrue(domain_match("x.y.com", ".Y.com"))
710 self.assertFalse(domain_match("x.y.com", "Y.com"))
711 self.assertTrue(domain_match("a.b.c.com", ".c.com"))
712 self.assertFalse(domain_match(".c.com", "a.b.c.com"))
713 self.assertTrue(domain_match("example.local", ".local"))
714 self.assertFalse(domain_match("blah.blah", "")
    [all...]
  /external/python/cpython3/Lib/test/
test_http_cookiejar.py 14 reach, is_HDN, domain_match, user_domain_match, request_path,
767 self.assertTrue(domain_match("192.168.1.1", "192.168.1.1"))
768 self.assertFalse(domain_match("192.168.1.1", ".168.1.1"))
769 self.assertTrue(domain_match("x.y.com", "x.Y.com"))
770 self.assertTrue(domain_match("x.y.com", ".Y.com"))
771 self.assertFalse(domain_match("x.y.com", "Y.com"))
772 self.assertTrue(domain_match("a.b.c.com", ".c.com")
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cookielib.py 512 def domain_match(A, B): function
701 if not domain_match(req_host, reach(request.get_origin_req_host())):
    [all...]
  /external/python/cpython2/Lib/
cookielib.py 528 def domain_match(A, B): function
717 if not domain_match(req_host, reach(request.get_origin_req_host())):
    [all...]
  /external/python/cpython3/Lib/http/
cookiejar.py 536 def domain_match(A, B): function
723 if not domain_match(req_host, reach(request.origin_req_host)):
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_file.c 788 STR(domain_match);
    [all...]
config.c     [all...]

Completed in 1310 milliseconds