/bind-9.6-ESV-R11/lib/isc/include/isc/ |
H A D | assertions.h | 85 #define ISC_REQUIRE(cond) \ 86 ((void) ((cond) || \ 89 #cond), 0))) 91 #define ISC_REQUIRE(cond) ((void) 0) 95 #define ISC_ENSURE(cond) \ 96 ((void) ((cond) || \ 99 #cond), 0))) 101 #define ISC_ENSURE(cond) ((void) 0) 105 #define ISC_INSIST(cond) \ 106 ((void) ((cond) || \ [all...] |
H A D | error.h | 57 #define ISC_ERROR_RUNTIMECHECK(cond) \ 58 ((void) ((cond) || \ 59 ((isc_error_runtimecheck)(__FILE__, __LINE__, #cond), 0)))
|
H A D | util.h | 231 #define RUNTIME_CHECK(cond) ISC_ERROR_RUNTIMECHECK(cond)
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/ |
H A D | sanity.c | 63 atf_sanity_inv(const char *file, int line, const char *cond) argument 65 fail("Invariant check failed at %s:%d: %s", file, line, cond); 69 atf_sanity_pre(const char *file, int line, const char *cond) argument 71 fail("Precondition check failed at %s:%d: %s", file, line, cond); 75 atf_sanity_post(const char *file, int line, const char *cond) argument 77 fail("Postcondition check failed at %s:%d: %s", file, line, cond);
|
H A D | sanity_test.c | 93 do_test(enum type t, bool cond) argument 102 struct test_data td = { t, cond }; 118 if (!cond) { 127 if (!cond) {
|
/bind-9.6-ESV-R11/lib/isc/win32/ |
H A D | condition.c | 32 isc_condition_init(isc_condition_t *cond) { argument 35 REQUIRE(cond != NULL); 37 cond->waiters = 0; 46 cond->events[LSIGNAL] = h; 52 ISC_LIST_INIT(cond->threadlist); 98 find_thread_condition(unsigned long thrd, isc_condition_t *cond, argument 108 for (threadcond = ISC_LIST_HEAD(cond->threadlist); 121 return (register_thread(thrd, cond, threadcondp)); 125 isc_condition_signal(isc_condition_t *cond) { argument 131 REQUIRE(cond ! 142 isc_condition_broadcast(isc_condition_t *cond) argument 171 isc_condition_destroy(isc_condition_t *cond) argument 206 wait(isc_condition_t *cond, isc_mutex_t *mutex, DWORD milliseconds) argument 235 isc_condition_wait(isc_condition_t *cond, isc_mutex_t *mutex) argument 240 isc_condition_waituntil(isc_condition_t *cond, isc_mutex_t *mutex, isc_time_t *t) argument [all...] |
/bind-9.6-ESV-R11/lib/isc/ |
H A D | assertions.c | 47 const char *cond) 49 isc_assertion_failed_cb(file, line, type, cond); 99 const char *cond) 102 file, line, isc_assertion_typetotext(type), cond, 46 isc_assertion_failed(const char *file, int line, isc_assertiontype_t type, const char *cond) argument 98 default_callback(const char *file, int line, isc_assertiontype_t type, const char *cond) argument
|
/bind-9.6-ESV-R11/bin/tests/system/dnssec/ |
H A D | dnssec_update_test.pl | 61 my ($cond, $explanation) = @_; 62 if (!$cond) {
|
/bind-9.6-ESV-R11/bin/tests/system/stress/ |
H A D | update.pl | 66 my ($cond, $explanation) = @_; 67 if (!$cond) {
|
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/util/ |
H A D | UCD.pm | 165 my $cond = (@f > 5) ? $f[4] : undef; 170 CONDITION => $cond);
|
H A D | generate_normalize_data.pl | 212 my $cond = $data{CONDITION} || ''; 214 next unless $cond eq '' or $cond =~ /^(NON_)?FINAL/; 216 if (defined $cond && (@$lower > 1 || $lower->[0] != $code) 218 $lower_special{$code} = [$lower, $cond]; 220 if (defined $cond && (@$upper > 1 || $upper->[0] != $code) 222 $upper_special{$code} = [$upper, $cond];
|
/bind-9.6-ESV-R11/bin/tests/system/nsupdate/ |
H A D | update_test.pl | 66 my ($cond, $explanation) = @_; 67 if (!$cond) {
|
/bind-9.6-ESV-R11/bin/named/ |
H A D | main.c | 134 const char *cond) ISC_PLATFORM_NORETURN_POST; 138 const char *cond) 154 isc_assertion_typetotext(type), cond); 160 file, line, isc_assertion_typetotext(type), cond); 137 assertion_failed(const char *file, int line, isc_assertiontype_t type, const char *cond) argument
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/ |
H A D | macros_test.cpp | 337 const char *cond; member in struct:test 348 for (t = &tests[0]; t->cond != NULL; t++) { 350 config["condition"] = t->cond; 352 std::cout << "Checking with a " << t->cond << " value\n";
|
/bind-9.6-ESV-R11/lib/dns/tests/ |
H A D | dbversion_test.c | 48 const char *cond) 50 UNUSED(file); UNUSED(line); UNUSED(type); UNUSED(cond); 47 callback(const char *file, int line, isc_assertiontype_t type, const char *cond) argument
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | gen.c | 46 #define INSIST(cond) \ 47 if (!(cond)) { \ 49 __FILE__, __LINE__, #cond); \
|