Searched defs:entryFunction (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/include/utils/
H A DAndroidThreads.h40 extern int androidCreateThreadEtc(android_thread_func_t entryFunction,
52 extern int androidCreateRawThreadEtc(android_thread_func_t entryFunction,
61 typedef int (*android_create_thread_fn)(android_thread_func_t entryFunction,
104 inline bool createThreadEtc(thread_func_t entryFunction, argument
111 return androidCreateThreadEtc(entryFunction, userData, threadName,
/frameworks/native/libs/utils/
H A DThreads.cpp86 thread_func_t entryFunction; member in struct:thread_data_t
94 thread_func_t f = t->entryFunction;
136 int androidCreateRawThreadEtc(android_thread_func_t entryFunction, argument
159 t->entryFunction = entryFunction;
161 entryFunction = (android_thread_func_t)&thread_data_t::trampoline;
173 (android_pthread_entry)entryFunction, userData);
178 entryFunction, result, errno, threadPriority);
303 int androidCreateThreadEtc(android_thread_func_t entryFunction, argument
310 return gCreateThreadFn(entryFunction, userDat
[all...]
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp1016 android_thread_func_t entryFunction,
1028 args[0] = (void*) entryFunction;
1015 javaCreateThreadEtc( android_thread_func_t entryFunction, void* userData, const char* threadName, int32_t threadPriority, size_t threadStackSize, android_thread_id_t* threadId) argument

Completed in 1289 milliseconds