Searched refs:android_thread_func_t (Results 1 – 5 of 5) sorted by relevance
/aosp12/system/core/libutils/include/utils/ |
H A D | AndroidThreads.h | 37 extern int androidCreateThread(android_thread_func_t, void *); 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,
|
H A D | ThreadDefs.h | 38 typedef int (*android_thread_func_t)(void*); typedef 51 typedef android_thread_func_t thread_func_t;
|
/aosp12/system/core/libutils/ |
H A D | Threads.cpp | 125 int androidCreateRawThreadEtc(android_thread_func_t entryFunction, in androidCreateRawThreadEtc() 150 entryFunction = (android_thread_func_t)&thread_data_t::trampoline; in androidCreateRawThreadEtc() 221 static bool doCreateThread(android_thread_func_t fn, void* arg, android_thread_id_t *id) in doCreateThread() 257 int androidCreateRawThreadEtc(android_thread_func_t fn, in androidCreateRawThreadEtc() 277 int androidCreateThread(android_thread_func_t fn, void* arg) in androidCreateThread() 282 int androidCreateThreadGetID(android_thread_func_t fn, void *arg, android_thread_id_t *id) in androidCreateThreadGetID() 290 int androidCreateThreadEtc(android_thread_func_t entryFunction, in androidCreateThreadEtc()
|
/aosp12/frameworks/base/core/jni/include/android_runtime/ |
H A D | AndroidRuntime.h | 146 android_thread_func_t entryFunction,
|
/aosp12/frameworks/base/core/jni/ |
H A D | AndroidRuntime.cpp | 1413 result = (*(android_thread_func_t)start)(userData); in javaThreadShell() 1430 android_thread_func_t entryFunction, in javaCreateThreadEtc() 1460 javaCreateThreadEtc((android_thread_func_t) start, arg, name, in createJavaThread()
|