Searched defs:start_routine (Results 1 - 8 of 8) 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/msan/
H A Dmsan_thread.cc10 MsanThread *MsanThread::Create(thread_callback_t start_routine, argument
15 thread->start_routine_ = start_routine;
/external/qemu/util/
H A Dqemu-thread-posix.c392 void *(*start_routine)(void*),
413 err = pthread_create(&thread->thread, &attr, start_routine, arg);
391 qemu_thread_create(QemuThread *thread, void *(*start_routine)(void*), void *arg, int mode) argument
H A Dqemu-thread-win32.c258 void *(*start_routine)(void *); member in struct:QemuThreadData
273 void *(*start_routine)(void *) = data->start_routine;
281 qemu_thread_exit(start_routine(thread_arg));
329 void *(*start_routine)(void *),
336 data->start_routine = start_routine;
/external/compiler-rt/lib/asan/
H A Dasan_thread.cc78 AsanThread *AsanThread::Create(thread_callback_t start_routine, argument
83 thread->start_routine_ = start_routine;
H A Dasan_interceptors.cc175 void *attr, void *(*start_routine)(void*), void *arg) {
186 AsanThread *t = AsanThread::Create(start_routine, arg);
713 DWORD (__stdcall *start_routine)(void*), void* arg,
720 AsanThread *t = AsanThread::Create(start_routine, arg);
174 INTERCEPTOR(int, pthread_create, void *thread, void *attr, void *(*start_routine)(void*), void *arg) argument
711 INTERCEPTOR_WINAPI(DWORD, CreateThread, void* security, uptr stack_size, DWORD (__stdcall *start_routine)(void*), void* arg, DWORD thr_flags, void* tid) argument
/external/qemu/
H A Dposix-aio-compat.c115 void *(*start_routine)(void*), void *arg)
117 int ret = pthread_create(thread, attr, start_routine, arg);
114 thread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void*), void *arg) argument
/external/compiler-rt/lib/dfsan/
H A Ddfsan_custom.cc321 void *start_routine; member in struct:pthread_create_info
329 return pci.start_routine_trampoline(pci.start_routine, pci.arg, 0,
337 void *start_routine, void *arg, dfsan_label thread_label,
343 pci->start_routine = start_routine;
333 __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

Completed in 151 milliseconds