Home
last modified time | relevance | path

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

/device/generic/goldfish-opengl/android-emu/android/base/threads/
DAndroidThread_pthread.cpp33 : mThread((pthread_t)NULL), mStackSize(stackSize), mFlags(flags) {} in Thread()
52 const auto useAttributes = mStackSize != 0; in start()
57 pthread_attr_setstacksize(&attr, mStackSize); in start()
60 if (pthread_create(&mThread, mStackSize ? &attr : nullptr, thread_main, in start()
DAndroidThread.h123 int mStackSize; variable
/device/generic/vulkan-cereal/base/
DThread_pthread.cpp30 : mThread((pthread_t)NULL), mStackSize(stackSize), mFlags(flags) {} 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.cpp23 : mStackSize(stackSize), mFlags(flags) {} in Thread()
40 mThread = CreateThread(NULL, mStackSize, &Thread::thread_main, this, 0, in start()
DThread.h122 int mStackSize; variable