Home
last modified time | relevance | path

Searched refs:start_routine (Results 1 – 9 of 9) sorted by relevance

/aosp12/bionic/libc/bionic/
H A Dpthread_create.cpp364 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 Dpthread_internal.h101 void* (*start_routine)(void*); variable
/aosp12/hardware/qcom/camera/msm8998/QCamera2/util/
H A DQCameraCmdThread.cpp93 int32_t QCameraCmdThread::launch(void *(*start_routine)(void *), in launch()
99 start_routine, in launch()
H A DQCameraCmdThread.h63 int32_t launch(void *(*start_routine)(void *), void* user_data);
/aosp12/bionic/tests/
H A Dstruct_layout_test.cpp40 CHECK_OFFSET(pthread_internal_t, start_routine, 96); in tests()
81 CHECK_OFFSET(pthread_internal_t, start_routine, 48); in tests()
H A Dunistd_test.cpp589 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 Dbtif_sock_thread.cc106 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 Dioshark_bench.c603 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 Dbta_hh_co.cc205 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()