Searched refs:cnd_t (Results 1 – 7 of 7) sorted by relevance
/hardware/google/gfxstream/guest/mesa/src/c11/ |
D | threads.h | 94 } cnd_t; typedef 117 typedef pthread_cond_t cnd_t; typedef 152 int cnd_broadcast(cnd_t *); 153 void cnd_destroy(cnd_t *); 154 int cnd_init(cnd_t *); 155 int cnd_signal(cnd_t *); 156 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict __mtx, 158 int cnd_wait(cnd_t *, mtx_t *__mtx);
|
/hardware/google/gfxstream/guest/mesa/src/c11/impl/ |
D | threads_posix.c | 83 cnd_broadcast(cnd_t *cond) in cnd_broadcast() 91 cnd_destroy(cnd_t *cond) in cnd_destroy() 99 cnd_init(cnd_t *cond) in cnd_init() 107 cnd_signal(cnd_t *cond) in cnd_signal() 115 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *abs_time) in cnd_timedwait() 131 cnd_wait(cnd_t *cond, mtx_t *mtx) in cnd_wait()
|
D | threads_win32.c | 51 static_assert(sizeof(cnd_t) == sizeof(CONDITION_VARIABLE), "The size of cnd_t must equal to CONDITI… 159 cnd_broadcast(cnd_t *cond) in cnd_broadcast() 168 cnd_destroy(cnd_t *cond) in cnd_destroy() 177 cnd_init(cnd_t *cond) in cnd_init() 186 cnd_signal(cnd_t *cond) in cnd_signal() 195 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *abs_time) in cnd_timedwait() 208 cnd_wait(cnd_t *cond, mtx_t *mtx) in cnd_wait()
|
/hardware/google/gfxstream/guest/mesa/src/util/ |
D | u_queue.h | 127 cnd_t cond; 209 cnd_t has_queued_cond; 210 cnd_t has_space_cond;
|
D | u_thread.h | 130 cnd_t condvar; 148 cnd_t cond;
|
/hardware/google/gfxstream/guest/mesa/src/vulkan/runtime/ |
D | vk_queue.h | 92 cnd_t push; 93 cnd_t pop;
|
D | vk_sync_timeline.h | 82 cnd_t cond;
|