Searched refs:mStackSize (Results 1 – 5 of 5) sorted by relevance
/hardware/google/gfxstream/guest/android-emu/aemu/base/threads/ |
D | AndroidThread_pthread.cpp | 40 : 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()
|
D | AndroidThread.h | 122 int mStackSize; variable
|
/hardware/google/aemu/base/ |
D | Thread_pthread.cpp | 30 … : 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()
|
D | Thread_win32.cpp | 28 : 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/ |
D | Thread.h | 128 int mStackSize; variable
|