Searched refs:start_routine (Results 1 - 16 of 16) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_pthread_wrappers.h32 void *(*start_routine)(void *); member in struct:PthreadHelperCreateThreadInfo
39 void *ret = (start_data->start_routine)(start_data->arg);
45 void *(*start_routine)(void *), void *arg) {
48 data->start_routine = start_routine;
/external/compiler-rt/lib/safestack/
H A Dsafestack.cc127 void *(*start_routine)(void *); member in struct:tinfo
140 void *(*start_routine)(void *) = tinfo->start_routine;
152 return start_routine(start_routine_arg);
173 void *(*start_routine)(void*), void *arg) {
197 tinfo->start_routine = start_routine;
171 INTERCEPTOR(int, pthread_create, pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void*), void *arg) argument
/external/compiler-rt/lib/msan/
H A Dmsan_thread.cc10 MsanThread *MsanThread::Create(thread_callback_t start_routine, argument
15 thread->start_routine_ = start_routine;
H A Dmsan_thread.h24 static MsanThread *Create(thread_callback_t start_routine, void *arg);
/external/jemalloc/src/
H A Dmutex.c53 const pthread_attr_t *__restrict attr, void *(*start_routine)(void *),
60 return (pthread_create_fptr(thread, attr, start_routine, arg));
/external/compiler-rt/lib/asan/
H A Dasan_win.cc88 DWORD (__stdcall *start_routine)(void*), void* arg,
99 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
117 /* start_routine */ nullptr, /* arg */ nullptr,
86 INTERCEPTOR_WINAPI(DWORD, CreateThread, void* security, uptr stack_size, DWORD (__stdcall *start_routine)(void*), void* arg, DWORD thr_flags, void* tid) argument
H A Dasan_thread.h56 static AsanThread *Create(thread_callback_t start_routine, void *arg,
H A Dasan_thread.cc83 AsanThread *AsanThread::Create(thread_callback_t start_routine, void *arg, argument
89 thread->start_routine_ = start_routine;
H A Dasan_interceptors.cc233 void *attr, void *(*start_routine)(void*), void *arg) {
249 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
232 INTERCEPTOR(int, pthread_create, void *thread, void *attr, void *(*start_routine)(void*), void *arg) argument
/external/compiler-rt/lib/dfsan/
H A Ddfsan_custom.cc356 void *start_routine; member in struct:pthread_create_info
364 return pci.start_routine_trampoline(pci.start_routine, pci.arg, 0,
372 void *start_routine, void *arg, dfsan_label thread_label,
378 pci->start_routine = start_routine;
368 __dfsw_pthread_create( pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine_trampoline)(void *, void *, dfsan_label, dfsan_label *), void *start_routine, void *arg, dfsan_label thread_label, dfsan_label attr_label, dfsan_label start_routine_label, dfsan_label arg_label, dfsan_label *ret_label) argument
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test_util_posix.cc60 void *(*start_routine)(void *),
/external/autotest/client/tests/aiostress/
H A Daio-stress.c1212 typedef void * (*start_routine)(void *); typedef
1220 ret = pthread_create(&t[i].tid, NULL, (start_routine)worker, t + i);
/external/libmicrohttpd/src/microhttpd/
H A Ddaemon.c1261 * @param start_routine main function of thread
1262 * @param arg argument for start_routine
1268 ThreadStartRoutine start_routine,
1292 start_routine, arg);
1308 *thread = (HANDLE)_beginthreadex(NULL, (unsigned)daemon->thread_stack_size, start_routine,
1266 create_thread(MHD_thread_handle_ *thread, const struct MHD_Daemon *daemon, ThreadStartRoutine start_routine, void *arg) argument
/external/google-breakpad/
H A Dconfigure6281 static void* start_routine(void* a) {return a;}
6289 pthread_create(&th,0,start_routine,0);
/external/libmicrohttpd/
H A Dconfigure12547 static void *start_routine(void *a) { return a; }
12552 pthread_create(&th, 0, start_routine, 0);
/external/pcre/dist/
H A Dconfigure19291 static void *start_routine(void *a) { return a; }
19296 pthread_create(&th, 0, start_routine, 0);

Completed in 605 milliseconds