Searched defs:cond (Results 1 – 7 of 7) sorted by relevance
| /bionic/libc/upstream-netbsd/lib/libc/include/isc/ |
| D | assertions.h | 72 #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/dns/resolv/ |
| D | res_debug.h | 24 # 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
|
| D | res_cache.c | 1275 pthread_cond_t cond; member
|
| /bionic/libc/bionic/ |
| D | pthread_cond.cpp | 136 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_init() local 148 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_destroy() local 156 static int __pthread_cond_pulse(pthread_cond_internal_t* cond, int thread_count) { in __pthread_cond_pulse() 173 static int __pthread_cond_timedwait(pthread_cond_internal_t* cond, pthread_mutex_t* mutex, in __pthread_cond_timedwait() 201 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_wait() local 208 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_timedwait() local
|
| /bionic/libc/include/sys/ |
| D | cdefs.h | 132 #define __enable_if(cond, msg) __attribute__((enable_if(cond, msg))) argument 133 #define __clang_error_if(cond, msg) __attribute__((diagnose_if(cond, msg, "error"))) argument 134 #define __clang_warning_if(cond, msg) __attribute__((diagnose_if(cond, msg, "warning"))) argument
|
| /bionic/libc/kernel/uapi/linux/ |
| D | blkzoned.h | 43 __u8 cond; member
|
| /bionic/tests/ |
| D | pthread_test.cpp | 1370 pthread_cond_t cond; member in pthread_CondWakeupTest 1395 …void StartWaitingThread(std::function<int (pthread_cond_t* cond, pthread_mutex_t* mutex)> wait_fun… in StartWaitingThread() 1427 StartWaitingThread([](pthread_cond_t* cond, pthread_mutex_t* mutex) { in TEST_F() 1436 StartWaitingThread([](pthread_cond_t* cond, pthread_mutex_t* mutex) { in TEST_F() 1448 StartWaitingThread([&](pthread_cond_t* cond, pthread_mutex_t* mutex) { in TEST_F() 1460 StartWaitingThread([&](pthread_cond_t* cond, pthread_mutex_t* mutex) { in TEST_F() 1473 StartWaitingThread([&](pthread_cond_t* cond, pthread_mutex_t* mutex) { in TEST_F() 1489 pthread_cond_t cond; in pthread_cond_timedwait_timeout_helper() local 2293 pthread_cond_t* cond = reinterpret_cast<pthread_cond_t*>( in TEST() local
|