Searched refs:__get_internal_cond (Results 1 – 1 of 1) sorted by relevance
/bionic/libc/bionic/ |
D | pthread_cond.cpp | 131 static pthread_cond_internal_t* __get_internal_cond(pthread_cond_t* cond_interface) { in __get_internal_cond() function 136 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_init() 148 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_destroy() 193 return __pthread_cond_pulse(__get_internal_cond(cond_interface), INT_MAX); in pthread_cond_broadcast() 197 return __pthread_cond_pulse(__get_internal_cond(cond_interface), 1); in pthread_cond_signal() 201 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_wait() 208 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_timedwait() 215 return __pthread_cond_timedwait(__get_internal_cond(cond_interface), mutex, false, abs_timeout); in pthread_cond_timedwait_monotonic_np() 224 … return __pthread_cond_timedwait(__get_internal_cond(cond_interface), mutex, true, abs_timeout); in pthread_cond_clockwait() 249 return __pthread_cond_timedwait(__get_internal_cond(cond_interface), mutex, false, abs_timeout); in pthread_cond_timedwait_relative_np()
|