Searched refs:MessagePumpLibevent (Results 1 – 5 of 5) sorted by relevance
/external/libchrome/base/message_loop/ |
D | message_pump_libevent.cc | 53 MessagePumpLibevent::FileDescriptorWatcher::FileDescriptorWatcher() in FileDescriptorWatcher() 60 MessagePumpLibevent::FileDescriptorWatcher::~FileDescriptorWatcher() { in ~FileDescriptorWatcher() 70 bool MessagePumpLibevent::FileDescriptorWatcher::StopWatchingFileDescriptor() { in StopWatchingFileDescriptor() 83 void MessagePumpLibevent::FileDescriptorWatcher::Init(event *e) { in Init() 90 event *MessagePumpLibevent::FileDescriptorWatcher::ReleaseEvent() { in ReleaseEvent() 96 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanReadWithoutBlocking( in OnFileCanReadWithoutBlocking() 97 int fd, MessagePumpLibevent* pump) { in OnFileCanReadWithoutBlocking() 107 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanWriteWithoutBlocking( in OnFileCanWriteWithoutBlocking() 108 int fd, MessagePumpLibevent* pump) { in OnFileCanWriteWithoutBlocking() 115 MessagePumpLibevent::MessagePumpLibevent() in MessagePumpLibevent() function in base::MessagePumpLibevent [all …]
|
D | message_pump_libevent.h | 23 class BASE_EXPORT MessagePumpLibevent : public MessagePump { 67 friend class MessagePumpLibevent; 77 void set_pump(MessagePumpLibevent* pump) { pump_ = pump; } in set_pump() 78 MessagePumpLibevent* pump() const { return pump_; } in pump() 82 void OnFileCanReadWithoutBlocking(int fd, MessagePumpLibevent* pump); 83 void OnFileCanWriteWithoutBlocking(int fd, MessagePumpLibevent* pump); 86 MessagePumpLibevent* pump_; 101 MessagePumpLibevent(); 102 ~MessagePumpLibevent() override; 173 DISALLOW_COPY_AND_ASSIGN(MessagePumpLibevent);
|
D | message_loop.h | 598 MessagePumpLibevent::Mode mode, 599 MessagePumpLibevent::FileDescriptorWatcher* controller, 600 MessagePumpLibevent::Watcher* delegate); 653 typedef MessagePumpLibevent::Watcher Watcher; 654 typedef MessagePumpLibevent::FileDescriptorWatcher 656 typedef MessagePumpLibevent::IOObserver IOObserver; 659 WATCH_READ = MessagePumpLibevent::WATCH_READ, 660 WATCH_WRITE = MessagePumpLibevent::WATCH_WRITE, 661 WATCH_READ_WRITE = MessagePumpLibevent::WATCH_READ_WRITE
|
D | message_loop.cc | 96 typedef MessagePumpLibevent MessagePumpForIO; 213 typedef MessagePumpLibevent MessagePumpForUI; in CreateMessagePumpForType() 703 MessagePumpLibevent::Mode mode, in WatchFileDescriptor() 704 MessagePumpLibevent::FileDescriptorWatcher *controller, in WatchFileDescriptor() 705 MessagePumpLibevent::Watcher *delegate) { in WatchFileDescriptor() 706 return static_cast<MessagePumpLibevent*>(pump_.get())->WatchFileDescriptor( in WatchFileDescriptor()
|
/external/libchrome/dbus/ |
D | bus.cc | 39 class Watch : public base::MessagePumpLibevent::Watcher { 93 base::MessagePumpLibevent::FileDescriptorWatcher file_descriptor_watcher_;
|