HomeSort by relevance Sort by last modified time
    Searched defs:MessagePumpLibevent (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/message_loop/
message_pump_libevent.cc 38 // MessagePumpLibevent::WatchFileDescriptor(),
46 // is active after its MessagePumpLibevent has been destroyed.
53 MessagePumpLibevent::FileDescriptorWatcher::FileDescriptorWatcher()
60 MessagePumpLibevent::FileDescriptorWatcher::~FileDescriptorWatcher() {
70 bool MessagePumpLibevent::FileDescriptorWatcher::StopWatchingFileDescriptor() {
83 void MessagePumpLibevent::FileDescriptorWatcher::Init(event *e) {
90 event *MessagePumpLibevent::FileDescriptorWatcher::ReleaseEvent() {
96 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanReadWithoutBlocking(
97 int fd, MessagePumpLibevent* pump) {
107 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanWriteWithoutBlocking
    [all...]
message_pump_libevent.h 23 class BASE_EXPORT MessagePumpLibevent : public MessagePump {
67 friend class MessagePumpLibevent;
70 // Called by MessagePumpLibevent, ownership of |e| is transferred to this
74 // Used by MessagePumpLibevent to take ownership of event_.
77 void set_pump(MessagePumpLibevent* pump) { pump_ = pump; }
78 MessagePumpLibevent* pump() const { return pump_; }
82 void OnFileCanReadWithoutBlocking(int fd, MessagePumpLibevent* pump);
83 void OnFileCanWriteWithoutBlocking(int fd, MessagePumpLibevent* pump);
86 MessagePumpLibevent* pump_;
101 MessagePumpLibevent();
    [all...]

Completed in 864 milliseconds