/third_party/mesa3d/src/util/ |
H A D | u_thread.h | 135 int ret = pthread_setname_np(pthread_self(), name); in u_thread_setname() 141 pthread_setname_np(pthread_self(), buf); in u_thread_setname() 146 pthread_setname_np(pthread_self(), "%s", (void *)name); in u_thread_setname() 148 pthread_setname_np(name); in u_thread_setname() 152 #warning Not sure how to call pthread_setname_np in u_thread_setname()
|
/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/ |
H A D | thread_pthrd_test.cpp | 43 EXPECT_EQ(0, pthread_setname_np(pthread_self(), "shortname")); in PthreadNameNp() 48 EXPECT_EQ(0, pthread_setname_np(pthread_self(), "uselongnametest")); in PthreadNameNp() 52 EXPECT_EQ(ERANGE, pthread_setname_np(pthread_self(), "namecannotoversixth")); in PthreadNameNp() 100 EXPECT_DEATH(pthread_setname_np(deadThread, "short name"), ".*"); in HWTEST_F() 111 EXPECT_DEATH(pthread_setname_np(nullThread, "short name"), ".*"); in HWTEST_F()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | thread-posix.c | 73 pthread_setname_np(t->name); in internal_thread_func() 186 pthread_setname_np(name); in pa_thread_set_name()
|
/third_party/musl/src/thread/ |
H A D | pthread_setname_np.c | 9 int pthread_setname_np(pthread_t thread, const char *name) in pthread_setname_np() function
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | usr_lib_define.h | 64 #define pthread_setname_np b_pthread_setname_np macro
|
H A D | usr_lib_ops.h | 66 int (*pthread_setname_np)(pthread_t thread, const char *name); member
|
H A D | pthread.h | 220 int pthread_setname_np(pthread_t, const char *);
|
/third_party/musl/libc-test/src/functional/ |
H A D | pthread_getname_np.c | 39 rc = pthread_setname_np(thread, (argc > 1) ? argv[1] : set_thread_name);
in main() 40 if (rc != 0) errExitEN(rc, "pthread_setname_np failed");
in main()
|
/third_party/skia/src/gpu/vk/ |
H A D | GrVkMemoryReclaimer.cpp | 27 int err = pthread_setname_np(pthread_self(), "async-reclaimer"); in getThreadPool() 29 SK_LOGE("GrVkMemoryReclaimer::GetThreadPool pthread_setname_np, error = %d", err); in getThreadPool()
|
/third_party/libuv/src/unix/ |
H A D | darwin-proctitle.c | 44 err = pthread_setname_np(namebuf); in uv__pthread_setname_np()
|
/third_party/node/deps/uv/src/unix/ |
H A D | darwin-proctitle.c | 44 err = pthread_setname_np(namebuf); in uv__pthread_setname_np()
|
/third_party/musl/porting/liteos_m/user/hook/ |
H A D | los_usr_libc.c | 171 int pthread_setname_np(pthread_t thread, const char *name) in pthread_setname_np() function 173 return g_usrLibc->pthread_setname_np(thread, name); in pthread_setname_np()
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
H A D | thread.cpp | 422 pthread_setname_np(name); in setName() 426 pthread_setname_np(pthread_self(), name); in setName()
|
/third_party/FreeBSD/lib/libc/include/ |
H A D | namespace.h | 193 #define pthread_setname_np _pthread_setname_np
macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | pthread.h | 227 int pthread_setname_np(pthread_t, const char *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | pthread.h | 227 int pthread_setname_np(pthread_t, const char *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | pthread.h | 227 int pthread_setname_np(pthread_t, const char *);
|
/third_party/musl/porting/linux/user/include/ |
H A D | pthread.h | 400 int pthread_setname_np(pthread_t, const char *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | pthread.h | 272 int pthread_setname_np(pthread_t, const char *);
|
/third_party/musl/include/ |
H A D | pthread.h | 375 int pthread_setname_np(pthread_t, const char *);
|
/third_party/elfutils/debuginfod/ |
H A D | debuginfod.cxx | 2607 (void) pthread_setname_np (pthread_self(), "mhd-buildid-after-you"); in handler_cb() 2619 (void) pthread_setname_np (pthread_self(), "mhd-buildid"); in handler_cb() 4352 (void) pthread_setname_np (pt, "groom"); in main() 4363 (void) pthread_setname_np (pt, "traverse"); in main() 4373 (void) pthread_setname_np (pt, "scan"); in main()
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_pthread.cpp | 644 perror("pthread_create pthread_setname_np"); in Bm_function_pthread_setname_np() 648 if (pthread_setname_np(tid, threadName) != 0) { in Bm_function_pthread_setname_np() 649 perror("pthread_setname_np proc"); in Bm_function_pthread_setname_np()
|
/third_party/libwebsockets/lib/misc/threadpool/ |
H A D | threadpool.c | 732 pthread_setname_np(tp->pool_list[n].thread, name); in lws_threadpool_create()
|
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-posix.cc | 1025 pthread_setname_np(pthread_self(), "%s", name); in SetThreadName() 1027 // pthread_setname_np is only available in 10.6 or later, so test in SetThreadName() 1031 dlsym(RTLD_DEFAULT, "pthread_setname_np"); in SetThreadName()
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
H A D | mod.rs | 2643 pub fn pthread_setname_np( in pthread_setname_np() functions
|