Home
last modified time | relevance | path

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

/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dmtx_timedlock.c37 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()
Dmtx_init.c43 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()
Dmtx_lock.c106 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/
Dthread_mutex_test.cpp57 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/
Dthreads_posix.c180 if (type != mtx_plain && type != mtx_timed && type != mtx_try in mtx_init()
182 && type != (mtx_timed|mtx_recursive) in mtx_init()
Dthreads_win32.c257 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/
Dthreads.h38 mtx_timed = 2, enumerator
/third_party/musl/porting/liteos_m/kernel/include/
Dthreads.h38 mtx_timed = 2, enumerator
/third_party/musl/include/
Dthreads.h38 mtx_timed = 2, enumerator
/third_party/musl/porting/uniproton/kernel/include/
Dthreads.h38 mtx_timed = 2, enumerator
/third_party/mesa3d/src/c11/
Dthreads.h147 mtx_timed = 2, enumerator
/third_party/glfw/deps/
Dtinycthread.h177 #define mtx_timed 2 macro
/third_party/glfw/examples/
Dparticles.c1041 mtx_init(&thread_sync.particles_lock, mtx_timed); in main()