| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/ |
| H A D | sanitizer_pthread_wrappers.h | 31 void *(*start_routine)(void *); member 38 (start_data->start_routine)(start_data->arg); in PthreadHelperThreadProc() 44 void *(*start_routine)(void *), void *arg) { in PTHREAD_CREATE() 47 data->start_routine = start_routine; in PTHREAD_CREATE()
|
| /llvm-project-15.0.7/openmp/runtime/test/ |
| H A D | omp_testsuite.h | 84 void* (*start_routine)(void*); member 92 function_information->start_routine(function_information->arg); in __thread_func_wrapper() 99 void *(*start_routine) (void *), void *arg) { in pthread_create() 103 info->start_routine = start_routine; in pthread_create()
|
| /llvm-project-15.0.7/compiler-rt/lib/safestack/ |
| H A D | safestack.cpp | 117 void *(*start_routine)(void *); member 130 void *(*start_routine)(void *) = tinfo->start_routine; in thread_start() local 140 return start_routine(start_routine_arg); in thread_start() 210 void *(*start_routine)(void*), void *arg) { in INTERCEPTOR() 235 tinfo->start_routine = start_routine; in INTERCEPTOR()
|
| /llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Posix/ |
| H A D | concurrent_overflow.cpp | 10 static void *start_routine(void *arg) { in start_routine() function 26 pthread_create(&thread[i], NULL, &start_routine, (void *)&counter); in main()
|
| /llvm-project-15.0.7/compiler-rt/lib/dfsan/ |
| H A D | dfsan_thread.cpp | 10 DFsanThread *DFsanThread::Create(thread_callback_t start_routine, void *arg, in Create() argument 15 thread->start_routine_ = start_routine; in Create()
|
| H A D | dfsan_thread.h | 27 static DFsanThread *Create(thread_callback_t start_routine, void *arg,
|
| H A D | dfsan_custom.cpp | 756 void *start_routine, void *arg, in dfsan_pthread_create() argument 769 DFsanThread::Create((thread_callback_t)start_routine, arg, track_origins); in dfsan_pthread_create() 780 pthread_t *thread, const pthread_attr_t *attr, void *start_routine, in __dfsw_pthread_create() argument 784 return dfsan_pthread_create(thread, attr, start_routine, arg, ret_label); in __dfsw_pthread_create() 788 pthread_t *thread, const pthread_attr_t *attr, void *start_routine, in __dfso_pthread_create() argument 794 return dfsan_pthread_create(thread, attr, start_routine, arg, ret_label, in __dfso_pthread_create()
|
| /llvm-project-15.0.7/compiler-rt/lib/msan/ |
| H A D | msan_thread.cpp | 10 MsanThread *MsanThread::Create(thread_callback_t start_routine, in Create() argument 15 thread->start_routine_ = start_routine; in Create()
|
| H A D | msan_thread.h | 23 static MsanThread *Create(thread_callback_t start_routine, void *arg);
|
| /llvm-project-15.0.7/compiler-rt/lib/memprof/ |
| H A D | memprof_thread.cpp | 74 MemprofThread *MemprofThread::Create(thread_callback_t start_routine, void *arg, in Create() argument 80 thread->start_routine_ = start_routine; in Create()
|
| H A D | memprof_thread.h | 59 static MemprofThread *Create(thread_callback_t start_routine, void *arg,
|
| H A D | memprof_interceptors.cpp | 158 void *(*start_routine)(void *), void *arg) { in INTERCEPTOR() 177 MemprofThread *t = MemprofThread::Create(start_routine, arg, current_tid, in INTERCEPTOR()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | bad-signal-to-kill-thread.cpp | 9 void *(*start_routine)(void *), void *arg);
|
| H A D | posix-return.cpp | 36 extern "C" int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)…
|
| /llvm-project-15.0.7/libunwind/src/ |
| H A D | RWMutex.hpp | 79 void *(*start_routine)(void *), void *arg);
|
| /llvm-project-15.0.7/compiler-rt/lib/asan/ |
| H A D | asan_win.cpp | 141 SIZE_T stack_size, LPTHREAD_START_ROUTINE start_routine, in INTERCEPTOR_WINAPI() argument 152 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
|
| H A D | asan_thread.h | 61 static AsanThread *Create(thread_callback_t start_routine, void *arg,
|
| H A D | asan_thread.cpp | 77 AsanThread *AsanThread::Create(thread_callback_t start_routine, void *arg, in Create() argument 83 thread->start_routine_ = start_routine; in Create()
|
| H A D | asan_interceptors.cpp | 203 void *attr, void *(*start_routine)(void*), void *arg) { in INTERCEPTOR() 215 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR()
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/tests/rtl/ |
| H A D | tsan_posix_util.h | 47 void *(*start_routine)(void *),
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | std-c-library-functions-POSIX.c | 281 …read_t *restrict thread, const pthread_attr_t *restrict attr, void *(*start_routine)(void *), void…
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | AttrDocs.td | 5646 (``start_routine``) is called zero or more times by the ``pthread_create`` function, 5656 __attribute__((callback (start_routine, arg))) 5658 void *(*start_routine) (void *), void *arg); 5662 void *(*start_routine) (void *), void *arg);
|