/netbsd-src/external/gpl3/gcc.old/dist/libgcc/ |
H A D | generic-morestack-thread.c | 97 void *(*start_routine) (void *); member 112 void *(*start_routine) (void *); in stack_split_initialize_thread() local 124 start_routine = args->start_routine; in stack_split_initialize_thread() 127 return (*start_routine) (arg); in stack_split_initialize_thread() 135 void *(*start_routine) (void *), void *) 139 void *(*start_routine) (void *), void *) 144 void *(*start_routine) (void *), void *arg) in __wrap_pthread_create() 159 args->start_routine = start_routine; in __wrap_pthread_create()
|
/netbsd-src/external/gpl3/gcc/dist/libgcc/ |
H A D | generic-morestack-thread.c | 111 void *(*start_routine) (void *); member 126 void *(*start_routine) (void *); in stack_split_initialize_thread() local 138 start_routine = args->start_routine; in stack_split_initialize_thread() 141 return (*start_routine) (arg); in stack_split_initialize_thread() 149 void *(*start_routine) (void *), void *) 153 void *(*start_routine) (void *), void *) 158 void *(*start_routine) (void *), void *arg) in __wrap_pthread_create() 173 args->start_routine = start_routine; in __wrap_pthread_create()
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
H A D | sanitizer_pthread_wrappers.h | 32 void *(*start_routine)(void *); member 39 void *ret = (start_data->start_routine)(start_data->arg); in PthreadHelperThreadProc() 45 void *(*start_routine)(void *), void *arg) { in PTHREAD_CREATE() 48 data->start_routine = start_routine; in PTHREAD_CREATE()
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/safestack/ |
H A D | safestack.cc | 125 void *(*start_routine)(void *); member 138 void *(*start_routine)(void *) = tinfo->start_routine; in thread_start() local 148 return start_routine(start_routine_arg); in thread_start() 220 void *(*start_routine)(void*), void *arg) { in INTERCEPTOR() 244 tinfo->start_routine = start_routine; in INTERCEPTOR()
|
/netbsd-src/lib/libpthread/ |
H A D | pthread_makelwp_netbsd.c | 48 pthread__makelwp(void (*start_routine)(void *), void *arg, void *priv, in pthread__makelwp() 66 _lwp_makecontext(&uc, start_routine, arg, priv, stack_base, stack_size); in pthread__makelwp()
|
/netbsd-src/external/bsd/openldap/dist/libraries/libldap/ |
H A D | thr_debug.c | 765 void *(*start_routine)( void * ); member 775 ret = call.start_routine( call.arg ); in ldap_debug_thread_wrapper() 784 void *(*start_routine)( void * ), in ldap_pvt_thread_create() 796 call->start_routine = start_routine; in ldap_pvt_thread_create() 798 start_routine = ldap_debug_thread_wrapper; in ldap_pvt_thread_create() 803 rc = ldap_int_thread_create( thread, detach, start_routine, arg ); in ldap_pvt_thread_create() 808 rc = ldap_int_thread_create( thread, detach, start_routine, arg ); in ldap_pvt_thread_create() 1200 ldap_pvt_thread_start_t *start_routine, void *arg ) in ldap_pvt_thread_pool_submit() argument 1205 rc = ldap_int_thread_pool_submit( tpool, start_routine, arg ); in ldap_pvt_thread_pool_submit()
|
H A D | thr_posix.c | 155 void *(*start_routine)( void * ), in ldap_pvt_thread_create() 185 rtn = pthread_create( thread, attr, start_routine, arg ); in ldap_pvt_thread_create() 187 rtn = pthread_create( thread, &attr, start_routine, arg ); in ldap_pvt_thread_create()
|
H A D | thr_thr.c | 67 void *(*start_routine)( void *), in ldap_pvt_thread_create() 70 return( thr_create( NULL, LDAP_PVT_THREAD_STACK_SIZE, start_routine, in ldap_pvt_thread_create()
|
H A D | thr_pth.c | 68 void *(*start_routine)( void *), in ldap_pvt_thread_create() 72 start_routine, arg ); in ldap_pvt_thread_create()
|
H A D | thr_nt.c | 76 void *(*start_routine)( void *), in ldap_pvt_thread_create() 83 thd = (HANDLE) _beginthreadex(NULL, LDAP_PVT_THREAD_STACK_SIZE, (thrfunc_t *) start_routine, in ldap_pvt_thread_create()
|
/netbsd-src/external/lgpl3/mpfr/dist/examples/ |
H A D | threads.c | 43 static void *start_routine (void *arg) in start_routine() function 76 if (pthread_create (&tid[i], NULL, start_routine, &i) != 0) in main()
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
H A D | msan_thread.cc | 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 | 24 static MsanThread *Create(thread_callback_t start_routine, void *arg);
|
/netbsd-src/external/lgpl3/mpfr/dist/tests/ |
H A D | tconst_pi.c | 32 start_routine (void *arg) in start_routine() function 71 NULL, start_routine, &table[i]); in run_pthread_test()
|
/netbsd-src/external/mpl/bind/dist/lib/isc/ |
H A D | trampoline_p.h |
|
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/ |
H A D | trampoline_p.h | 61 isc__trampoline_get(isc_threadfunc_t start_routine, isc_threadarg_t arg);
|
/netbsd-src/external/gpl3/binutils/dist/gprofng/libcollector/ |
H A D | dispatcher.c | 69 void *(*start_routine) (void *), void *arg) = NULL; 72 void *(*start_routine) (void *), void *arg) = NULL; 75 void *(*start_routine) (void *), void *arg) = NULL; 78 void *(*start_routine) (void *), void *arg) = NULL; 81 void *(*start_routine) (void *), void *arg) = NULL; 130 void *(*start_routine) (void *), void *arg) = NULL;
|
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
H A D | asan_win.cc | 139 DWORD (__stdcall *start_routine)(void*), void* arg, in INTERCEPTOR_WINAPI() 150 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
|
H A D | asan_thread.cc | 80 AsanThread *AsanThread::Create(thread_callback_t start_routine, void *arg, in Create() argument 86 thread->start_routine_ = start_routine; in Create()
|
H A D | asan_thread.h | 63 static AsanThread *Create(thread_callback_t start_routine, void *arg,
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
H A D | asan_win.cc | 141 DWORD (__stdcall *start_routine)(void*), void* arg, in INTERCEPTOR_WINAPI() 152 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
|
H A D | asan_thread.cc | 78 AsanThread *AsanThread::Create(thread_callback_t start_routine, void *arg, in Create() argument 84 thread->start_routine_ = start_routine; in Create()
|
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/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,
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/ |
H A D | tsan_posix_util.h | 48 void *(*start_routine)(void *),
|