HomeSort by relevance Sort by last modified time
    Searched full:task_it (Results 1 - 1 of 1) sorted by null

  /external/libbrillo/brillo/message_loops/
base_message_loop.cc 235 auto task_it = delayed_tasks_.find(task_id); local
236 DCHECK(task_it != delayed_tasks_.end());
237 if (!task_it->second.closure.is_null()) {
238 DVLOG_LOC(task_it->second.location, 1)
243 Closure closure = std::move(task_it->second.closure);
244 task_it->second.closure = Closure();
254 delayed_tasks_.erase(task_it);
258 auto task_it = io_tasks_.find(task_id); local
262 DCHECK(task_it != io_tasks_.end());
263 task_it->second.OnFileReadyPostedTask()
    [all...]

Completed in 464 milliseconds