Home
last modified time | relevance | path

Searched refs:cnd_t (Results 1 – 4 of 4) sorted by relevance

/bionic/tests/headers/posix/
Dthreads_h.c41 TYPE(cnd_t); in threads_h()
56 FUNCTION(cnd_broadcast, int (*f)(cnd_t*)); in threads_h()
57 FUNCTION(cnd_destroy, void (*f)(cnd_t*)); in threads_h()
58 FUNCTION(cnd_init, int (*f)(cnd_t*)); in threads_h()
59 FUNCTION(cnd_signal, int (*f)(cnd_t*)); in threads_h()
60 FUNCTION(cnd_timedwait, int (*f)(cnd_t*, mtx_t*, const struct timespec*)); in threads_h()
61 FUNCTION(cnd_wait, int (*f)(cnd_t*, mtx_t*)); in threads_h()
/bionic/libc/include/
Dthreads.h45 typedef pthread_cond_t cnd_t; typedef
92 int cnd_broadcast(cnd_t* __cond) __INTRODUCED_IN(30);
97 void cnd_destroy(cnd_t* __cond) __INTRODUCED_IN(30);
102 int cnd_init(cnd_t* __cond) __INTRODUCED_IN(30);
107 int cnd_signal(cnd_t* __cond) __INTRODUCED_IN(30);
112 int cnd_timedwait(cnd_t* __cond, mtx_t* __mutex, const struct timespec* __timeout)
118 int cnd_wait(cnd_t* __cond, mtx_t* __mutex) __INTRODUCED_IN(30);
/bionic/libc/include/bits/
Dthreads_inlines.h58 __BIONIC_THREADS_INLINE int cnd_broadcast(cnd_t* __cnd) { in cnd_broadcast()
62 __BIONIC_THREADS_INLINE void cnd_destroy(cnd_t* __cnd) { in cnd_destroy()
66 __BIONIC_THREADS_INLINE int cnd_init(cnd_t* __cnd) { in cnd_init()
70 __BIONIC_THREADS_INLINE int cnd_signal(cnd_t* __cnd) { in cnd_signal()
74 __BIONIC_THREADS_INLINE int cnd_timedwait(cnd_t* __cnd, in cnd_timedwait()
80 __BIONIC_THREADS_INLINE int cnd_wait(cnd_t* __cnd, mtx_t* __mtx) { in cnd_wait()
/bionic/tests/
Dthreads_test.cpp87 cnd_t c; in TEST()
120 cnd_t c; in TEST()
132 cnd_t c; in TEST()
184 cnd_t c; in TEST()
199 cnd_t c; in TEST()