Home
last modified time | relevance | path

Searched refs:thrd_success (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/include/c11/
Dthreads_posix.h106 return (pthread_cond_broadcast(cond) == 0) ? thrd_success : thrd_error; in cnd_broadcast()
122 return (pthread_cond_init(cond, NULL) == 0) ? thrd_success : thrd_error; in cnd_init()
130 return (pthread_cond_signal(cond) == 0) ? thrd_success : thrd_error; in cnd_signal()
150 return (rt == 0) ? thrd_success : thrd_error; in cnd_timedwait()
159 return (pthread_cond_wait(cond, mtx) == 0) ? thrd_success : thrd_error; in cnd_wait()
212 return thrd_success; in mtx_init()
219 return thrd_success; in mtx_init()
227 return (pthread_mutex_lock(mtx) == 0) ? thrd_success : thrd_error; in mtx_lock()
251 return thrd_success; in mtx_timedlock()
256 while (mtx_trylock(mtx) != thrd_success) { in mtx_timedlock()
[all …]
Dthreads_win32.h258 return timeout ? thrd_busy : thrd_success; in impl_cond_do_wait()
331 return thrd_success; in cnd_broadcast()
363 return thrd_success; in cnd_init()
376 return thrd_success; in cnd_signal()
386 return thrd_success; in cnd_timedwait()
403 return thrd_success; in cnd_wait()
427 return thrd_success; in mtx_init()
436 return thrd_success; in mtx_lock()
447 while (mtx_trylock(mtx) != thrd_success) { in mtx_timedlock()
454 return thrd_success; in mtx_timedlock()
[all …]
Dthreads.h65 thrd_success = 0, // succeeded enumerator
/external/mesa3d/src/egl/main/
Deglcurrent.c94 if (tss_create(&_egl_TSD, (void (*)(void *)) dtor) != thrd_success) { in _eglInitTSD()
/external/mesa3d/src/gallium/auxiliary/os/
Dos_thread.h142 if (ret == thrd_success) in __pipe_mutex_assert_locked()