Home
last modified time | relevance | path

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

/aosp12/system/core/libutils/include/utils/
H A 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,
/aosp12/system/core/libutils/
H A DThreads.cpp72 thread_func_t entryFunction; member
80 thread_func_t f = t->entryFunction; in trampoline()
125 int androidCreateRawThreadEtc(android_thread_func_t entryFunction, in androidCreateRawThreadEtc() argument
148 t->entryFunction = entryFunction; in androidCreateRawThreadEtc()
150 entryFunction = (android_thread_func_t)&thread_data_t::trampoline; in androidCreateRawThreadEtc()
162 (android_pthread_entry)entryFunction, userData); in androidCreateRawThreadEtc()
167 entryFunction, result, strerror(errno), threadPriority); in androidCreateRawThreadEtc()
290 int androidCreateThreadEtc(android_thread_func_t entryFunction, in androidCreateThreadEtc() argument
297 return gCreateThreadFn(entryFunction, userData, threadName, in androidCreateThreadEtc()
/aosp12/frameworks/base/core/jni/include/android_runtime/
H A DAndroidRuntime.h146 android_thread_func_t entryFunction,
/aosp12/frameworks/base/core/jni/
H A DAndroidRuntime.cpp1430 android_thread_func_t entryFunction, in javaCreateThreadEtc() argument
1442 args[0] = (void*) entryFunction; in javaCreateThreadEtc()