/external/chromium_org/base/message_loop/ |
D | message_pump_libevent_unittest.cc | 47 MessagePumpLibevent* pump, in OnLibeventNotification() 48 MessagePumpLibevent::FileDescriptorWatcher* controller) { in OnLibeventNotification() 63 class StupidWatcher : public MessagePumpLibevent::Watcher { 77 MessagePumpLibevent::FileDescriptorWatcher watcher; in TEST_F() 87 scoped_ptr<MessagePumpLibevent> pump(new MessagePumpLibevent); in TEST_F() 94 class BaseWatcher : public MessagePumpLibevent::Watcher { 96 explicit BaseWatcher(MessagePumpLibevent::FileDescriptorWatcher* controller) in BaseWatcher() 112 MessagePumpLibevent::FileDescriptorWatcher* controller_; 118 MessagePumpLibevent::FileDescriptorWatcher* controller) in DeleteWatcher() 133 scoped_ptr<MessagePumpLibevent> pump(new MessagePumpLibevent); in TEST_F() [all …]
|
D | message_pump_libevent.cc | 53 MessagePumpLibevent::FileDescriptorWatcher::FileDescriptorWatcher() in FileDescriptorWatcher() 60 MessagePumpLibevent::FileDescriptorWatcher::~FileDescriptorWatcher() { in ~FileDescriptorWatcher() 66 bool MessagePumpLibevent::FileDescriptorWatcher::StopWatchingFileDescriptor() { in StopWatchingFileDescriptor() 79 void MessagePumpLibevent::FileDescriptorWatcher::Init(event *e) { in Init() 86 event *MessagePumpLibevent::FileDescriptorWatcher::ReleaseEvent() { in ReleaseEvent() 92 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanReadWithoutBlocking( in OnFileCanReadWithoutBlocking() 93 int fd, MessagePumpLibevent* pump) { in OnFileCanReadWithoutBlocking() 103 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanWriteWithoutBlocking( in OnFileCanWriteWithoutBlocking() 104 int fd, MessagePumpLibevent* pump) { in OnFileCanWriteWithoutBlocking() 111 MessagePumpLibevent::MessagePumpLibevent() in MessagePumpLibevent() function in base::MessagePumpLibevent [all …]
|
D | message_pump_libevent.h | 24 class BASE_EXPORT MessagePumpLibevent : public MessagePump { 68 friend class MessagePumpLibevent; 78 void set_pump(MessagePumpLibevent* pump) { pump_ = pump; } in set_pump() 79 MessagePumpLibevent* pump() const { return pump_; } in pump() 83 void OnFileCanReadWithoutBlocking(int fd, MessagePumpLibevent* pump); 84 void OnFileCanWriteWithoutBlocking(int fd, MessagePumpLibevent* pump); 87 MessagePumpLibevent* pump_; 100 MessagePumpLibevent(); 101 virtual ~MessagePumpLibevent(); 172 DISALLOW_COPY_AND_ASSIGN(MessagePumpLibevent);
|
D | message_loop.h | 564 MessagePumpLibevent::Mode mode, 565 MessagePumpLibevent::FileDescriptorWatcher* controller, 566 MessagePumpLibevent::Watcher* delegate); 620 typedef MessagePumpLibevent::Watcher Watcher; 621 typedef MessagePumpLibevent::FileDescriptorWatcher 623 typedef MessagePumpLibevent::IOObserver IOObserver; 626 WATCH_READ = MessagePumpLibevent::WATCH_READ, 627 WATCH_WRITE = MessagePumpLibevent::WATCH_WRITE, 628 WATCH_READ_WRITE = MessagePumpLibevent::WATCH_READ_WRITE
|
D | message_loop.cc | 106 typedef MessagePumpLibevent MessagePumpForIO; 226 typedef MessagePumpLibevent MessagePumpForUI; in CreateMessagePumpForType() 662 MessagePumpLibevent::Mode mode, in WatchFileDescriptor() 663 MessagePumpLibevent::FileDescriptorWatcher *controller, in WatchFileDescriptor() 664 MessagePumpLibevent::Watcher *delegate) { in WatchFileDescriptor() 665 return static_cast<MessagePumpLibevent*>(pump_.get())->WatchFileDescriptor( in WatchFileDescriptor()
|
/external/chromium_org/ui/events/platform/x11/ |
D | x11_event_source_libevent.cc | 17 public base::MessagePumpLibevent::Watcher { 37 base::MessagePumpLibevent::WATCH_READ, &watcher_controller_, this); in AddEventWatcher() 55 base::MessagePumpLibevent::FileDescriptorWatcher watcher_controller_;
|
/external/chromium_org/ui/events/ozone/evdev/ |
D | event_converter_evdev.h | 20 : public base::MessagePumpLibevent::Watcher { 42 base::MessagePumpLibevent::FileDescriptorWatcher controller_;
|
D | event_converter_evdev.cc | 23 fd_, true, base::MessagePumpLibevent::WATCH_READ, &controller_, this); in Start()
|
D | key_event_converter_evdev.h | 41 base::MessagePumpLibevent::FileDescriptorWatcher controller_;
|
/external/chromium_org/content/browser/ |
D | udev_linux.h | 54 class UdevLinux : public base::MessagePumpLibevent::Watcher { 89 base::MessagePumpLibevent::FileDescriptorWatcher monitor_watcher_;
|
/external/chromium_org/ui/events/ozone/device/udev/ |
D | device_manager_udev.h | 19 : public DeviceManager, base::MessagePumpLibevent::Watcher { 42 base::MessagePumpLibevent::FileDescriptorWatcher controller_;
|
D | device_manager_udev.cc | 95 fd, true, base::MessagePumpLibevent::WATCH_READ, &controller_, this); in CreateMonitor()
|
/external/chromium_org/device/hid/ |
D | device_monitor_linux.h | 27 public base::MessagePumpLibevent::Watcher { 64 base::MessagePumpLibevent::FileDescriptorWatcher monitor_watcher_;
|
D | hid_connection_linux.h | 17 public base::MessagePumpLibevent::Watcher { 49 base::MessagePumpLibevent::FileDescriptorWatcher device_file_watcher_;
|
/external/chromium_org/remoting/host/posix/ |
D | signal_handler.cc | 24 class SignalListener : public base::MessagePumpLibevent::Watcher { 35 base::MessagePumpLibevent::FileDescriptorWatcher controller;
|
/external/chromium_org/remoting/host/ |
D | local_input_monitor_linux.cc | 48 public base::MessagePumpLibevent::Watcher { 84 base::MessagePumpLibevent::FileDescriptorWatcher controller_;
|
/external/chromium_org/media/base/ |
D | user_input_monitor_linux.cc | 39 : public base::MessagePumpLibevent::Watcher, 77 base::MessagePumpLibevent::FileDescriptorWatcher controller_;
|
/external/chromium_org/dbus/ |
D | bus.cc | 43 class Watch : public base::MessagePumpLibevent::Watcher { 99 base::MessagePumpLibevent::FileDescriptorWatcher file_descriptor_watcher_;
|
/external/chromium_org/net/proxy/ |
D | proxy_config_service_linux.cc | 858 public base::MessagePumpLibevent::Watcher { 1333 base::MessagePumpLibevent::FileDescriptorWatcher inotify_watcher_;
|