Searched refs:entryFunction (Results 1 – 2 of 2) sorted by relevance
| /system/core/libutils/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 | 67 thread_func_t entryFunction; member 75 thread_func_t f = t->entryFunction; in trampoline() 126 int androidCreateRawThreadEtc(android_thread_func_t entryFunction, in androidCreateRawThreadEtc() argument 149 t->entryFunction = entryFunction; in androidCreateRawThreadEtc() 151 entryFunction = (android_thread_func_t)&thread_data_t::trampoline; in androidCreateRawThreadEtc() 164 pthread_arg->entry_func = entryFunction; in androidCreateRawThreadEtc() 173 entryFunction, result, strerror(errno), threadPriority); in androidCreateRawThreadEtc() 296 int androidCreateThreadEtc(android_thread_func_t entryFunction, in androidCreateThreadEtc() argument 303 return gCreateThreadFn(entryFunction, userData, threadName, in androidCreateThreadEtc()
|