Home
last modified time | relevance | path

Searched refs:thrd_timedout (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/c11/impl/
Dthreads_posix.c125 return thrd_timedout; in cnd_timedwait()
219 return (rt == ETIMEDOUT) ? thrd_timedout : thrd_error; in mtx_timedlock()
226 return thrd_timedout; in mtx_timedlock()
Dthreads_win32.c229 return (GetLastError() == ERROR_TIMEOUT) ? thrd_timedout : thrd_error; in cnd_timedwait()
283 return thrd_timedout; in mtx_timedlock()
/third_party/mesa3d/src/util/
Dcnd_monotonic.h122 return (GetLastError() == ERROR_TIMEOUT) ? thrd_timedout : thrd_error; in u_cnd_monotonic_timedwait()
126 return thrd_timedout; in u_cnd_monotonic_timedwait()
/third_party/musl/src/thread/
Dmtx_timedlock.c11 case ETIMEDOUT: return thrd_timedout; in mtx_timedlock()
Dcnd_timedwait.c12 case ETIMEDOUT: return thrd_timedout; in cnd_timedwait()
/third_party/musl/porting/liteos_m/kernel/include/
Dthreads.h32 thrd_timedout = 4, enumerator
/third_party/musl/include/
Dthreads.h32 thrd_timedout = 4, enumerator
/third_party/musl/porting/uniproton/kernel/include/
Dthreads.h32 thrd_timedout = 4, enumerator
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dmtx_timedlock.c75 EXPECT_EQ("mtx_timedlock_0200", ret, thrd_timedout); in mtx_timedlock_0200()
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/
Dthread_cnd_test.cpp123 EXPECT_EQ(thrd_timedout, cnd_timedwait(&threadCnd, &threadMtx, &ts));
Dthread_mutex_test.cpp133 EXPECT_EQ(thrd_timedout, mtx_timedlock(&mtxTime, &timeSpec)); in __anon02ace2890102()
/third_party/mesa3d/src/c11/
Dthreads.h154 thrd_timedout, // timed out enumerator
/third_party/mesa3d/src/egl/drivers/dri2/
Degl_dri2.c3626 if (ret == thrd_timedout) { in dri2_client_wait_sync()