/bind-9.6-ESV-R11/lib/dns/rdata/generic/ |
H A D | tlsa_52.h | 30 isc_uint8_t match; member in struct:dns_rdata_tlsa
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/ |
H A D | text_test.cpp | 136 ATF_TEST_CASE(match); variable 137 ATF_TEST_CASE_HEAD(match) 139 set_md_var("descr", "Tests the match function"); 141 ATF_TEST_CASE_BODY(match) 143 using atf::text::match; 145 ATF_REQUIRE_THROW(std::runtime_error, match("", "[")); 147 ATF_REQUIRE(match("", "")); 148 ATF_REQUIRE(!match("foo", "")); 150 ATF_REQUIRE(match("", ".*")); 151 ATF_REQUIRE(match("", "[ [all...] |
H A D | text.cpp | 58 impl::match(const std::string& str, const std::string& regex) function in class:impl
|
/bind-9.6-ESV-R11/bin/named/ |
H A D | sortlist.c | 110 /* No match; don't sort. */ 119 int match; local 123 &match, NULL); 124 if (match > 0) 125 return (match); 126 else if (match < 0) 127 return (INT_MAX - (-match));
|
H A D | interfacemgr.c | 450 * both match those of 'addr'. Return a pointer to it, or NULL if not found. 747 int match; local 774 &mgr->aclenv, &match, NULL); 775 if (match <= 0) 801 match = 0; 807 NULL, &match, NULL); 808 if (match > 0 && 813 match = 0; 815 if (ipv6_wildcard == ISC_TRUE && match == 0)
|
H A D | controlconf.c | 224 int match; local 229 &ns_g_server->aclenv, &match, NULL); 231 if (result != ISC_R_SUCCESS || match <= 0)
|
H A D | statschannel.c | 1046 int match; local 1054 &match, NULL) == ISC_R_SUCCESS && match > 0) {
|
H A D | client.c | 822 int match; local 837 &match, NULL) == ISC_R_SUCCESS && 838 match > 0) 1221 int match; local 1227 &match, NULL); 1228 if (result == ISC_R_SUCCESS && match > 0) 1277 isc_boolean_t match; local 1283 match = dst_key_compare(mykey->key, key->key); 1285 if (!match) 1392 int match; local 2218 int match; local 2583 int match; local [all...] |
/bind-9.6-ESV-R11/lib/dns/ |
H A D | order.c | 110 match(dns_name_t *name1, dns_name_t *name2) { function 132 if (match(name, dns_fixedname_name(&ent->name)))
|
H A D | acl.c | 180 * For a match with a positive ACL element or iptable radix entry, 181 * return with a positive value in match; for a match with a negated ACL 182 * element or radix entry, return with a negative value in match. 189 int *match, 213 /* Always match with host addresses. */ 218 /* Assume no match. */ 219 *match = 0; 224 /* Found a match. */ 228 *match 185 dns_acl_match(const isc_netaddr_t *reqaddr, const dns_name_t *reqsigner, const dns_acl_t *acl, const dns_aclenv_t *env, int *match, const dns_aclelement_t **matchelt) argument [all...] |
H A D | request.c | 491 int match; local 499 NULL, &match, NULL) == ISC_R_SUCCESS && 500 match > 0)
|
H A D | dispatch.c | 1137 int match; local 1229 NULL, &match, NULL) == ISC_R_SUCCESS && 1230 match > 0) 1273 * the ID and the address must match the expected ones. 1293 "response to an exclusive socket doesn't match"); 1309 * Check that the socket types and ports match. 2216 * Don't match wildcard ports unless the port is available in the 2226 * Check if we match the binding <address,port>. 2227 * Wildcard ports match/fail here. 2235 * Check if we match [all...] |
H A D | resolver.c | 2860 int match; local 2864 &match, NULL) == ISC_R_SUCCESS && 2865 match > 0) 7742 * Don't match fetch contexts that are shutting down.
|
H A D | zone.c | 4624 * Delete all NSEC3PARAM records which match that in nsec3chain. 8956 int match = 0; local 9004 "NOTIFY zone does not match"); 9038 &match, NULL) == ISC_R_SUCCESS && 9039 match > 0)
|
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/ |
H A D | aliaslist.c | 79 static int match(const char *pattern, const char *str); 262 if (match(current->pattern, pattern)) { 278 match(const char *pattern, const char *str) { function 286 while (!match(pattern, str)) {
|
/bind-9.6-ESV-R11/bin/tests/dst/ |
H A D | dst_test.c | 108 isc_boolean_t match; local 130 match = ISC_TF(r1.length == r2.length && 133 match ? "true" : "false"); 201 printf("secrets don't match\n");
|
/bind-9.6-ESV-R11/bin/check/ |
H A D | check-tool.c | 112 * This needs to match the list in bin/named/log.c. 190 isc_boolean_t match; local 274 match = ISC_FALSE; 280 match = ISC_TRUE; 284 if (!match && !logged(namebuf, ERR_EXTRA_A)) { 304 match = ISC_FALSE; 310 match = ISC_TRUE; 314 if (!match && !logged(namebuf, ERR_EXTRA_AAAA)) { 349 match = ISC_FALSE; 354 while (result == ISC_R_SUCCESS && !match) { [all...] |
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/ |
H A D | tests.cpp | 120 detail::match(const std::string& regexp, const std::string& str) function in class:detail 122 return atf::text::match(str, regexp);
|
/bind-9.6-ESV-R11/bin/tests/names/ |
H A D | t_names.c | 592 isc_boolean_t match; local 617 match = ISC_FALSE; 619 match = ISC_TRUE; 620 if (match != csh_match) { 626 match = ISC_FALSE; 628 match = ISC_TRUE; 629 if (match != cish_match) { 677 * name1, name2, exp match value if 679 * exp match value of case_sensitive false 1293 * If they don't match, dns_name_getlabe [all...] |
/bind-9.6-ESV-R11/bin/dig/ |
H A D | dighost.c | 2907 debug("got a match for ixfr"); 2947 isc_boolean_t match = ISC_TRUE; local 3030 * We don't expect a match when the packet is 3044 match = ISC_FALSE; 3050 match = ISC_FALSE; 3074 match = ISC_TRUE; 3086 if (!match) 3143 match = ISC_TRUE; 3145 result == ISC_R_SUCCESS && match; 3172 match [all...] |