Searched refs:start_routine (Results 1 – 9 of 9) sorted by relevance
/aosp12/bionic/libc/bionic/ |
H A D | pthread_create.cpp | 364 void* result = thread->start_routine(thread->start_routine_arg); in __pthread_start() 381 void* (*start_routine)(void*), void* arg) { in pthread_create() 411 thread->start_routine = start_routine; in pthread_create() 454 thread->start_routine = __do_nothing; in pthread_create()
|
H A D | pthread_internal.h | 101 void* (*start_routine)(void*); variable
|
/aosp12/hardware/qcom/camera/msm8998/QCamera2/util/ |
H A D | QCameraCmdThread.cpp | 93 int32_t QCameraCmdThread::launch(void *(*start_routine)(void *), in launch() 99 start_routine, in launch()
|
H A D | QCameraCmdThread.h | 63 int32_t launch(void *(*start_routine)(void *), void* user_data);
|
/aosp12/bionic/tests/ |
H A D | struct_layout_test.cpp | 40 CHECK_OFFSET(pthread_internal_t, start_routine, 96); in tests() 81 CHECK_OFFSET(pthread_internal_t, start_routine, 48); in tests()
|
H A D | unistd_test.cpp | 589 static int CloneStartRoutine(int (*start_routine)(void*)) { in CloneStartRoutine() 591 return clone(start_routine, untag_address(&child_stack[1024]), SIGCHLD, nullptr); in CloneStartRoutine()
|
/aosp12/system/bt/btif/src/ |
H A D | btif_sock_thread.cc | 106 static inline int create_thread(void* (*start_routine)(void*), void* arg, in create_thread() 116 ret = pthread_create(thread_id, &thread_attr, start_routine, arg); in create_thread()
|
/aosp12/system/extras/ioshark/ |
H A D | ioshark_bench.c | 603 ioshark_pthread_create(pthread_t *tidp, void *(*start_routine)(void *)) in ioshark_pthread_create() 610 return pthread_create(tidp, &attr, start_routine, (void *)NULL); in ioshark_pthread_create()
|
/aosp12/system/bt/btif/co/ |
H A D | bta_hh_co.cc | 205 static inline pthread_t create_thread(void* (*start_routine)(void*), in create_thread() 213 if (pthread_create(&thread_id, &thread_attr, start_routine, arg) != 0) { in create_thread()
|