Searched refs:__get_internal_cond (Results 1 – 1 of 1) sorted by relevance
/bionic/libc/bionic/ |
D | pthread_cond.cpp | 132 static pthread_cond_internal_t* __get_internal_cond(pthread_cond_t* cond_interface) { in __get_internal_cond() function 137 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_init() 153 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_destroy() 214 return __pthread_cond_pulse(__get_internal_cond(cond_interface), INT_MAX); in pthread_cond_broadcast() 218 return __pthread_cond_pulse(__get_internal_cond(cond_interface), 1); in pthread_cond_signal() 222 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_wait() 229 pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); in pthread_cond_timedwait() 236 return __pthread_cond_timedwait(__get_internal_cond(cond_interface), mutex, false, abs_timeout); in pthread_cond_timedwait_monotonic_np() 245 … return __pthread_cond_timedwait(__get_internal_cond(cond_interface), mutex, true, abs_timeout); in pthread_cond_clockwait() 273 return __pthread_cond_timedwait(__get_internal_cond(cond_interface), mutex, false, abs_timeout); in pthread_cond_timedwait_relative_np()
|