Lines Matching refs:second
66 // The fd_watched->second task might have been canceled and we never removed
68 const auto& scheduled_task_ref = tasks_.find(fd_watched->second);
73 VLOG_LOC(scheduled_task_ref->second.location, 1)
74 << "Running task_id " << fd_watched->second
76 << (fd_mode.second == MessageLoop::kWatchRead ? "reading" : "writing")
77 << (scheduled_task_ref->second.persistent ?
80 if (scheduled_task_ref->second.persistent) {
81 scheduled_task_ref->second.callback.Run();
83 base::Closure callback = std::move(scheduled_task_ref->second.callback);
99 const auto scheduled_task_ref = tasks_.find(task_ref.second);
111 base::Closure callback = std::move(scheduled_task_ref->second.callback);
112 VLOG_LOC(scheduled_task_ref->second.location, 1)
113 << "Running task_id " << task_ref.second
134 VLOG_LOC(task.second.location, 1)
135 << "Pending " << (task.second.persistent ? "persistent " : "")