Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/android-emu/aemu/base/threads/
DAndroidThread.h111 static DWORD WINAPI thread_main(void* arg);
115 static void* thread_main(void* arg);
DAndroidThread_pthread.cpp67 if (pthread_create(&mThread, mStackSize ? &attr : nullptr, thread_main, in start()
132 void* Thread::thread_main(void* arg) { in thread_main() function in gfxstream::guest::Thread
/hardware/google/aemu/base/include/aemu/base/threads/
DThread.h117 static DWORD WINAPI thread_main(void* arg);
121 static void* thread_main(void* arg);
/hardware/google/aemu/base/
DThread_win32.cpp45 mThread = CreateThread(NULL, mStackSize, &Thread::thread_main, this, 0, in start()
117 DWORD WINAPI Thread::thread_main(void* arg) { in thread_main() function in android::base::Thread
DThread_pthread.cpp57 if (pthread_create(&mThread, mStackSize ? &attr : nullptr, thread_main, in start()
129 void* Thread::thread_main(void* arg) { in thread_main() function in android::base::Thread