Searched refs:pthread_cond_t (Results 1 - 5 of 5) sorted by relevance

/bionic/libc/bionic/
H A Dpthread_cond.cpp55 // The 'value' field pthread_cond_t has the same layout.
123 static_assert(sizeof(pthread_cond_t) == sizeof(pthread_cond_internal_t),
124 "pthread_cond_t should actually be pthread_cond_internal_t in implementation.");
126 // For binary compatibility with old version of pthread_cond_t, we can't use more strict alignment
128 static_assert(alignof(pthread_cond_t) == 4,
129 "pthread_cond_t should fulfill the alignment requirement of pthread_cond_internal_t.");
131 static pthread_cond_internal_t* __get_internal_cond(pthread_cond_t* cond_interface) {
135 int pthread_cond_init(pthread_cond_t* cond_interface, const pthread_condattr_t* attr) {
147 int pthread_cond_destroy(pthread_cond_t* cond_interface) {
192 int pthread_cond_broadcast(pthread_cond_t* cond_interfac
[all...]
/bionic/libc/include/
H A Dpthread.h70 } pthread_cond_t; typedef in typeref:struct:__anon57
162 int pthread_cond_broadcast(pthread_cond_t*) __nonnull((1));
163 int pthread_cond_destroy(pthread_cond_t*) __nonnull((1));
164 int pthread_cond_init(pthread_cond_t*, const pthread_condattr_t*) __nonnull((1));
165 int pthread_cond_signal(pthread_cond_t*) __nonnull((1));
166 int pthread_cond_timedwait(pthread_cond_t*, pthread_mutex_t*, const struct timespec*) __nonnull((1, 2, 3));
167 int pthread_cond_wait(pthread_cond_t*, pthread_mutex_t*) __nonnull((1, 2));
286 int pthread_cond_timedwait_monotonic_np(pthread_cond_t*, pthread_mutex_t*, const struct timespec*);
287 int pthread_cond_timedwait_monotonic(pthread_cond_t*, pthread_mutex_t*, const struct timespec*);
289 int pthread_cond_timedwait_relative_np(pthread_cond_t*, pthread_mutex_
[all...]
/bionic/libc/include/sys/
H A Dtypes.h108 typedef .... pthread_cond_t;
/bionic/tests/
H A Dpthread_test.cpp1098 pthread_cond_t cond_var;
1119 pthread_cond_t cond;
1129 std::function<int (pthread_cond_t* cond, pthread_mutex_t* mutex)> wait_function;
1144 void StartWaitingThread(std::function<int (pthread_cond_t* cond, pthread_mutex_t* mutex)> wait_function) {
1176 StartWaitingThread([](pthread_cond_t* cond, pthread_mutex_t* mutex) {
1185 StartWaitingThread([](pthread_cond_t* cond, pthread_mutex_t* mutex) {
1197 StartWaitingThread([&](pthread_cond_t* cond, pthread_mutex_t* mutex) {
1209 StartWaitingThread([&](pthread_cond_t* cond, pthread_mutex_t* mutex) {
1219 pthread_cond_t cond;
1731 pthread_cond_t* con
[all...]
/bionic/libc/dns/resolv/
H A Dres_cache.c1219 pthread_cond_t cond;

Completed in 71 milliseconds