Home
last modified time | relevance | path

Searched refs:TryAddTask (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/mem/gc/workers/
Dgc_workers_task_queue.h38 bool TryAddTask(GCWorkersTask &&task) final;
Dgc_workers_task_queue.cpp25 bool GCWorkersTaskQueue::TryAddTask(GCWorkersTask &&task) in TryAddTask() function in ark::mem::GCWorkersTaskQueue
Dgc_workers_task_pool.cpp40 if (this->TryAddTask(std::forward<GCWorkersTask &&>(task))) { in AddTask()
Dgc_workers_task_pool.h76 virtual bool TryAddTask(GCWorkersTask &&task) = 0;
Dgc_workers_thread_pool.cpp52 bool GCWorkersThreadPool::TryAddTask(GCWorkersTask &&task) in TryAddTask() function in ark::mem::GCWorkersThreadPool
Dgc_workers_thread_pool.h145 bool TryAddTask(GCWorkersTask &&task) final;
/arkcompiler/runtime_core/static_core/runtime/
Dthread_pool_queue.h46 bool TryAddTask(Task &&task, size_t priority = 0)
Dthread_pool.h203 res = queue_->TryAddTask(std::move(task)); in TryPutTask()