Home
last modified time | relevance | path

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

/external/virglrenderer/src/gallium/include/c11/
Dthreads_posix.h149 return thrd_busy; in cnd_timedwait()
221 return (rt == ETIMEDOUT) ? thrd_busy : thrd_error; in mtx_timedlock()
228 return thrd_busy; in mtx_timedlock()
242 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.h63 thrd_busy, // resource busy enumerator
/external/mesa3d/include/c11/
Dthreads_posix.h145 return thrd_busy; in cnd_timedwait()
245 return (rt == ETIMEDOUT) ? thrd_busy : thrd_error; in mtx_timedlock()
252 return thrd_busy; in mtx_timedlock()
266 return (pthread_mutex_trylock(mtx) == 0) ? thrd_success : thrd_busy; in mtx_trylock()
Dthreads_win32.h272 return timeout ? thrd_busy : thrd_success; in impl_cond_do_wait()
401 return (GetLastError() == ERROR_TIMEOUT) ? thrd_busy : thrd_error; in cnd_timedwait()
464 return thrd_busy; in mtx_timedlock()
476 return TryEnterCriticalSection(mtx) ? thrd_success : thrd_busy; in mtx_trylock()
Dthreads.h57 thrd_busy, // resource busy enumerator
/external/mesa3d/src/gallium/auxiliary/os/
Dos_thread.h56 assert(ret == thrd_busy); in __pipe_mutex_assert_locked()
/external/mesa3d/src/egl/drivers/dri2/
Degl_dri2.c3094 if (ret == thrd_busy) { in dri2_client_wait_sync()