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.cc242 auto task_it = delayed_tasks_.find(task_id); in OnRanPostedTask() local
243 DCHECK(task_it != delayed_tasks_.end()); in OnRanPostedTask()
244 if (!task_it->second.closure.is_null()) { in OnRanPostedTask()
245 DVLOG_LOC(task_it->second.location, 1) in OnRanPostedTask()
250 Closure closure = std::move(task_it->second.closure); in OnRanPostedTask()
251 task_it->second.closure = Closure(); in OnRanPostedTask()
261 delayed_tasks_.erase(task_it); in OnRanPostedTask()
265 auto task_it = io_tasks_.find(task_id); in OnFileReadyPostedTask() local
269 DCHECK(task_it != io_tasks_.end()); in OnFileReadyPostedTask()
270 task_it->second.OnFileReadyPostedTask(); in OnFileReadyPostedTask()