Searched refs:mtx_timed (Results 1 – 13 of 13) sorted by relevance
/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
D | mtx_timedlock.c | 37 ret = mtx_init(&mutex, mtx_timed); in mtx_timedlock_0100() 64 ret = mtx_init(&mutex, mtx_timed); in mtx_timedlock_0200() 96 ret = mtx_init(&mutex, mtx_timed); in mtx_timedlock_time64_0100()
|
D | mtx_init.c | 43 ret = mtx_init(&g_mtx, mtx_timed); in mtx_init_0200() 67 ret = mtx_init(&g_mtx, mtx_timed | mtx_recursive); in mtx_init_0400()
|
D | mtx_lock.c | 106 int result = mtx_init(&g_mtex, mtx_timed); in mtx_lock_0200() 156 int result= mtx_init(&g_mtex, mtx_timed | mtx_recursive); in mtx_lock_0400()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/ |
D | thread_mutex_test.cpp | 57 EXPECT_EQ(thrd_success, mtx_init(&mtx_, mtx_timed)); 79 EXPECT_EQ(thrd_success, mtx_init(&mtx_, mtx_timed | mtx_recursive)); 124 EXPECT_EQ(thrd_success, mtx_init(&mtxTime, mtx_timed)); 128 EXPECT_EQ(thrd_success, mtx_init(&mtxTime, mtx_timed)); in __anon432f95fd0102()
|
/third_party/mesa3d/src/c11/impl/ |
D | threads_posix.c | 180 if (type != mtx_plain && type != mtx_timed && type != mtx_try in mtx_init() 182 && type != (mtx_timed|mtx_recursive) in mtx_init()
|
D | threads_win32.c | 257 if (type != mtx_plain && type != mtx_timed && type != mtx_try in mtx_init() 259 && type != (mtx_timed|mtx_recursive) in mtx_init()
|
/third_party/musl/ndk_musl_include/ |
D | threads.h | 38 mtx_timed = 2, enumerator
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | threads.h | 38 mtx_timed = 2, enumerator
|
/third_party/musl/include/ |
D | threads.h | 38 mtx_timed = 2, enumerator
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | threads.h | 38 mtx_timed = 2, enumerator
|
/third_party/mesa3d/src/c11/ |
D | threads.h | 147 mtx_timed = 2, enumerator
|
/third_party/glfw/deps/ |
D | tinycthread.h | 177 #define mtx_timed 2 macro
|
/third_party/glfw/examples/ |
D | particles.c | 1041 mtx_init(&thread_sync.particles_lock, mtx_timed); in main()
|