Home
last modified time | relevance | path

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

/frameworks/native/cmds/dumpstate/
DTaskQueue.cpp29 while (!tasks_.empty()) { in run()
30 auto task = tasks_.front(); in run()
31 tasks_.pop(); in run()
DDumpPool.cpp61 while (!tasks_.empty()) tasks_.pop(); in ~DumpPool()
169 if (tasks_.empty()) { in loop()
173 std::packaged_task<std::string()> task = std::move(tasks_.front()); in loop()
174 tasks_.pop(); in loop()
DTaskQueue.h51 tasks_.emplace([=](bool cancelled) { in add()
67 std::queue<Task> tasks_; variable
DDumpPool.h167 tasks_.push(std::move(packaged_task)); in post()
201 std::queue<Task> tasks_; variable