Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/android-emu/aemu/base/threads/
DAndroidThread_pthread.cpp40 : mThread((pthread_t)NULL), mStackSize(stackSize), mFlags(flags) {} in Thread()
59 const auto useAttributes = mStackSize != 0; in start()
64 pthread_attr_setstacksize(&attr, mStackSize); in start()
67 if (pthread_create(&mThread, mStackSize ? &attr : nullptr, thread_main, in start()
DAndroidThread.h122 int mStackSize; variable
/hardware/google/aemu/base/
DThread_pthread.cpp30 … : mThread((pthread_t)NULL), mStackSize(stackSize), mFlags(flags), mNameOpt(std::move(nameOpt)) {} in Thread()
49 const auto useAttributes = mStackSize != 0; in start()
54 pthread_attr_setstacksize(&attr, mStackSize); in start()
57 if (pthread_create(&mThread, mStackSize ? &attr : nullptr, thread_main, in start()
DThread_win32.cpp28 : mStackSize(stackSize), mFlags(flags), mNameOpt(std::move(nameOpt)) {} in Thread()
45 mThread = CreateThread(NULL, mStackSize, &Thread::thread_main, this, 0, in start()
/hardware/google/aemu/base/include/aemu/base/threads/
DThread.h128 int mStackSize; variable