/external/llvm-project/openmp/runtime/test/ |
D | omp_testsuite.h | 30 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/ |
D | sanitizer_pthread_wrappers.h | 31 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/ |
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()
|
/external/compiler-rt/lib/safestack/ |
D | safestack.cc | 127 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/ |
D | safestack.cpp | 117 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/ |
D | thread-test.h | 80 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()
|
D | perf-test.c | 52 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()
|
D | thread1-test.c | 13 static void *start_routine(void *arg) in start_routine() function 34 status = pthread_create(&th, NULL, start_routine, NULL); in main()
|
D | tlocal-test.c | 13 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/ |
D | threading.c | 41 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()
|
D | threading.h | 67 void* (*start_routine)(void*); member 72 void* (*start_routine) (void*), void* arg);
|
/external/usrsctp/usrsctplib/netinet/ |
D | sctp_userspace.c | 57 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/ |
D | concurrent_overflow.cpp | 10 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/ |
D | pthread_everywhere.h | 49 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/ |
D | msan_thread.cc | 10 MsanThread *MsanThread::Create(thread_callback_t start_routine, in Create() argument 15 thread->start_routine_ = start_routine; in Create()
|
D | msan_thread.h | 24 static MsanThread *Create(thread_callback_t start_routine, void *arg);
|
/external/llvm-project/compiler-rt/lib/msan/ |
D | msan_thread.cpp | 10 MsanThread *MsanThread::Create(thread_callback_t start_routine, in Create() argument 15 thread->start_routine_ = start_routine; in Create()
|
D | msan_thread.h | 23 static MsanThread *Create(thread_callback_t start_routine, void *arg);
|
/external/libcap/psx/ |
D | psx.c | 174 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/ |
D | mutex.c | 33 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/ |
D | memprof_thread.cpp | 74 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/ |
D | bugprone-bad-signal-to-kill-thread.cpp | 9 void *(*start_routine)(void *), void *arg);
|
/external/compiler-rt/lib/asan/ |
D | asan_win.cc | 102 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/ |
D | RWMutex.hpp | 79 void *(*start_routine)(void *), void *arg);
|
/external/llvm-project/compiler-rt/lib/tsan/tests/rtl/ |
D | tsan_posix_util.h | 47 void *(*start_routine)(void *),
|