Home
last modified time | relevance | path

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

/external/mesa3d/include/c11/
Dthreads_posix.h149 return thrd_busy; in cnd_timedwait()
252 return (rt == ETIMEDOUT) ? thrd_busy : thrd_error; in mtx_timedlock()
259 return thrd_busy; in mtx_timedlock()
273 return (pthread_mutex_trylock(mtx) == 0) ? thrd_success : thrd_busy; in mtx_trylock()
Dthreads_win32.h258 return timeout ? thrd_busy : thrd_success; in impl_cond_do_wait()
387 return (GetLastError() == ERROR_TIMEOUT) ? thrd_busy : thrd_error; in cnd_timedwait()
450 return thrd_busy; in mtx_timedlock()
462 return TryEnterCriticalSection(mtx) ? thrd_success : thrd_busy; in mtx_trylock()
Dthreads.h68 thrd_busy, // resource busy enumerator
/external/mesa3d/src/gallium/auxiliary/os/
Dos_thread.h141 assert(ret == thrd_busy); in __pipe_mutex_assert_locked()
/external/mesa3d/src/egl/drivers/dri2/
Degl_dri2.c2782 if (ret == thrd_busy) { in dri2_client_wait_sync()