Home
last modified time | relevance | path

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

/aosp14/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;
/aosp14/system/core/libutils/
H A DThreads.cpp117 int androidCreateRawThreadEtc(android_thread_func_t entryFunction, in androidCreateRawThreadEtc()
142 entryFunction = (android_thread_func_t)&thread_data_t::trampoline; in androidCreateRawThreadEtc()
213 static bool doCreateThread(android_thread_func_t fn, void* arg, android_thread_id_t *id) in doCreateThread()
249 int androidCreateRawThreadEtc(android_thread_func_t fn, in androidCreateRawThreadEtc()
269 int androidCreateThread(android_thread_func_t fn, void* arg) in androidCreateThread()
274 int androidCreateThreadGetID(android_thread_func_t fn, void *arg, android_thread_id_t *id) in androidCreateThreadGetID()
282 int androidCreateThreadEtc(android_thread_func_t entryFunction, in androidCreateThreadEtc()
/aosp14/frameworks/base/core/jni/include/android_runtime/
H A DAndroidRuntime.h146 android_thread_func_t entryFunction,
/aosp14/frameworks/base/core/jni/
H A DAndroidRuntime.cpp1410 result = (*(android_thread_func_t)start)(userData); in javaThreadShell()
1427 android_thread_func_t entryFunction, in javaCreateThreadEtc()
1457 javaCreateThreadEtc((android_thread_func_t) start, arg, name, in createJavaThread()