| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/sys/contrib/zstd/lib/common/ |
| H A D | threading.c | 41 thread->arg = thread->start_routine(thread->arg); in worker() 46 void* (*start_routine) (void*), void* arg) in ZSTD_pthread_create() 50 thread->start_routine = start_routine; in ZSTD_pthread_create()
|
| H A D | threading.h | 67 void* (*start_routine)(void*); member 72 void* (*start_routine) (void*), void* arg);
|
| /freebsd-13.1/lib/libthr/thread/ |
| H A D | thr_create.c | 56 const pthread_attr_t * __restrict attr, void *(*start_routine) (void *), in _pthread_create() 119 new_thread->start_routine = start_routine; in _pthread_create() 292 _pthread_exit(curthread->start_routine(curthread->arg)); in thread_start()
|
| H A D | thr_private.h | 421 void *(*start_routine)(void *); member
|
| /freebsd-13.1/contrib/llvm-project/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);
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan_thread.cpp | 11 thread_callback_t start_routine, void *arg, in Create() argument 17 thread->start_routine_ = start_routine; in Create()
|
| H A D | dfsan_thread.h | 28 thread_callback_t start_routine, void *arg,
|
| H A D | dfsan_custom.cpp | 763 void *start_routine, void *arg, in dfsan_pthread_create() argument 777 (thread_callback_t)start_routine, arg, track_origins); in dfsan_pthread_create() 790 void *start_routine, void *arg, dfsan_label thread_label, in __dfsw_pthread_create() argument 794 start_routine, arg, ret_label); in __dfsw_pthread_create() 802 void *start_routine, void *arg, dfsan_label thread_label, in __dfso_pthread_create() argument 808 start_routine, arg, ret_label, true); in __dfso_pthread_create()
|
| /freebsd-13.1/contrib/llvm-project/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 | 162 void *(*start_routine)(void *), void *arg) { in INTERCEPTOR() 181 MemprofThread *t = MemprofThread::Create(start_routine, arg, current_tid, in INTERCEPTOR()
|
| /freebsd-13.1/contrib/jemalloc/src/ |
| H A D | mutex.c | 33 const pthread_attr_t *__restrict attr, void *(*start_routine)(void *), in pthread_create() 35 return pthread_create_wrapper(thread, attr, start_routine, arg); in pthread_create()
|
| H A D | background_thread.c | 45 void *(*start_routine)(void *), void *__restrict arg) { in pthread_create_wrapper() 48 return pthread_create_fptr(thread, attr, start_routine, arg); in pthread_create_wrapper() 353 const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg) { 365 int create_err = pthread_create_wrapper(thread, attr, start_routine,
|
| /freebsd-13.1/contrib/llvm-project/libunwind/src/ |
| H A D | RWMutex.hpp | 79 void *(*start_routine)(void *), void *arg);
|
| /freebsd-13.1/contrib/llvm-project/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 | 202 void *attr, void *(*start_routine)(void*), void *arg) { in INTERCEPTOR() 214 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR()
|
| /freebsd-13.1/contrib/unbound/ |
| H A D | ax_pthread.m4 | 223 static void *start_routine(void *a) { return a; }], 225 pthread_create(&th, 0, start_routine, 0);
|
| H A D | configure | 16853 static void *start_routine(void *a) { return a; } 16858 pthread_create(&th, 0, start_routine, 0);
|
| /freebsd-13.1/sys/contrib/libsodium/m4/ |
| H A D | ax_pthread.m4 | 375 static void *start_routine(void *a) { return a; }], 377 pthread_create(&th, 0, start_routine, 0);
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | AttrDocs.td | 5399 (``start_routine``) is called zero or more times by the ``pthread_create`` function, 5409 __attribute__((callback (start_routine, arg))) 5411 void *(*start_routine) (void *), void *arg); 5415 void *(*start_routine) (void *), void *arg);
|
| /freebsd-13.1/sys/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 6907 void* (*start_routine)(void*); member 6912 void* (*start_routine) (void*), void* arg);
|