Home | History | Annotate | Download | only in runtime

Lines Matching refs:ThreadPool

36 ThreadPoolWorker::ThreadPoolWorker(ThreadPool* thread_pool, const std::string& name,
94 void ThreadPool::AddTask(Thread* self, Task* task) {
103 void ThreadPool::RemoveAllTasks(Thread* self) {
108 ThreadPool::ThreadPool(const char* name, size_t num_threads)
132 void ThreadPool::SetMaxActiveWorkers(size_t threads) {
138 ThreadPool::~ThreadPool() {
152 void ThreadPool::StartWorkers(Thread* self) {
160 void ThreadPool::StopWorkers(Thread* self) {
165 Task* ThreadPool::GetTask(Thread* self) {
197 Task* ThreadPool::TryGetTask(Thread* self) {
202 Task* ThreadPool::TryGetTaskLocked() {
211 void ThreadPool::Wait(Thread* self, bool do_work, bool may_hold_locks) {
230 size_t ThreadPool::GetTaskCount(Thread* self) {
235 void ThreadPool::SetPthreadPriority(int priority) {