Searched refs:thrd_timedout (Results 1 – 13 of 13) sorted by relevance
/third_party/mesa3d/src/c11/impl/ |
D | threads_posix.c | 125 return thrd_timedout; in cnd_timedwait() 219 return (rt == ETIMEDOUT) ? thrd_timedout : thrd_error; in mtx_timedlock() 226 return thrd_timedout; in mtx_timedlock()
|
D | threads_win32.c | 229 return (GetLastError() == ERROR_TIMEOUT) ? thrd_timedout : thrd_error; in cnd_timedwait() 283 return thrd_timedout; in mtx_timedlock()
|
/third_party/mesa3d/src/util/ |
D | cnd_monotonic.h | 122 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/ |
D | mtx_timedlock.c | 11 case ETIMEDOUT: return thrd_timedout; in mtx_timedlock()
|
D | cnd_timedwait.c | 12 case ETIMEDOUT: return thrd_timedout; in cnd_timedwait()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | threads.h | 32 thrd_timedout = 4, enumerator
|
/third_party/musl/include/ |
D | threads.h | 32 thrd_timedout = 4, enumerator
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | threads.h | 32 thrd_timedout = 4, enumerator
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
D | mtx_timedlock.c | 75 EXPECT_EQ("mtx_timedlock_0200", ret, thrd_timedout); in mtx_timedlock_0200()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/ |
D | thread_cnd_test.cpp | 123 EXPECT_EQ(thrd_timedout, cnd_timedwait(&threadCnd, &threadMtx, &ts));
|
D | thread_mutex_test.cpp | 133 EXPECT_EQ(thrd_timedout, mtx_timedlock(&mtxTime, &timeSpec)); in __anon02ace2890102()
|
/third_party/mesa3d/src/c11/ |
D | threads.h | 154 thrd_timedout, // timed out enumerator
|
/third_party/mesa3d/src/egl/drivers/dri2/ |
D | egl_dri2.c | 3626 if (ret == thrd_timedout) { in dri2_client_wait_sync()
|