| /llvm-project-15.0.7/lldb/test/API/functionalities/thread/multi_break/ |
| H A D | main.cpp | 14 thread_func () in thread_func() function 32 std::thread thread_1(thread_func); in main() 33 std::thread thread_2(thread_func); in main()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/thread/step_out/ |
| H A D | main.cpp | 16 thread_func () in thread_func() function 34 std::thread thread_1(thread_func); in main() 35 std::thread thread_2(thread_func); in main()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/lldbutil/iter/ |
| H A D | main.cpp | 48 thread_func (void *arg) in thread_func() function 85 g_thread_1 = std::thread(thread_func, (void*)&thread_index_1); in main() 86 g_thread_2 = std::thread(thread_func, (void*)&thread_index_2); in main() 87 g_thread_3 = std::thread(thread_func, (void*)&thread_index_3); in main()
|
| /llvm-project-15.0.7/compiler-rt/test/tsan/Darwin/ |
| H A D | libcxx-call-once.mm | 12 void thread_func() { function 24 std::thread t1(thread_func); 25 std::thread t2(thread_func);
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/thread/state_after_expression/ |
| H A D | main.cpp | 3 void thread_func() { in thread_func() function 11 std::thread stopped_thread(thread_func); in main()
|
| /llvm-project-15.0.7/lldb/test/Shell/Watchpoint/Inputs/ |
| H A D | thread-dbreg.c | 5 void *thread_func(void *arg) { in thread_func() function 13 if (pthread_create(&thread, 0, thread_func, 0)) in main()
|
| /llvm-project-15.0.7/lldb/test/API/commands/gui/expand-threads-tree/ |
| H A D | main.cpp | 10 void thread_func() { in thread_func() function 19 std::thread thread(thread_func); in main()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/thread/concurrent_events/exit/ |
| H A D | main.cpp | 18 void thread_func() { in thread_func() function 25 std::thread(thread_func).detach(); in main()
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/multiple_threads/ |
| H A D | main.cpp | 8 void thread_func() { in thread_func() function 20 std::thread thread(thread_func); in main()
|
| /llvm-project-15.0.7/compiler-rt/test/lsan/TestCases/Linux/ |
| H A D | cleanup_in_tsd_destructor.c | 29 void *thread_func(void *arg) { in thread_func() function 41 res = pthread_create(&thread_id, 0, thread_func, 0); in main()
|
| H A D | disabler_in_tsd_destructor.c | 23 void *thread_func(void *arg) { in thread_func() function 33 res = pthread_create(&thread_id, 0, thread_func, 0); in main()
|
| /llvm-project-15.0.7/compiler-rt/test/scudo/ |
| H A D | tsd_destruction.c | 26 void *thread_func(void *arg) { in thread_func() function 38 pthread_create(&tid[i], 0, thread_func, (void *)i); in main()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/ |
| H A D | main.cpp | 18 thread_func (uint32_t thread_index) { in thread_func() function 36 thread = std::thread{thread_func, std::distance(threads, &thread)}; in main()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/plugins/python_os_plugin/stepping_plugin_threads/ |
| H A D | main.cpp | 30 void *thread_func() { in thread_func() function 42 std::thread thread_1(thread_func); in main()
|
| /llvm-project-15.0.7/openmp/runtime/test/affinity/ |
| H A D | root-threads-affinity.c | 78 void* thread_func(void *arg) { in thread_func() function 182 pthread_create(roots + i, NULL, thread_func, root_ids + i); in main() 186 thread_func(root_ids); in main()
|
| /llvm-project-15.0.7/libc/test/integration/src/threads/ |
| H A D | thrd_test.cpp | 18 static int thread_func(void *) { in thread_func() function 27 ASSERT_EQ(__llvm_libc::thrd_create(&thread, thread_func, nullptr), in create_and_join()
|
| /llvm-project-15.0.7/libc/test/integration/src/pthread/ |
| H A D | pthread_test.cpp | 17 static void *thread_func(void *) { in thread_func() function 27 __llvm_libc::pthread_create(&thread, nullptr, thread_func, nullptr), 0); in create_and_join()
|
| /llvm-project-15.0.7/lldb/test/Shell/ExecControl/StopHook/Inputs/ |
| H A D | stop-hook-threads.cpp | 30 thread_func (uint32_t thread_index) in thread_func() function 62 thread = std::thread{thread_func, std::distance(threads, &thread)}; in main()
|
| /llvm-project-15.0.7/lldb/test/API/tools/lldb-server/vCont-threads/ |
| H A D | main.cpp | 28 static void thread_func() { in thread_func() function 66 threads.emplace_back(thread_func); in main()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/watchpoint/watchlocation/ |
| H A D | main.cpp | 48 thread_func (uint32_t thread_index) in thread_func() function 83 thread = std::thread{thread_func, std::distance(threads, &thread)}; in main()
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_posix_test.cpp | 38 void *thread_func(void *arg) { in thread_func() function 45 ASSERT_EQ(0, pthread_create(&tid, 0, &thread_func, in SpawnThread()
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_set_command/ |
| H A D | main.cpp | 56 thread_func (uint32_t thread_index) in thread_func() function 89 thread = std::thread{thread_func, std::distance(threads, &thread)}; in main()
|
| /llvm-project-15.0.7/lldb/test/API/commands/watchpoints/hello_watchlocation/ |
| H A D | main.cpp | 48 thread_func (uint32_t thread_index) in thread_func() function 83 thread = std::thread{thread_func, std::distance(threads, &thread)}; in main()
|
| /llvm-project-15.0.7/lldb/test/Shell/Watchpoint/ |
| H A D | netbsd-nouserdbregs.test | 13 b thread_func 14 # CHECK: Breakpoint {{[0-9]+}}: where = {{.*}}`thread_func
|
| /llvm-project-15.0.7/lldb/test/API/tools/lldb-server/ |
| H A D | main.cpp | 359 threads.push_back(std::thread(thread_func, std::move(promise))); in main()
|