Home
last modified time | relevance | path

Searched refs:pthread_cond_t (Results 1 – 25 of 89) sorted by relevance

1234

/external/compiler-rt/lib/tsan/dd/
Ddd_interceptors.cc165 static pthread_cond_t *init_cond(pthread_cond_t *c, bool force = false) { in init_cond()
169 return (pthread_cond_t*)cond; in init_cond()
170 void *newcond = malloc(sizeof(pthread_cond_t)); in init_cond()
171 internal_memset(newcond, 0, sizeof(pthread_cond_t)); in init_cond()
174 return (pthread_cond_t*)newcond; in init_cond()
176 return (pthread_cond_t*)cond; in init_cond()
179 INTERCEPTOR(int, pthread_cond_init, pthread_cond_t *c, in INTERCEPTOR()
182 pthread_cond_t *cond = init_cond(c, true); in INTERCEPTOR()
186 INTERCEPTOR(int, pthread_cond_wait, pthread_cond_t *c, pthread_mutex_t *m) { in INTERCEPTOR()
188 pthread_cond_t *cond = init_cond(c); in INTERCEPTOR()
[all …]
/external/valgrind/helgrind/
Dhg_intercepts.c744 static int pthread_cond_wait_WRK(pthread_cond_t* cond, in pthread_cond_wait_WRK()
763 pthread_cond_t*,cond, pthread_mutex_t*,mutex); in pthread_cond_wait_WRK()
787 pthread_cond_t*,cond, pthread_mutex_t*,mutex, long,0); in pthread_cond_wait_WRK()
802 pthread_cond_t* cond, pthread_mutex_t* mutex) { in PTH_FUNC()
807 pthread_cond_t* cond, pthread_mutex_t* mutex) { in PTH_FUNC()
825 static int pthread_cond_timedwait_WRK(pthread_cond_t* cond, in pthread_cond_timedwait_WRK()
846 pthread_cond_t*,cond, pthread_mutex_t*,mutex); in pthread_cond_timedwait_WRK()
876 pthread_cond_t*,cond, pthread_mutex_t*,mutex, in pthread_cond_timedwait_WRK()
892 pthread_cond_t* cond, pthread_mutex_t* mutex, in PTH_FUNC()
898 pthread_cond_t* cond, pthread_mutex_t* mutex, in PTH_FUNC()
[all …]
/external/fio/lib/
Dtp.h14 pthread_cond_t cv;
21 pthread_cond_t cv;
25 pthread_cond_t sleep_cv;
/external/libvpx/libvpx/vp9/common/
Dvp9_thread.h37 } pthread_cond_t; typedef
95 static INLINE int pthread_cond_destroy(pthread_cond_t *const condition) { in pthread_cond_destroy()
103 static INLINE int pthread_cond_init(pthread_cond_t *const condition, in pthread_cond_init()
118 static INLINE int pthread_cond_signal(pthread_cond_t *const condition) { in pthread_cond_signal()
131 static INLINE int pthread_cond_wait(pthread_cond_t *const condition, in pthread_cond_wait()
/external/libnfc-nci/src/gki/ulinux/
Dgki_int.h36 pthread_cond_t thread_evt_cond[GKI_MAX_TASKS];
38 pthread_cond_t thread_timeout_cond[GKI_MAX_TASKS];
41 pthread_cond_t gki_timer_cond;
/external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
Dgki_int.h36 pthread_cond_t thread_evt_cond[GKI_MAX_TASKS];
38 pthread_cond_t thread_timeout_cond[GKI_MAX_TASKS];
41 pthread_cond_t gki_timer_cond;
/external/squashfs-tools/squashfs-tools/
Dcaches-queues-lists.h136 pthread_cond_t empty;
137 pthread_cond_t full;
151 pthread_cond_t wait;
168 pthread_cond_t wait_for_free;
169 pthread_cond_t wait_for_unlock;
Dunsquashfs.h131 pthread_cond_t wait_for_free;
132 pthread_cond_t wait_for_pending;
158 pthread_cond_t empty;
159 pthread_cond_t full;
/external/webp/src/utils/
Dthread.c30 } pthread_cond_t; typedef
40 pthread_cond_t condition_;
98 static int pthread_cond_destroy(pthread_cond_t* const condition) { in pthread_cond_destroy()
106 static int pthread_cond_init(pthread_cond_t* const condition, void* cond_attr) { in pthread_cond_init()
120 static int pthread_cond_signal(pthread_cond_t* const condition) { in pthread_cond_signal()
133 static int pthread_cond_wait(pthread_cond_t* const condition, in pthread_cond_wait()
/external/valgrind/drd/tests/
Dpth_uninitialized_cond.c10 static pthread_cond_t s_cond1 = PTHREAD_COND_INITIALIZER;
11 static pthread_cond_t s_cond2 = PTHREAD_COND_INITIALIZER;
Dannotate_hb_err.c13 pthread_cond_t cv; in main()
30 pthread_cond_init((pthread_cond_t*)&i, NULL); in main()
Dpth_broadcast.c22 pthread_cond_t m_cond;
81 static pthread_cond_t s_cond;
/external/lldb/tools/debugserver/source/
DPThreadCondition.h33 pthread_cond_t *Condition() in Condition()
49 pthread_cond_t m_condition;
/external/lldb/include/lldb/Host/
DCondition.h108 pthread_cond_t m_condition; ///< The condition variable.
116 pthread_cond_t *
/external/lldb/test/functionalities/expr-doesnt-deadlock/
Dlocking.c9 pthread_cond_t control_condition;
12 pthread_cond_t thread_started_condition;
/external/valgrind/drd/
Ddrd_pthread_intercepts.c704 int pthread_cond_init_intercept(pthread_cond_t* cond, in pthread_cond_init_intercept()
719 (pthread_cond_t* cond, const pthread_condattr_t* attr),
723 int pthread_cond_destroy_intercept(pthread_cond_t* cond) in pthread_cond_destroy_intercept()
737 (pthread_cond_t* cond), (cond));
740 int pthread_cond_wait_intercept(pthread_cond_t *cond, pthread_mutex_t *mutex) in pthread_cond_wait_intercept()
754 (pthread_cond_t *cond, pthread_mutex_t *mutex),
758 int pthread_cond_timedwait_intercept(pthread_cond_t *cond, in pthread_cond_timedwait_intercept()
774 (pthread_cond_t *cond, pthread_mutex_t *mutex,
785 int pthread_cond_signal_intercept(pthread_cond_t* cond) in pthread_cond_signal_intercept()
799 (pthread_cond_t* cond), (cond));
[all …]
Ddrd_cond_initializer.c6 static pthread_cond_t pthread_cond_initializer = PTHREAD_COND_INITIALIZER;
/external/valgrind/none/tests/x86/
Dyield.c11 static pthread_cond_t c_go = PTHREAD_COND_INITIALIZER;
12 static pthread_cond_t c_running = PTHREAD_COND_INITIALIZER;
/external/libnfc-nci/src/include/
DNfcAdaptation.h47 operator pthread_cond_t* () {return &mCondVar;}
50 pthread_cond_t mCondVar;
/external/drm_hwcomposer/
Dglworker.h121 pthread_cond_t work_ready_cond_;
122 pthread_cond_t work_done_cond_;
/external/valgrind/helgrind/tests/
Dcond_init_destroy.c4 pthread_cond_t c; in main()
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
DCondVar.h94 pthread_cond_t mCondition;
/external/blktrace/btreplay/
Dbtreplay.c107 pthread_cond_t cond;
171 static pthread_cond_t reclaim_done_cond = PTHREAD_COND_INITIALIZER;
175 static pthread_cond_t replay_done_cond = PTHREAD_COND_INITIALIZER;
179 static pthread_cond_t replay_ready_cond = PTHREAD_COND_INITIALIZER;
183 static pthread_cond_t iter_done_cond = PTHREAD_COND_INITIALIZER;
187 static pthread_cond_t iter_start_cond = PTHREAD_COND_INITIALIZER;
390 static inline void __set_cv(pthread_mutex_t *pmp, pthread_cond_t *pcp, in __set_cv()
408 static inline void __wait_cv(pthread_mutex_t *pmp, pthread_cond_t *pcp, in __wait_cv()
/external/libnfc-nci/src/adaptation/
DNfcAdaptation.cpp169 …GKI_create_task ((TASKPTR)NFCA_TASK, BTU_TASK, (INT8*)"NFCA_TASK", 0, 0, (pthread_cond_t*)NULL, NU… in Initialize()
172 …GKI_create_task ((TASKPTR)Thread, MMI_TASK, (INT8*)"NFCA_THREAD", 0, 0, (pthread_cond_t*)NULL, NUL… in Initialize()
260 …GKI_create_task ((TASKPTR)nfc_task, NFC_TASK, (INT8*)"NFC_TASK", 0, 0, (pthread_cond_t*)CondVar, (… in Thread()
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
Dnative_handle.pass.cpp25 pthread_cond_t*>::value), ""); in main()

1234