Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/static_core/libpandabase/taskmanager/
Dtask_queue.h126 queue = &backgroundTaskQueue_; in PopTask()
167 queue = &backgroundTaskQueue_; in PopTasksToHelperThread()
195 return !backgroundTaskQueue_.IsEmpty(); in HasTaskWithExecutionMode()
203 return backgroundTaskQueue_.Size(); in CountOfTasksWithExecutionMode()
234 return foregroundTaskQueue_.IsEmpty() && backgroundTaskQueue_.IsEmpty(); in AreInternalQueuesEmpty()
239 return foregroundTaskQueue_.Size() + backgroundTaskQueue_.Size(); in SumSizeOfInternalQueues()
249 backgroundTaskQueue_.Push(std::move(task)); in PushTaskToInternalQueues()
259 return backgroundTaskQueue_.Pop(); in PopTaskFromInternalQueues()
278 InternalTaskQueue backgroundTaskQueue_; variable