HomeSort by relevance Sort by last modified time
    Searched refs:start_routine (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /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 77 * @start_routine : thread routine function ptr
84 int32_t QCameraCmdThread::launch(void *(*start_routine)(void *),
90 start_routine,
  /device/lge/hammerhead/camera/QCamera2/util/
QCameraCmdThread.h 60 int32_t launch(void *(*start_routine)(void *), void* user_data);
QCameraCmdThread.cpp 78 * @start_routine : thread routine function ptr
85 int32_t QCameraCmdThread::launch(void *(*start_routine)(void *),
91 start_routine,
  /device/moto/shamu/camera/QCamera2/util/
QCameraCmdThread.h 60 int32_t launch(void *(*start_routine)(void *), void* user_data);
QCameraCmdThread.cpp 78 * @start_routine : thread routine function ptr
85 int32_t QCameraCmdThread::launch(void *(*start_routine)(void *),
91 start_routine,
  /hardware/qcom/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.cc 10 MsanThread *MsanThread::Create(thread_callback_t start_routine,
15 thread->start_routine_ = start_routine;
msan_thread.h 24 static MsanThread *Create(thread_callback_t start_routine, void *arg);
  /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 199 void* result = thread->start_routine(thread->start_routine_arg);
213 void* (*start_routine)(void*), void* arg) {
243 thread->start_routine = start_routine;
274 // Mark the thread detached and replace its start_routine with a no-op.
278 thread->start_routine = __do_nothing;
pthread_internal.h 86 void* (*start_routine)(void*); member in struct:pthread_internal_t
  /external/compiler-rt/lib/asan/
asan_win.cc 88 DWORD (__stdcall *start_routine)(void*), void* arg,
99 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
117 /* start_routine */ nullptr, /* arg */ nullptr,
asan_thread.h 58 static AsanThread *Create(thread_callback_t start_routine, void *arg,
asan_thread.cc 83 AsanThread *AsanThread::Create(thread_callback_t start_routine, void *arg,
89 thread->start_routine_ = start_routine;
  /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);
  /external/compiler-rt/lib/dfsan/
dfsan_custom.cc 327 void *start_routine; member in struct:pthread_create_info
335 return pci.start_routine_trampoline(pci.start_routine, pci.arg, 0,
343 void *start_routine, void *arg, dfsan_label thread_label,
349 pci->start_routine = start_routine;
    [all...]
  /system/bt/btif/co/
bta_hh_co.c 151 static inline pthread_t create_thread(void *(*start_routine)(void *), void * arg){
158 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);

Completed in 395 milliseconds

1 2 3 4 5