Home
last modified time | relevance | path

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

/external/libbrillo/brillo/message_loops/
Dbase_message_loop.cc246 auto task_it = delayed_tasks_.find(task_id); in OnRanPostedTask() local
247 DCHECK(task_it != delayed_tasks_.end()); in OnRanPostedTask()
248 if (!task_it->second.closure.is_null()) { in OnRanPostedTask()
249 DVLOG_LOC(task_it->second.location, 1) in OnRanPostedTask()
254 Closure closure = std::move(task_it->second.closure); in OnRanPostedTask()
255 task_it->second.closure = Closure(); in OnRanPostedTask()
265 delayed_tasks_.erase(task_it); in OnRanPostedTask()
269 auto task_it = io_tasks_.find(task_id); in OnFileReadyPostedTask() local
273 DCHECK(task_it != io_tasks_.end()); in OnFileReadyPostedTask()
274 task_it->second.OnFileReadyPostedTask(); in OnFileReadyPostedTask()