Home | History | Annotate | Download | only in message_loops

Lines Matching defs:task_id

24         << "Removing task_id " << task.second->task_id
35 TaskId task_id = NextTaskId();
40 this, from_here, task_id, 0, false, std::move(task)};
41 DVLOG_LOC(from_here, 1) << "Scheduling delayed task_id " << task_id
49 tasks_[task_id] = scheduled_task;
50 return task_id;
94 TaskId task_id = NextTaskId();
96 this, from_here, task_id, 0, persistent, std::move(task)};
113 << " as task_id " << task_id
120 tasks_[task_id] = scheduled_task;
121 return task_id;
124 bool GlibMessageLoop::CancelTask(TaskId task_id) {
125 if (task_id == kTaskIdNull)
127 const auto task = tasks_.find(task_id);
132 << "Removing task_id " << task_id << " scheduled from this location.";
164 << "Running delayed task_id " << scheduled_task->task_id
166 // We only need to remove this task_id from the map. DestroyPostedTask will be
168 scheduled_task->loop->tasks_.erase(scheduled_task->task_id);
178 << "Running task_id " << scheduled_task->task_id
181 // We only need to remove this task_id from the map. DestroyPostedTask will
184 scheduled_task->loop->tasks_.erase(scheduled_task->task_id);