Searched refs:mtx_recursive (Results 1 – 17 of 17) sorted by relevance
/third_party/mesa3d/src/c11/impl/ |
D | threads_posix.c | 181 && type != (mtx_plain|mtx_recursive) in mtx_init() 182 && type != (mtx_timed|mtx_recursive) in mtx_init() 183 && type != (mtx_try|mtx_recursive)) in mtx_init() 186 if ((type & mtx_recursive) == 0) { in mtx_init()
|
D | threads_win32.c | 258 && type != (mtx_plain|mtx_recursive) in mtx_init() 259 && type != (mtx_timed|mtx_recursive) in mtx_init() 260 && type != (mtx_try|mtx_recursive)) in mtx_init()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/ |
D | mtx_init.c | 55 ret = mtx_init(&g_mtx, mtx_plain | mtx_recursive); in mtx_init_0300() 67 ret = mtx_init(&g_mtx, mtx_timed | mtx_recursive); in mtx_init_0400()
|
D | mtx_lock.c | 131 int result = mtx_init(&g_mtex, mtx_plain | mtx_recursive); in mtx_lock_0300() 156 int result= mtx_init(&g_mtex, mtx_timed | mtx_recursive); in mtx_lock_0400() 182 int result = mtx_init(&g_mtex, mtx_plain | mtx_recursive); in mtx_lock_0500()
|
D | mtx_trylock.c | 52 int result = mtx_init(&g_mtex, mtx_plain | mtx_recursive); in mtx_trylock_0100()
|
/third_party/musl/src/thread/ |
D | mtx_init.c | 7 ._m_type = ((type&mtx_recursive) ? PTHREAD_MUTEX_RECURSIVE : PTHREAD_MUTEX_NORMAL), in mtx_init()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/ |
D | thread_mutex_test.cpp | 68 EXPECT_EQ(thrd_success, mtx_init(&mtx_, mtx_plain | mtx_recursive)); 79 EXPECT_EQ(thrd_success, mtx_init(&mtx_, mtx_timed | mtx_recursive)); 107 EXPECT_EQ(thrd_success, mtx_init(&mtx_, mtx_plain | mtx_recursive));
|
/third_party/musl/ndk_musl_include/ |
D | threads.h | 37 mtx_recursive = 1, enumerator
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | threads.h | 37 mtx_recursive = 1, enumerator
|
/third_party/musl/include/ |
D | threads.h | 37 mtx_recursive = 1, enumerator
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | threads.h | 37 mtx_recursive = 1, enumerator
|
/third_party/glfw/deps/ |
D | tinycthread.c | 60 mtx->mRecursive = type & mtx_recursive; in mtx_init() 67 if (type & mtx_recursive) in mtx_init()
|
D | tinycthread.h | 179 #define mtx_recursive 8 macro
|
/third_party/mesa3d/src/c11/ |
D | threads.h | 148 mtx_recursive = 4 enumerator
|
/third_party/mesa3d/src/mesa/main/ |
D | texturebindless.c | 427 mtx_init(&shared->HandlesMutex, mtx_recursive); in _mesa_init_shared_handles()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
D | svga_screen.c | 1320 (void) mtx_init(&svgascreen->swc_mutex, mtx_recursive); in svga_screen_create()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_pipe.c | 1195 (void)mtx_init(&sscreen->aux_context_lock, mtx_recursive); in radeonsi_screen_create_impl()
|