Home
last modified time | relevance | path

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

/third_party/flutter/engine/flutter/fml/
Dconcurrent_message_loop.cc63 tasks_.push(task); in PostTask()
77 [&]() { return tasks_.size() > 0 || shutdown_; }); in WorkerMain()
79 if (tasks_.size() == 0) { in WorkerMain()
85 auto task = tasks_.front(); in WorkerMain()
86 tasks_.pop(); in WorkerMain()
Dconcurrent_message_loop.h41 std::queue<fml::closure> tasks_; variable
/third_party/node/src/
Dnode_platform.cc68 tasks_.Push(std::make_unique<ScheduleTask>(this, std::move(task), in PostDelayedTask()
74 tasks_.Push(std::make_unique<StopTask>(this)); in Stop()
95 while (std::unique_ptr<Task> task = scheduler->tasks_.Pop()) in FlushTasks()
160 TaskQueue<Task> tasks_; member in node::WorkerThreadsTaskRunner::DelayedTaskScheduler