Home
last modified time | relevance | path

Searched refs:mtx_recursive (Results 1 – 17 of 17) sorted by relevance

/third_party/mesa3d/src/c11/impl/
Dthreads_posix.c181 && 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()
Dthreads_win32.c258 && 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/
Dmtx_init.c55 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()
Dmtx_lock.c131 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()
Dmtx_trylock.c52 int result = mtx_init(&g_mtex, mtx_plain | mtx_recursive); in mtx_trylock_0100()
/third_party/musl/src/thread/
Dmtx_init.c7 ._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/
Dthread_mutex_test.cpp68 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/
Dthreads.h37 mtx_recursive = 1, enumerator
/third_party/musl/porting/liteos_m/kernel/include/
Dthreads.h37 mtx_recursive = 1, enumerator
/third_party/musl/include/
Dthreads.h37 mtx_recursive = 1, enumerator
/third_party/musl/porting/uniproton/kernel/include/
Dthreads.h37 mtx_recursive = 1, enumerator
/third_party/glfw/deps/
Dtinycthread.c60 mtx->mRecursive = type & mtx_recursive; in mtx_init()
67 if (type & mtx_recursive) in mtx_init()
Dtinycthread.h179 #define mtx_recursive 8 macro
/third_party/mesa3d/src/c11/
Dthreads.h148 mtx_recursive = 4 enumerator
/third_party/mesa3d/src/mesa/main/
Dtexturebindless.c427 mtx_init(&shared->HandlesMutex, mtx_recursive); in _mesa_init_shared_handles()
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_screen.c1320 (void) mtx_init(&svgascreen->swc_mutex, mtx_recursive); in svga_screen_create()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_pipe.c1195 (void)mtx_init(&sscreen->aux_context_lock, mtx_recursive); in radeonsi_screen_create_impl()