Lines Matching refs:ThreadPool
22 static ThreadPool* g_threadPool = nullptr;
35 ThreadPool* ThreadPool::CreateThreadPool(int number) in CreateThreadPool()
41 g_threadPool = new ThreadPool(); in CreateThreadPool()
46 void ThreadPool::Destroy() in Destroy()
56 void ThreadPool::Init(int32_t number) in Init()
74 void ThreadPool::ThreadRun(int32_t threadIndex) in ThreadRun()
88 ThreadPool::~ThreadPool() in ~ThreadPool()
104 void ThreadPool::AddTask(Task &&task) in AddTask()
111 void ThreadPool::AddNewTask(Task &&task) in AddNewTask()
125 int32_t ThreadPool::AcquireWorkIndex() in AcquireWorkIndex()
137 void ThreadPool::RunTask(Task &&task, int32_t index) in RunTask()