Lines Matching refs:controller
145 FileDescriptorWatcher *controller, in WatchFileDescriptor() argument
148 DCHECK(controller); in WatchFileDescriptor()
163 scoped_ptr<event> evt(controller->ReleaseEvent()); in WatchFileDescriptor()
187 event_set(evt.get(), fd, event_mask, OnLibeventNotification, controller); in WatchFileDescriptor()
200 controller->Init(evt.release()); in WatchFileDescriptor()
202 controller->set_watcher(delegate); in WatchFileDescriptor()
203 controller->set_pump(this); in WatchFileDescriptor()
349 FileDescriptorWatcher* controller = in OnLibeventNotification() local
351 DCHECK(controller); in OnLibeventNotification()
355 MessagePumpLibevent* pump = controller->pump(); in OnLibeventNotification()
362 controller->was_destroyed_ = &controller_was_destroyed; in OnLibeventNotification()
363 controller->OnFileCanWriteWithoutBlocking(fd, pump); in OnLibeventNotification()
365 controller->OnFileCanReadWithoutBlocking(fd, pump); in OnLibeventNotification()
367 controller->was_destroyed_ = nullptr; in OnLibeventNotification()
369 controller->OnFileCanWriteWithoutBlocking(fd, pump); in OnLibeventNotification()
371 controller->OnFileCanReadWithoutBlocking(fd, pump); in OnLibeventNotification()