Searched refs:entryFunction (Results 1 – 2 of 2) sorted by relevance
/system/core/include/utils/ |
D | AndroidThreads.h | 40 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/ |
D | Threads.cpp | 74 thread_func_t entryFunction; member 82 thread_func_t f = t->entryFunction; in trampoline() 123 int androidCreateRawThreadEtc(android_thread_func_t entryFunction, in androidCreateRawThreadEtc() argument 146 t->entryFunction = entryFunction; in androidCreateRawThreadEtc() 148 entryFunction = (android_thread_func_t)&thread_data_t::trampoline; in androidCreateRawThreadEtc() 160 (android_pthread_entry)entryFunction, userData); in androidCreateRawThreadEtc() 165 entryFunction, result, errno, threadPriority); in androidCreateRawThreadEtc() 288 int androidCreateThreadEtc(android_thread_func_t entryFunction, in androidCreateThreadEtc() argument 295 return gCreateThreadFn(entryFunction, userData, threadName, in androidCreateThreadEtc()
|