Home
last modified time | relevance | path

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

123

/external/llvm-project/openmp/runtime/test/
Domp_testsuite.h30 void* (*start_routine)(void*); member
38 function_information->start_routine(function_information->arg); in __thread_func_wrapper()
45 void *(*start_routine) (void *), void *arg) { in pthread_create()
49 info->start_routine = start_routine; in pthread_create()
/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_pthread_wrappers.h31 void *(*start_routine)(void *); member
38 (start_data->start_routine)(start_data->arg); in PthreadHelperThreadProc()
44 void *(*start_routine)(void *), void *arg) { in PTHREAD_CREATE()
47 data->start_routine = start_routine; in PTHREAD_CREATE()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_pthread_wrappers.h32 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()
/external/compiler-rt/lib/safestack/
Dsafestack.cc127 void *(*start_routine)(void *); member
140 void *(*start_routine)(void *) = tinfo->start_routine; in thread_start() local
152 return start_routine(start_routine_arg); in thread_start()
173 void *(*start_routine)(void*), void *arg) { in INTERCEPTOR()
197 tinfo->start_routine = start_routine; in INTERCEPTOR()
/external/llvm-project/compiler-rt/lib/safestack/
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()
/external/python/cffi/testing/embedding/
Dthread-test.h80 void *(* start_routine)(void *) = (void *(*)(void *))lpParameter; in myThreadProc() local
81 start_routine(NULL); in myThreadProc()
86 void *start_routine(void *), void *arg) in pthread_create()
89 *thread = CreateThread(NULL, 0, myThreadProc, start_routine, 0, NULL); in pthread_create()
Dperf-test.c52 static void *start_routine(void *arg) in start_routine() function
72 start_routine(0); in main()
81 status = pthread_create(&th, NULL, start_routine, NULL); in main()
Dthread1-test.c13 static void *start_routine(void *arg) in start_routine() function
34 status = pthread_create(&th, NULL, start_routine, NULL); in main()
Dtlocal-test.c13 static void *start_routine(void *arg) in start_routine() function
38 status = pthread_create(&th, NULL, start_routine, NULL); in main()
/external/zstd/lib/common/
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()
Dthreading.h67 void* (*start_routine)(void*); member
72 void* (*start_routine) (void*), void* arg);
/external/usrsctp/usrsctplib/netinet/
Dsctp_userspace.c57 start_routine_t start_routine = (start_routine_t)arg; in sctp_create_thread_adapter() local
58 return start_routine(NULL) == NULL; in sctp_create_thread_adapter()
62 sctp_userspace_thread_create(userland_thread_t *thread, start_routine_t start_routine) in sctp_userspace_thread_create() argument
65 (void *)start_routine, 0, NULL); in sctp_userspace_thread_create()
77 sctp_userspace_thread_create(userland_thread_t *thread, start_routine_t start_routine) in sctp_userspace_thread_create() argument
79 return pthread_create(thread, NULL, start_routine, NULL); in sctp_userspace_thread_create()
/external/llvm-project/compiler-rt/test/asan/TestCases/Posix/
Dconcurrent_overflow.cpp10 static void *start_routine(void *arg) { in start_routine() function
26 pthread_create(&thread[i], NULL, &start_routine, (void *)&counter); in main()
/external/gemmlowp/profiling/
Dpthread_everywhere.h49 void *(*start_routine)(void *), void *arg) { in pthread_create()
50 *thread = new std::thread(start_routine, arg); in pthread_create()
/external/compiler-rt/lib/msan/
Dmsan_thread.cc10 MsanThread *MsanThread::Create(thread_callback_t start_routine, in Create() argument
15 thread->start_routine_ = start_routine; in Create()
Dmsan_thread.h24 static MsanThread *Create(thread_callback_t start_routine, void *arg);
/external/llvm-project/compiler-rt/lib/msan/
Dmsan_thread.cpp10 MsanThread *MsanThread::Create(thread_callback_t start_routine, in Create() argument
15 thread->start_routine_ = start_routine; in Create()
Dmsan_thread.h23 static MsanThread *Create(thread_callback_t start_routine, void *arg);
/external/libcap/psx/
Dpsx.c174 void *(*start_routine) (void *), void *arg);
180 void *(*start_routine) (void *), void *arg);
455 void *(*start_routine) (void *), void *arg) { in __wrap_pthread_create()
457 starter->fn = start_routine; in __wrap_pthread_create()
/external/jemalloc_new/src/
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()
/external/llvm-project/compiler-rt/lib/memprof/
Dmemprof_thread.cpp74 MemprofThread *MemprofThread::Create(thread_callback_t start_routine, void *arg, in Create() argument
80 thread->start_routine_ = start_routine; in Create()
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dbugprone-bad-signal-to-kill-thread.cpp9 void *(*start_routine)(void *), void *arg);
/external/compiler-rt/lib/asan/
Dasan_win.cc102 DWORD (__stdcall *start_routine)(void*), void* arg, in INTERCEPTOR_WINAPI()
113 AsanThread::Create(start_routine, arg, current_tid, &stack, detached); in INTERCEPTOR_WINAPI()
/external/llvm-project/libunwind/src/
DRWMutex.hpp79 void *(*start_routine)(void *), void *arg);
/external/llvm-project/compiler-rt/lib/tsan/tests/rtl/
Dtsan_posix_util.h47 void *(*start_routine)(void *),

123