/external/chromium_org/base/message_loop/ |
message_pump_libevent_unittest.cc | 45 MessagePumpLibevent* pump, 46 MessagePumpLibevent::FileDescriptorWatcher* controller) { 59 // Concrete implementation of MessagePumpLibevent::Watcher that does 61 class StupidWatcher : public MessagePumpLibevent::Watcher { 65 // base:MessagePumpLibevent::Watcher interface 75 MessagePumpLibevent::FileDescriptorWatcher watcher; 86 class BaseWatcher : public MessagePumpLibevent::Watcher { 88 explicit BaseWatcher(MessagePumpLibevent::FileDescriptorWatcher* controller) 94 // base:MessagePumpLibevent::Watcher interface 104 MessagePumpLibevent::FileDescriptorWatcher* controller_ [all...] |
message_pump_libevent.h | 24 class BASE_EXPORT MessagePumpLibevent : public MessagePump { 68 friend class MessagePumpLibevent; 71 // Called by MessagePumpLibevent, ownership of |e| is transferred to this 75 // Used by MessagePumpLibevent to take ownership of event_. 78 void set_pump(MessagePumpLibevent* pump) { pump_ = pump; } 79 MessagePumpLibevent* pump() const { return pump_; } 83 void OnFileCanReadWithoutBlocking(int fd, MessagePumpLibevent* pump); 84 void OnFileCanWriteWithoutBlocking(int fd, MessagePumpLibevent* pump); 87 MessagePumpLibevent* pump_; 100 MessagePumpLibevent(); [all...] |
message_pump_libevent.cc | 29 // MessagePumpLibevent::WatchFileDescriptor(), 37 // is active after its MessagePumpLibevent has been destroyed. 53 MessagePumpLibevent::FileDescriptorWatcher::FileDescriptorWatcher() 60 MessagePumpLibevent::FileDescriptorWatcher::~FileDescriptorWatcher() { 66 bool MessagePumpLibevent::FileDescriptorWatcher::StopWatchingFileDescriptor() { 79 void MessagePumpLibevent::FileDescriptorWatcher::Init(event *e) { 86 event *MessagePumpLibevent::FileDescriptorWatcher::ReleaseEvent() { 92 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanReadWithoutBlocking( 93 int fd, MessagePumpLibevent* pump) { 103 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanWriteWithoutBlocking [all...] |
message_pump_ozone.h | 19 class BASE_EXPORT MessagePumpOzone : public MessagePumpLibevent,
|
message_loop.h | 440 MessagePumpLibevent* pump_libevent() { 441 return static_cast<MessagePumpLibevent*>(pump_.get()); 677 typedef MessagePumpLibevent::Watcher Watcher; 678 typedef MessagePumpLibevent::FileDescriptorWatcher 680 typedef MessagePumpLibevent::IOObserver IOObserver; 683 WATCH_READ = MessagePumpLibevent::WATCH_READ, 684 WATCH_WRITE = MessagePumpLibevent::WATCH_WRITE, 685 WATCH_READ_WRITE = MessagePumpLibevent::WATCH_READ_WRITE 734 // Please see MessagePumpLibevent for definition. 742 MessagePumpLibevent* pump_io() [all...] |
message_pump_ozone.cc | 13 : MessagePumpLibevent() {
|
message_loop.cc | 236 #define MESSAGE_PUMP_IO new MessagePumpLibevent() 246 #define MESSAGE_PUMP_IO new MessagePumpLibevent()
|
/external/chromium/base/ |
message_pump_libevent.h | 22 class MessagePumpLibevent : public MessagePump { 64 friend class MessagePumpLibevent; 66 // Called by MessagePumpLibevent, ownership of |e| is transferred to this 70 // Used by MessagePumpLibevent to take ownership of event_. 73 void set_pump(MessagePumpLibevent* pump) { pump_ = pump; } 74 MessagePumpLibevent* pump() { return pump_; } 78 void OnFileCanReadWithoutBlocking(int fd, MessagePumpLibevent* pump); 79 void OnFileCanWriteWithoutBlocking(int fd, MessagePumpLibevent* pump); 83 MessagePumpLibevent* pump_; 95 MessagePumpLibevent(); [all...] |
message_pump_libevent.cc | 28 // MessagePumpLibevent::WatchFileDescriptor(), 36 // is active after its MessagePumpLibevent has been destroyed. 52 MessagePumpLibevent::FileDescriptorWatcher::FileDescriptorWatcher() 59 MessagePumpLibevent::FileDescriptorWatcher::~FileDescriptorWatcher() { 65 bool MessagePumpLibevent::FileDescriptorWatcher::StopWatchingFileDescriptor() { 78 void MessagePumpLibevent::FileDescriptorWatcher::Init(event *e, 87 event *MessagePumpLibevent::FileDescriptorWatcher::ReleaseEvent() { 93 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanReadWithoutBlocking( 94 int fd, MessagePumpLibevent* pump) { 100 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanWriteWithoutBlocking [all...] |
message_loop.h | 386 base::MessagePumpLibevent* pump_libevent() { 387 return static_cast<base::MessagePumpLibevent*>(pump_.get()); 579 typedef base::MessagePumpLibevent::Watcher Watcher; 580 typedef base::MessagePumpLibevent::FileDescriptorWatcher 582 typedef base::MessagePumpLibevent::IOObserver IOObserver; 585 WATCH_READ = base::MessagePumpLibevent::WATCH_READ, 586 WATCH_WRITE = base::MessagePumpLibevent::WATCH_WRITE, 587 WATCH_READ_WRITE = base::MessagePumpLibevent::WATCH_READ_WRITE 627 // Please see MessagePumpLibevent for definition. 635 base::MessagePumpLibevent* pump_io() [all...] |
message_loop.cc | 140 #define MESSAGE_PUMP_IO new base::MessagePumpLibevent() 143 #define MESSAGE_PUMP_IO new base::MessagePumpLibevent() 146 #define MESSAGE_PUMP_IO new base::MessagePumpLibevent() 154 #define MESSAGE_PUMP_IO new base::MessagePumpLibevent() 726 static_cast<base::MessagePumpLibevent::Mode>(mode),
|
message_loop_unittest.cc | [all...] |
/external/chromium_org/ui/events/ozone/ |
event_converter_ozone.h | 16 // drivers. The |MessagePumpLibevent::Watcher| parent class provides the 23 : public base::MessagePumpLibevent::Watcher {
|
event_factory_ozone.h | 51 typedef base::MessagePumpLibevent::FileDescriptorWatcher* FDWatcher;
|
event_factory_ozone.cc | 40 FDWatcher watcher = new base::MessagePumpLibevent::FileDescriptorWatcher(); 45 base::MessagePumpLibevent::WATCH_READ,
|
/external/chromium_org/content/browser/ |
udev_linux.h | 54 class UdevLinux : public base::MessagePumpLibevent::Watcher { 89 base::MessagePumpLibevent::FileDescriptorWatcher monitor_watcher_;
|
/external/chromium/chrome/common/ |
service_process_util_posix.h | 39 : public base::MessagePumpLibevent::Watcher { 49 // base::MessagePumpLibevent::Watcher overrides 80 base::MessagePumpLibevent::FileDescriptorWatcher watcher_;
|
/external/chromium_org/remoting/host/posix/ |
signal_handler.cc | 24 class SignalListener : public base::MessagePumpLibevent::Watcher { 35 base::MessagePumpLibevent::FileDescriptorWatcher controller;
|
/external/chromium_org/remoting/host/ |
local_input_monitor_linux.cc | 48 public base::MessagePumpLibevent::Watcher { 64 // base::MessagePumpLibevent::Watcher interface. 83 // Used to receive base::MessagePumpLibevent::Watcher events. 84 base::MessagePumpLibevent::FileDescriptorWatcher controller_;
|
/external/chromium_org/media/base/ |
user_input_monitor_linux.cc | 39 : public base::MessagePumpLibevent::Watcher, 62 // base::MessagePumpLibevent::Watcher interface. 77 base::MessagePumpLibevent::FileDescriptorWatcher controller_;
|
/external/chromium/net/proxy/ |
proxy_config_service_linux.cc | 433 public base::MessagePumpLibevent::Watcher { 560 // Implement base::MessagePumpLibevent::Delegate. [all...] |
/external/chromium_org/dbus/ |
bus.cc | 43 class Watch : public base::MessagePumpLibevent::Watcher { 86 // Implement MessagePumpLibevent::Watcher. 92 // Implement MessagePumpLibevent::Watcher. 99 base::MessagePumpLibevent::FileDescriptorWatcher file_descriptor_watcher_; [all...] |
/external/chromium_org/net/proxy/ |
proxy_config_service_linux.cc | 845 public base::MessagePumpLibevent::Watcher { [all...] |