Home
last modified time | relevance | path

Searched refs:start_routine (Results 1 – 25 of 25) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack.cpp117 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 Dthreading.c41 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 Dthreading.h67 void* (*start_routine)(void*); member
72 void* (*start_routine) (void*), void* arg);
/freebsd-13.1/lib/libthr/thread/
H A Dthr_create.c56 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 Dthr_private.h421 void *(*start_routine)(void *); member
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_thread.cpp10 MsanThread *MsanThread::Create(thread_callback_t start_routine, in Create() argument
15 thread->start_routine_ = start_routine; in Create()
H A Dmsan_thread.h23 static MsanThread *Create(thread_callback_t start_routine, void *arg);
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_thread.cpp11 thread_callback_t start_routine, void *arg, in Create() argument
17 thread->start_routine_ = start_routine; in Create()
H A Ddfsan_thread.h28 thread_callback_t start_routine, void *arg,
H A Ddfsan_custom.cpp763 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 Dmemprof_thread.cpp74 MemprofThread *MemprofThread::Create(thread_callback_t start_routine, void *arg, in Create() argument
80 thread->start_routine_ = start_routine; in Create()
H A Dmemprof_thread.h59 static MemprofThread *Create(thread_callback_t start_routine, void *arg,
H A Dmemprof_interceptors.cpp162 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 Dmutex.c33 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 Dbackground_thread.c45 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 DRWMutex.hpp79 void *(*start_routine)(void *), void *arg);
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_win.cpp141 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 Dasan_thread.h61 static AsanThread *Create(thread_callback_t start_routine, void *arg,
H A Dasan_thread.cpp77 AsanThread *AsanThread::Create(thread_callback_t start_routine, void *arg, in Create() argument
83 thread->start_routine_ = start_routine; in Create()
H A Dasan_interceptors.cpp202 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 Dax_pthread.m4223 static void *start_routine(void *a) { return a; }],
225 pthread_create(&th, 0, start_routine, 0);
H A Dconfigure16853 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 Dax_pthread.m4375 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 DAttrDocs.td5399 (``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 Dzstd.c6907 void* (*start_routine)(void*); member
6912 void* (*start_routine) (void*), void* arg);