Home
last modified time | relevance | path

Searched refs:cnd_timedwait (Results 1 – 22 of 22) sorted by relevance

/third_party/musl/ndk_musl_include/
Dthreads.h74 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict, const struct timespec *__restrict);
86 __REDIR(cnd_timedwait, __cnd_timedwait_time64);
/third_party/musl/include/
Dthreads.h74 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict, const struct timespec *__restrict);
86 __REDIR(cnd_timedwait, __cnd_timedwait_time64);
/third_party/musl/porting/liteos_m/kernel/include/
Dthreads.h74 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict, const struct timespec *__restrict);
86 __REDIR(cnd_timedwait, __cnd_timedwait_time64);
/third_party/musl/porting/uniproton/kernel/include/
Dthreads.h74 int cnd_timedwait(cnd_t *__restrict, mtx_t *__restrict, const struct timespec *__restrict);
86 __REDIR(cnd_timedwait, __cnd_timedwait_time64);
/third_party/musl/src/thread/
Dcnd_wait.c8 return cnd_timedwait(c, m, 0); in cnd_wait()
Dcnd_timedwait.c5 int cnd_timedwait(cnd_t *restrict c, mtx_t *restrict m, const struct timespec *restrict ts) in cnd_timedwait() function
/third_party/musl/compat/time32/
Dcnd_timedwait_time32.c7 return cnd_timedwait(c, m, ts32 ? (&(struct timespec){ in __cnd_timedwait_time32()
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dcnd_signal.c26 res = cnd_timedwait(&cndPut, &mtx, &ts); in cnd_timedwaitfirst()
Dcnd_timedwait.c69 if (cnd_timedwait(&cond, &mutex, &w_time) != thrd_success) { in cnd_timedwait_0100()
Dtest_src_functionalext_supplement_thread.gni52 "cnd_timedwait",
/third_party/musl/libc-test/src/common/
Dtest.h44 #define __cnd_timedwait_time64 cnd_timedwait
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_fence.c149 ret = cnd_timedwait(&f->signalled, &f->mutex, &ts); in lp_fence_timedwait()
/third_party/flutter/glfw/deps/
Dtinycthread.h309 int cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *ts);
Dtinycthread.c294 int cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *ts) in cnd_timedwait() function
/third_party/mesa3d/include/c11/
Dthreads_posix.h135 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *abs_time) in cnd_timedwait() function
Dthreads_win32.h253 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *abs_time) in cnd_timedwait() function
/third_party/flutter/glfw/examples/
Dparticles.c461 cnd_timedwait(&thread_sync.p_done, &thread_sync.particles_lock, &ts); in draw_particles()
912 cnd_timedwait(&thread_sync.d_done, &thread_sync.particles_lock, &ts); in physics_thread_main()
/third_party/mesa3d/src/util/
Du_queue.c201 if (cnd_timedwait(&fence->cond, &fence->mutex, &ts) != thrd_success) in _util_queue_fence_wait_timeout()
/third_party/musl/
Dlibc.map.txt450 cnd_timedwait;
Dmusl_src.gni1305 "src/thread/cnd_timedwait.c",
/third_party/mesa3d/src/gallium/frontends/lavapipe/
Dlvp_device.c1301 cnd_timedwait(&sema->submit, &sema->submit_lock, &t); in wait_semaphores()
/third_party/mesa3d/src/egl/drivers/dri2/
Degl_dri2.c3602 ret = cnd_timedwait(&dri2_sync->cond, &dri2_sync->mutex, &expire); in dri2_client_wait_sync()