/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_pthread_wrappers.h | 32 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;
|
/device/asus/flo/camera/QCamera2/util/ |
QCameraCmdThread.h | 60 int32_t launch(void *(*start_routine)(void *), void* user_data);
|
QCameraCmdThread.cpp | 76 * @start_routine : thread routine function ptr 83 int32_t QCameraCmdThread::launch(void *(*start_routine)(void *), 89 start_routine,
|
/device/lge/hammerhead/camera/QCamera2/util/ |
QCameraCmdThread.h | 60 int32_t launch(void *(*start_routine)(void *), void* user_data);
|
QCameraCmdThread.cpp | 77 * @start_routine : thread routine function ptr 84 int32_t QCameraCmdThread::launch(void *(*start_routine)(void *), 90 start_routine,
|
/device/moto/shamu/camera/QCamera2/util/ |
QCameraCmdThread.h | 60 int32_t launch(void *(*start_routine)(void *), void* user_data);
|
QCameraCmdThread.cpp | 77 * @start_routine : thread routine function ptr 84 int32_t QCameraCmdThread::launch(void *(*start_routine)(void *), 90 start_routine,
|
/external/compiler-rt/lib/msan/ |
msan_thread.h | 24 static MsanThread *Create(thread_callback_t start_routine, void *arg);
|
msan_thread.cc | 10 MsanThread *MsanThread::Create(thread_callback_t start_routine, 15 thread->start_routine_ = start_routine;
|
/external/jemalloc/src/ |
mutex.c | 53 const pthread_attr_t *__restrict attr, void *(*start_routine)(void *), 60 return (pthread_create_fptr(thread, attr, start_routine, arg));
|
/bionic/libc/bionic/ |
pthread_create.cpp | 141 void* result = thread->start_routine(thread->start_routine_arg); 155 void* (*start_routine)(void*), void* arg) { 208 thread->start_routine = start_routine; 240 // Mark the thread detached and replace its start_routine with a no-op. 243 thread->start_routine = __do_nothing;
|
pthread_internal.h | 81 void* (*start_routine)(void*); member in struct:pthread_internal_t
|
/external/compiler-rt/lib/asan/ |
asan_thread.h | 58 static AsanThread *Create(thread_callback_t start_routine, void *arg);
|
asan_thread.cc | 78 AsanThread *AsanThread::Create(thread_callback_t start_routine, 83 thread->start_routine_ = start_routine;
|
asan_interceptors.cc | 175 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);
|
/device/asus/flo/camera/hdr/include/ |
morpho_easy_hdr.h | 116 void * (* thread_create )(void *p, int index, void *(*start_routine)(void *arg), void *arg);
|
/device/lge/hammerhead/camera/hdr/include/ |
morpho_easy_hdr.h | 116 void * (* thread_create )(void *p, int index, void *(*start_routine)(void *arg), void *arg);
|
/device/lge/mako/camera/hdr/include/ |
morpho_easy_hdr.h | 116 void * (* thread_create )(void *p, int index, void *(*start_routine)(void *arg), void *arg);
|
/external/compiler-rt/lib/dfsan/ |
dfsan_custom.cc | 321 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;
|
/development/ndk/sources/android/libportable/arch-mips/ |
pthread.c | 123 void *(*start_routine) (void *), void *arg), 124 (thread, attr, start_routine, arg), 125 "(thread:%p attr:%p, start_routine:%p, arg:%p)");
|
/external/bluetooth/bluedroid/btif/co/ |
bta_hh_co.c | 138 static inline pthread_t create_thread(void *(*start_routine)(void *), void * arg){ 145 if ( pthread_create(&thread_id, &thread_attr, start_routine, arg)!=0 )
|
/development/ndk/platforms/android-3/include/ |
pthread.h | 144 void *(*start_routine)(void *), void * arg);
|
/development/ndk/platforms/android-5/include/ |
pthread.h | 144 void *(*start_routine)(void *), void * arg);
|
/development/ndk/platforms/android-8/include/ |
pthread.h | 144 void *(*start_routine)(void *), void * arg);
|
/development/ndk/platforms/android-9/include/ |
pthread.h | 144 void *(*start_routine)(void *), void * arg);
|