Searched refs:cond (Results 1 - 16 of 16) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dassertions.h85 #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 Derror.h57 #define ISC_ERROR_RUNTIMECHECK(cond) \
58 ((void) ((cond) || \
59 ((isc_error_runtimecheck)(__FILE__, __LINE__, #cond), 0)))
H A Dutil.h231 #define RUNTIME_CHECK(cond) ISC_ERROR_RUNTIMECHECK(cond)
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dsanity.c63 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 Dsanity_test.c93 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 Dcondition.c32 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 Dassertions.c47 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 Ddnssec_update_test.pl61 my ($cond, $explanation) = @_;
62 if (!$cond) {
/bind-9.6-ESV-R11/bin/tests/system/stress/
H A Dupdate.pl66 my ($cond, $explanation) = @_;
67 if (!$cond) {
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/util/
H A DUCD.pm165 my $cond = (@f > 5) ? $f[4] : undef;
170 CONDITION => $cond);
H A Dgenerate_normalize_data.pl212 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 Dupdate_test.pl66 my ($cond, $explanation) = @_;
67 if (!$cond) {
/bind-9.6-ESV-R11/bin/named/
H A Dmain.c134 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 Dmacros_test.cpp337 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 Ddbversion_test.c48 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 Dgen.c46 #define INSIST(cond) \
47 if (!(cond)) { \
49 __FILE__, __LINE__, #cond); \

Completed in 46 milliseconds