Home
last modified time | relevance | path

Searched refs:thrd_busy (Results 1 – 12 of 12) 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.h262 return timeout ? thrd_busy : thrd_success; in impl_cond_do_wait()
391 return (GetLastError() == ERROR_TIMEOUT) ? thrd_busy : thrd_error; in cnd_timedwait()
454 return thrd_busy; in mtx_timedlock()
466 return TryEnterCriticalSection(mtx) ? thrd_success : thrd_busy; in mtx_trylock()
Dthreads.h57 thrd_busy, // resource busy enumerator
/external/mesa3d/src/util/
Dsimple_mtx.h160 assert(ret == thrd_busy); in simple_mtx_assert_locked()
/external/mesa3d/src/gallium/auxiliary/os/
Dos_thread.h56 assert(ret == thrd_busy); in __pipe_mutex_assert_locked()
/external/llvm-project/libc/config/linux/
Dapi.td344 "thrd_busy",
/external/llvm-project/libc/spec/
Dstdc.td464 EnumeratedNameValue<"thrd_busy">,
/external/llvm-project/clang-tools-extra/clangd/
DCSymbolMap.inc800 SYMBOL(thrd_busy, None, <threads.h>)
/external/mesa3d/src/egl/drivers/dri2/
Degl_dri2.c3583 if (ret == thrd_busy) { in dri2_client_wait_sync()