Home
last modified time | relevance | path

Searched refs:entryFunction (Results 1 – 2 of 2) sorted by relevance

/system/core/libutils/include/utils/
DAndroidThreads.h40 extern int androidCreateThreadEtc(android_thread_func_t entryFunction,
52 extern int androidCreateRawThreadEtc(android_thread_func_t entryFunction,
64 typedef int (*android_create_thread_fn)(android_thread_func_t entryFunction,
104 inline bool createThreadEtc(thread_func_t entryFunction,
111 return androidCreateThreadEtc(entryFunction, userData, threadName,
/system/core/libutils/
DThreads.cpp68 thread_func_t entryFunction; member
76 thread_func_t f = t->entryFunction; in trampoline()
117 int androidCreateRawThreadEtc(android_thread_func_t entryFunction, in androidCreateRawThreadEtc() argument
140 t->entryFunction = entryFunction; in androidCreateRawThreadEtc()
142 entryFunction = (android_thread_func_t)&thread_data_t::trampoline; in androidCreateRawThreadEtc()
154 (android_pthread_entry)entryFunction, userData); in androidCreateRawThreadEtc()
159 entryFunction, result, strerror(errno), threadPriority); in androidCreateRawThreadEtc()
282 int androidCreateThreadEtc(android_thread_func_t entryFunction, in androidCreateThreadEtc() argument
289 return gCreateThreadFn(entryFunction, userData, threadName, in androidCreateThreadEtc()