/external/wpa_supplicant_8/src/crypto/ |
D | tls_wolfssl.c | 77 char *domain_match; member 338 os_free(conn->domain_match); in tls_connection_deinit() 385 const char *domain_match) in tls_connection_set_subject_match() argument 411 os_free(conn->domain_match); in tls_connection_set_subject_match() 412 conn->domain_match = NULL; in tls_connection_set_subject_match() 413 if (domain_match) { in tls_connection_set_subject_match() 414 conn->domain_match = os_strdup(domain_match); in tls_connection_set_subject_match() 415 if (!conn->domain_match) in tls_connection_set_subject_match() 959 char *match, *altmatch, *suffix_match, *domain_match; in tls_verify_cb() local 992 domain_match = conn->domain_match; in tls_verify_cb() [all …]
|
D | tls_gnutls.c | 63 char *domain_match; member 287 os_free(conn->domain_match); in tls_connection_deinit() 395 os_free(conn->domain_match); in tls_connection_set_params() 396 conn->domain_match = NULL; in tls_connection_set_params() 397 if (params->domain_match) { in tls_connection_set_params() 398 conn->domain_match = os_strdup(params->domain_match); in tls_connection_set_params() 399 if (conn->domain_match == NULL) in tls_connection_set_params() 403 if (params->domain_match) { in tls_connection_set_params() 1345 if (conn->domain_match && in tls_connection_verify_peer() 1346 !tls_match_suffix(cert, conn->domain_match, 1)) { in tls_connection_verify_peer() [all …]
|
D | tls_openssl.c | 269 char *subject_match, *altsubject_match, *suffix_match, *domain_match; member 1659 os_free(conn->domain_match); in tls_connection_deinit() 2375 char *match, *altmatch, *suffix_match, *domain_match; in tls_verify_cb() local 2406 domain_match = conn->domain_match; in tls_verify_cb() 2537 } else if (depth == 0 && domain_match && in tls_verify_cb() 2538 !tls_match_suffix(err_cert, domain_match, 1)) { in tls_verify_cb() 2540 domain_match); in tls_verify_cb() 2911 const char *domain_match, in tls_connection_set_subject_match() argument 2938 os_free(conn->domain_match); in tls_connection_set_subject_match() 2939 conn->domain_match = NULL; in tls_connection_set_subject_match() [all …]
|
D | tls.h | 189 const char *domain_match; member
|
D | tls_internal.c | 239 if (params->domain_match) { in tls_connection_set_params()
|
/external/python/cpython2/Lib/test/ |
D | 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/ |
D | test_http_cookiejar.py | 15 reach, is_HDN, domain_match, user_domain_match, request_path, 814 self.assertTrue(domain_match("192.168.1.1", "192.168.1.1")) 815 self.assertFalse(domain_match("192.168.1.1", ".168.1.1")) 816 self.assertTrue(domain_match("x.y.com", "x.Y.com")) 817 self.assertTrue(domain_match("x.y.com", ".Y.com")) 818 self.assertFalse(domain_match("x.y.com", "Y.com")) 819 self.assertTrue(domain_match("a.b.c.com", ".c.com")) 820 self.assertFalse(domain_match(".c.com", "a.b.c.com")) 821 self.assertTrue(domain_match("example.local", ".local")) 822 self.assertFalse(domain_match("blah.blah", "")) [all …]
|
/external/wpa_supplicant_8/src/eap_peer/ |
D | eap_config.h | 232 char *domain_match; member
|
D | eap_tls_common.c | 121 params->domain_match = config->domain_match; in eap_tls_cert_params_from_conf()
|
/external/python/cpython2/Lib/ |
D | cookielib.py | 528 def domain_match(A, B): function 717 if not domain_match(req_host, reach(request.get_origin_req_host())): 1038 if not domain_match(erhn, domain): 1150 if cookie.version > 0 and not domain_match(erhn, domain):
|
/external/python/cpython3/Lib/http/ |
D | cookiejar.py | 543 def domain_match(A, B): function 730 if not domain_match(req_host, reach(request.origin_req_host)): 1053 if not domain_match(erhn, domain): 1170 if cookie.version > 0 and not domain_match(erhn, domain):
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | config.c | 2459 { STRe(domain_match, cert.domain_match) }, 2470 { STRe(domain_match2, phase2_cert.domain_match) }, 2499 { STRe(machine_domain_match, machine_cert.domain_match) }, 2760 os_free(cert->domain_match); in eap_peer_config_free_cert()
|
D | config_file.c | 706 STR(domain_match); in wpa_config_write_network()
|
D | ChangeLog | 75 * extended domain_match and domain_suffix_match to allow list of values 76 * fixed dNSName matching in domain_match and domain_suffix_match when 96 * extended domain_match and domain_suffix_match to allow list of values 435 * add domain_match network profile parameter (similar to
|
/external/llvm-project/polly/lib/External/isl/ |
D | isl_union_map.c | 3426 static int domain_match(__isl_keep isl_map *map, __isl_keep isl_space *space) in domain_match() function 3551 return preimage_pw_multi_aff(umap, pma, &domain_match, in isl_union_map_preimage_domain_pw_multi_aff() 3726 return preimage_multi_pw_aff(umap, mpa, &domain_match, in isl_union_map_preimage_domain_multi_pw_aff()
|