Home
last modified time | relevance | path

Searched refs:android_thread_func_t (Results 1 – 5 of 5) sorted by relevance

/aosp12/system/core/libutils/include/utils/
H A DAndroidThreads.h37 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 DThreadDefs.h38 typedef int (*android_thread_func_t)(void*); typedef
51 typedef android_thread_func_t thread_func_t;
/aosp12/system/core/libutils/
H A DThreads.cpp125 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 DAndroidRuntime.h146 android_thread_func_t entryFunction,
/aosp12/frameworks/base/core/jni/
H A DAndroidRuntime.cpp1413 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()