HomeSort by relevance Sort by last modified time
    Searched full:start_routine (Results 1 - 25 of 110) 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;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
assertions.xml 6 *restrict attr, void *(*start_routine) (void*), void *restrict arg);
29 The thread is created executing 'start_routine' with 'arg' as its only
33 If the 'start_routine' returns, the effect shall be as if there was an
34 implicit call to pthread_exit() using the return value of 'start_routine'
5-1.c 9 * The thread is created executing 'start_routine' with 'arg' as its only
  /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));
  /external/compiler-rt/lib/safestack/
safestack.cc 127 void *(*start_routine)(void *); member in struct:tinfo
140 void *(*start_routine)(void *) = tinfo->start_routine;
152 return start_routine(start_routine_arg);
173 void *(*start_routine)(void*), void *arg) {
197 tinfo->start_routine = start_routine;
  /bionic/libc/bionic/
pthread_create.cpp 254 void* result = thread->start_routine(thread->start_routine_arg);
270 void* (*start_routine)(void*), void* arg) {
297 thread->start_routine = start_routine;
329 // Mark the thread detached and replace its start_routine with a no-op.
333 thread->start_routine = __do_nothing;
pthread_internal.h 96 void* (*start_routine)(void*); member in class:pthread_internal_t
  /external/gemmlowp/profiling/
pthread_everywhere.h 49 void *(*start_routine)(void *), void *arg) {
50 *thread = new std::thread(start_routine, arg);
  /device/google/marlin/camera/QCamera2/util/
QCameraCmdThread.h 63 int32_t launch(void *(*start_routine)(void *), void* user_data);
QCameraCmdThread.cpp 86 * @start_routine : thread routine function ptr
93 int32_t QCameraCmdThread::launch(void *(*start_routine)(void *),
99 start_routine,
  /hardware/qcom/camera/msm8998/QCamera2/util/
QCameraCmdThread.h 63 int32_t launch(void *(*start_routine)(void *), void* user_data);
QCameraCmdThread.cpp 86 * @start_routine : thread routine function ptr
93 int32_t QCameraCmdThread::launch(void *(*start_routine)(void *),
99 start_routine,
  /external/compiler-rt/lib/asan/
asan_win.cc 102 DWORD (__stdcall *start_routine)(void*), void* arg,
113 AsanThread::Create(start_routine, arg, current_tid, &stack, detached);
131 /* start_routine */ nullptr, /* arg */ nullptr,
asan_thread.h 60 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;
  /external/compiler-rt/lib/dfsan/
dfsan_custom.cc 356 void *start_routine; member in struct:pthread_create_info
364 return pci.start_routine_trampoline(pci.start_routine, pci.arg, 0,
372 void *start_routine, void *arg, dfsan_label thread_label,
378 pci->start_routine = start_routine;
    [all...]
  /external/ImageMagick/m4/
ax_pthread.m4 223 static void *start_routine(void *a) { return a; }],
225 pthread_create(&th, 0, start_routine, 0);
  /external/google-breakpad/m4/
ax_pthread.m4 203 static void* start_routine(void* a) {return a;}],
208 pthread_create(&th,0,start_routine,0);
  /external/libmicrohttpd/m4/
ax_pthread.m4 223 static void *start_routine(void *a) { return a; }],
225 pthread_create(&th, 0, start_routine, 0);
  /external/mesa3d/m4/
ax_pthread.m4 209 static void *start_routine(void *a) { return a; }],
211 pthread_create(&th, 0, start_routine, 0);
  /external/pcre/dist2/m4/
ax_pthread.m4 209 static void *start_routine(void *a) { return a; }],
211 pthread_create(&th, 0, start_routine, 0);
  /system/bt/btif/co/
bta_hh_co.cc 166 static inline pthread_t create_thread(void* (*start_routine)(void*),
174 if (pthread_create(&thread_id, &thread_attr, start_routine, arg) != 0) {
  /system/bt/btif/src/
btif_sock_thread.cc 105 static inline int create_thread(void* (*start_routine)(void*), void* arg,
115 ret = pthread_create(thread_id, &thread_attr, start_routine, arg);

Completed in 936 milliseconds

1 2 3 4 5