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

/external/qemu/
H A Dqemu-thread.h37 void *(*start_routine)(void*),
H A Dqemu-thread.c153 void *(*start_routine)(void*),
163 err = pthread_create(&thread->thread, NULL, start_routine, arg);
152 qemu_thread_create(QemuThread *thread, void *(*start_routine)(void*), void *arg) argument
H A Dposix-aio-compat.c115 void *(*start_routine)(void*), void *arg)
117 int ret = pthread_create(thread, attr, start_routine, arg);
114 thread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void*), void *arg) argument
/external/compiler-rt/lib/asan/
H A Dasan_thread.cc29 AsanThread *AsanThread::Create(u32 parent_tid, thread_callback_t start_routine, argument
33 thread->start_routine_ = start_routine;
H A Dasan_thread.h65 static AsanThread *Create(u32 parent_tid, thread_callback_t start_routine,
H A Dasan_intercepted_functions.h166 void *(*start_routine)(void*), void *arg);
H A Dasan_interceptors.cc109 void *attr, void *(*start_routine)(void*), void *arg) {
112 AsanThread *t = AsanThread::Create(current_tid, start_routine, arg, &stack);
591 DWORD (__stdcall *start_routine)(void*), void* arg,
595 AsanThread *t = AsanThread::Create(current_tid, start_routine, arg, &stack);
108 INTERCEPTOR(int, pthread_create, void *thread, void *attr, void *(*start_routine)(void*), void *arg) argument
589 INTERCEPTOR_WINAPI(DWORD, CreateThread, void* security, uptr stack_size, DWORD (__stdcall *start_routine)(void*), void* arg, DWORD flags, void* tid) argument
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_sock_thread.c164 static inline pthread_t create_thread(void *(*start_routine)(void *), void * arg)
170 if( pthread_create(&thread_id, &thread_attr, start_routine, arg)!=0 )
H A Dbtif_hl.c5164 static inline pthread_t create_thread(void *(*start_routine)(void *), void * arg){
5171 if ( pthread_create(&thread_id, &thread_attr, start_routine, arg)!=0 )

Completed in 2250 milliseconds