Home
last modified time | relevance | path

Searched defs:cond (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/include/isc/
Dassertions.h72 #define REQUIRE(cond) \ argument
76 #define REQUIRE_ERR(cond) \ argument
81 #define REQUIRE(cond) ((void) (cond)) argument
82 #define REQUIRE_ERR(cond) ((void) (cond)) argument
86 #define ENSURE(cond) \ argument
90 #define ENSURE_ERR(cond) \ argument
95 #define ENSURE(cond) ((void) (cond)) argument
96 #define ENSURE_ERR(cond) ((void) (cond)) argument
100 #define INSIST(cond) \ argument
104 #define INSIST_ERR(cond) \ argument
[all …]
/bionic/libc/bionic/
Dpthread_cond.cpp109 int pthread_cond_init(pthread_cond_t* cond, const pthread_condattr_t* attr) { in pthread_cond_init()
119 int pthread_cond_destroy(pthread_cond_t* cond) { in pthread_cond_destroy()
127 static int __pthread_cond_pulse(pthread_cond_t* cond, int counter) { in __pthread_cond_pulse()
152 int __pthread_cond_timedwait_relative(pthread_cond_t* cond, pthread_mutex_t* mutex, const timespec*… in __pthread_cond_timedwait_relative()
166 int __pthread_cond_timedwait(pthread_cond_t* cond, pthread_mutex_t* mutex, const timespec* abstime,… in __pthread_cond_timedwait()
182 int pthread_cond_broadcast(pthread_cond_t* cond) { in pthread_cond_broadcast()
186 int pthread_cond_signal(pthread_cond_t* cond) { in pthread_cond_signal()
190 int pthread_cond_wait(pthread_cond_t* cond, pthread_mutex_t* mutex) { in pthread_cond_wait()
194 int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t * mutex, const timespec *abstime) { in pthread_cond_timedwait()
200 extern "C" int pthread_cond_timedwait_monotonic(pthread_cond_t* cond, pthread_mutex_t* mutex, const… in pthread_cond_timedwait_monotonic()
[all …]
/bionic/libc/dns/resolv/
Dres_debug.h24 # define Dprint(cond, args) /*empty*/ argument
25 # define DprintQ(cond, args, query, size) /*empty*/ argument
29 # define Dprint(cond, args) if (cond) {fprintf args;} else {} argument
30 # define DprintQ(cond, args, query, size) if (cond) {\ argument
Dres_cache.c1213 pthread_cond_t cond; member