/netbsd-src/external/mpl/bind/dist/bin/tests/system/rpzrecurse/ |
H A D | README | 12 These tests check RPZ recursion behavior (including skipping 13 recursion when appropriate). 27 recursion was attempted. This also allows us to not worry about having 44 Group 1 - testing skipping recursion for a single policy zone with only 45 records that allow recursion to be skipped 49 1 query, expected to skip recursion 53 2 queries, q01 is expected to skip recursion, q02 is expected to 58 1 query, expected to skip recursion 60 Group 2 - testing skipping recursion with multiple policy zones when all 61 zones have only trigger types eligible to skip recursion with [all …]
|
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/ |
H A D | rust-demangle.c | 78 unsigned int recursion; member 680 if (rdm->recursion != RUST_NO_RECURSION_LIMIT) in demangle_path() 682 ++ rdm->recursion; in demangle_path() 683 if (rdm->recursion > RUST_MAX_RECURSION_COUNT) in demangle_path() 798 if (rdm->recursion != RUST_NO_RECURSION_LIMIT) in demangle_path() 799 -- rdm->recursion; in demangle_path() 891 if (rdm->recursion != RUST_NO_RECURSION_LIMIT) in demangle_type() 893 ++ rdm->recursion; in demangle_type() 894 if (rdm->recursion > RUST_MAX_RECURSION_COUNT) in demangle_type() 899 -- rdm->recursion; in demangle_type() [all …]
|
/netbsd-src/external/gpl3/binutils/dist/libiberty/ |
H A D | rust-demangle.c | 78 unsigned int recursion; member 680 if (rdm->recursion != RUST_NO_RECURSION_LIMIT) in demangle_path() 682 ++ rdm->recursion; in demangle_path() 683 if (rdm->recursion > RUST_MAX_RECURSION_COUNT) in demangle_path() 798 if (rdm->recursion != RUST_NO_RECURSION_LIMIT) in demangle_path() 799 -- rdm->recursion; in demangle_path() 891 if (rdm->recursion != RUST_NO_RECURSION_LIMIT) in demangle_type() 893 ++ rdm->recursion; in demangle_type() 894 if (rdm->recursion > RUST_MAX_RECURSION_COUNT) in demangle_type() 899 -- rdm->recursion; in demangle_type() [all …]
|
/netbsd-src/sys/arch/ofppc/stand/ofwboot/ |
H A D | mbr.c | 96 struct disklabel *lp, uint32_t off0, uint8_t ptype, int recursion) in find_mbr_part() argument 110 if (recursion++ <= 1) in find_mbr_part() 116 recursion--; in find_mbr_part() 121 buf, lp, off0, ptype, recursion); in find_mbr_part() 123 recursion--; in find_mbr_part() 128 recursion--; in find_mbr_part()
|
/netbsd-src/sys/arch/shark/stand/ofwboot/ |
H A D | ofdev.c | 192 static int recursion; in search_label() local 201 if (recursion++ <= 1) in search_label() 217 recursion--; in search_label() 223 recursion--; in search_label() 229 recursion--; in search_label() 234 recursion--; in search_label() 239 recursion--; in search_label()
|
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
H A D | sanitizer_mutex.cpp | 144 int recursion; member 171 locked[type].recursion++; in Lock() 182 locked[type].recursion = 1; in Lock() 190 CHECK_GT(locked[type].recursion, 0); in Unlock() 191 if (--locked[type].recursion) in Unlock() 198 for (int i = 0; i < mutex_type_count; i++) CHECK_EQ(locked[i].recursion, 0); in CheckNoLocks()
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
H A D | tsan_rtl_mutex.cc | 174 CHECK_EQ(s->recursion, 0); in MutexPostLock() 178 CHECK_GT(s->recursion, 0); in MutexPostLock() 183 const bool first = s->recursion == 0; in MutexPostLock() 184 s->recursion += rec; in MutexPostLock() 223 if (!SANITIZER_GO && (s->recursion == 0 || s->owner_tid != thr->tid)) { in MutexUnlock() 229 rec = (flagz & MutexFlagRecursiveUnlock) ? s->recursion : 1; in MutexUnlock() 230 s->recursion -= rec; in MutexUnlock() 231 if (s->recursion == 0) { in MutexUnlock() 240 if (common_flags()->detect_deadlocks && s->recursion == 0 && in MutexUnlock() 325 if (common_flags()->detect_deadlocks && s->recursion == 0) { in MutexReadUnlock() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
H A D | tsan_rtl_mutex.cc | 172 CHECK_EQ(s->recursion, 0); in MutexPostLock() 176 CHECK_GT(s->recursion, 0); in MutexPostLock() 181 const bool first = s->recursion == 0; in MutexPostLock() 182 s->recursion += rec; in MutexPostLock() 221 if (!SANITIZER_GO && (s->recursion == 0 || s->owner_tid != thr->tid)) { in MutexUnlock() 227 rec = (flagz & MutexFlagRecursiveUnlock) ? s->recursion : 1; in MutexUnlock() 228 s->recursion -= rec; in MutexUnlock() 229 if (s->recursion == 0) { in MutexUnlock() 238 if (common_flags()->detect_deadlocks && s->recursion == 0 && in MutexUnlock() 323 if (common_flags()->detect_deadlocks && s->recursion == 0) { in MutexReadUnlock() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
H A D | tsan_rtl_mutex.cpp | 177 CHECK_EQ(s->recursion, 0); in MutexPostLock() 181 CHECK_GT(s->recursion, 0); in MutexPostLock() 186 first = s->recursion == 0; in MutexPostLock() 187 s->recursion += rec; in MutexPostLock() 224 if (!SANITIZER_GO && (s->recursion == 0 || s->owner_tid != thr->tid)) { in MutexUnlock() 230 rec = (flagz & MutexFlagRecursiveUnlock) ? s->recursion : 1; in MutexUnlock() 231 s->recursion -= rec; in MutexUnlock() 232 if (s->recursion == 0) { in MutexUnlock() 239 if (common_flags()->detect_deadlocks && s->recursion == 0 && in MutexUnlock() 328 if (common_flags()->detect_deadlocks && s->recursion == 0) { in MutexReadUnlock() [all …]
|
/netbsd-src/external/mpl/bind/dist/bin/tests/system/allow-query/ns3/ |
H A D | named2.conf.in | 19 recursion yes; 20 allow-recursion { any; }; 21 allow-recursion-on { none; };
|
H A D | named4.conf.in | 19 recursion yes; 20 allow-recursion { any; }; 22 allow-recursion-on { 10.53.0.3; }; # allow-query-cache-on inherits
|
H A D | named3.conf.in | 19 recursion yes; 20 allow-recursion { any; }; 22 allow-query-cache-on { 10.53.0.3; }; # allow-recursion-on inherits
|
/netbsd-src/sys/arch/macppc/stand/ofwboot/ |
H A D | ofdev.c | 242 static int recursion; in search_dos_label() local 251 if (recursion++ <= 1) in search_dos_label() 267 recursion--; in search_dos_label() 273 recursion--; in search_dos_label() 279 recursion--; in search_dos_label() 284 recursion--; in search_dos_label() 289 recursion--; in search_dos_label()
|
/netbsd-src/external/gpl3/gcc/dist/libiberty/ |
H A D | rust-demangle.c | 78 unsigned int recursion; member 680 if (rdm->recursion != RUST_NO_RECURSION_LIMIT) in demangle_path() 682 ++ rdm->recursion; in demangle_path() 683 if (rdm->recursion > RUST_MAX_RECURSION_COUNT) in demangle_path() 798 if (rdm->recursion != RUST_NO_RECURSION_LIMIT) in demangle_path() 799 -- rdm->recursion; in demangle_path() 891 if (rdm->recursion != RUST_NO_RECURSION_LIMIT) in demangle_type() 893 ++ rdm->recursion; in demangle_type() 894 if (rdm->recursion > RUST_MAX_RECURSION_COUNT) in demangle_type() 899 -- rdm->recursion; in demangle_type() [all …]
|
/netbsd-src/external/ibm-public/postfix/dist/src/global/ |
H A D | dict_ldap.c | 973 static int recursion = 0; in dict_ldap_get_values() local 990 if (++recursion == 1) in dict_ldap_get_values() 994 msg_info("%s[%d]: Search found %d match(es)", myname, recursion, in dict_ldap_get_values() 1009 myname, recursion, dict_ldap->parser->name, in dict_ldap_get_values() 1056 myname, recursion, attr); in dict_ldap_get_values() 1100 "attribute %s", myname, recursion, valcount, in dict_ldap_get_values() 1113 "for key: '%s'", myname, recursion, in dict_ldap_get_values() 1124 myname, recursion, valcount, attr); in dict_ldap_get_values() 1126 } else if (recursion < dict_ldap->recursion_limit in dict_ldap_get_values() 1136 myname, recursion, in dict_ldap_get_values() [all …]
|
/netbsd-src/external/bsd/unbound/dist/testdata/ |
H A D | iter_prefetch_ns.rpl | 165 ; recursion happens here. 186 ; recursion happens here. 209 ; recursion happens here. 230 ; recursion happens here. 253 ; recursion happens here. 277 ; recursion happens here. 301 ; recursion happens here.
|
H A D | iter_prefetch_change.rpl | 179 ; recursion happens here. 203 ; recursion happens here. 228 ; recursion happens here. 253 ; recursion happens here. 281 ; recursion happens here. 303 ; recursion happens here. 328 ; recursion happens here. 350 ; recursion happens here.
|
H A D | iter_pclame.rpl | 10 SCENARIO_BEGIN Test resolution with recursion, parent child differ, lame domain 144 ; recursion happens here. 161 ; recursion happens here. 181 ; recursion happens here.
|
H A D | iter_prefetch_fail.rpl | 233 ; recursion happens here. 257 ; recursion happens here. 282 ; recursion happens here. 307 ; recursion happens here. 332 ; recursion happens here. 357 ; recursion happens here. 378 ; recursion happens here.
|
H A D | iter_prefetch_change2.rpl | 179 ; recursion happens here. 203 ; recursion happens here. 227 ; recursion happens here. 252 ; recursion happens here. 277 ; recursion happens here. 299 ; recursion happens here.
|
/netbsd-src/external/mpl/bind/dist/bin/tests/system/addzone/ns2/ |
H A D | named2.conf.in | 26 recursion no; 33 recursion yes; 67 allow-recursion { nobody; };
|
H A D | named3.conf.in | 25 recursion no; 33 recursion yes; 77 allow-recursion { nobody; };
|
/netbsd-src/lib/libc/gen/ |
H A D | fnmatch.c | 118 fnmatchx(const char *pattern, const char *string, int flags, size_t recursion) in fnmatchx() argument 126 if (recursion-- == 0) in fnmatchx() 175 flags & ~FNM_PERIOD, recursion))) { in fnmatchx()
|
/netbsd-src/external/mpl/bind/dist/bin/tests/system/checkconf/ |
H A D | bad-mirror-allow-recursion-none.conf | 15 recursion yes; 16 allow-recursion { none; };
|
/netbsd-src/external/bsd/unbound/dist/dnstap/ |
H A D | dnstap.proto | 99 // further recursion. These are not shown on the diagram above, but have 120 // Resolvers typically clear the RD (recursion desired) bit when 130 // server which is expected to perform further recursion, from the 133 // (recursion desired) bit when querying the DNS server. The DNS server 140 // typically sets the RA (recursion available) bit when responding. 145 // further recursion, from the perspective of the downstream DNS 150 // DNS server performing recursion to a downstream DNS server, from the
|