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 31 // MessagePumpLibevent::WatchFileDescriptor(),
39 // is active after its MessagePumpLibevent has been destroyed.
46 MessagePumpLibevent::FileDescriptorWatcher::FileDescriptorWatcher(
54 MessagePumpLibevent::FileDescriptorWatcher::~FileDescriptorWatcher() {
64 bool MessagePumpLibevent::FileDescriptorWatcher::StopWatchingFileDescriptor() {
77 void MessagePumpLibevent::FileDescriptorWatcher::Init(event* e) {
84 event* MessagePumpLibevent::FileDescriptorWatcher::ReleaseEvent() {
90 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanReadWithoutBlocking(
92 MessagePumpLibevent* pump) {
100 void MessagePumpLibevent::FileDescriptorWatcher::OnFileCanWriteWithoutBlocking
    [all...]
message_pump_libevent.h 23 class BASE_EXPORT MessagePumpLibevent : public MessagePump {
56 friend class MessagePumpLibevent;
59 // Called by MessagePumpLibevent, ownership of |e| is transferred to this
63 // Used by MessagePumpLibevent to take ownership of event_.
66 void set_pump(MessagePumpLibevent* pump) { pump_ = pump; }
67 MessagePumpLibevent* pump() const { return pump_; }
71 void OnFileCanReadWithoutBlocking(int fd, MessagePumpLibevent* pump);
72 void OnFileCanWriteWithoutBlocking(int fd, MessagePumpLibevent* pump);
75 MessagePumpLibevent* pump_;
92 MessagePumpLibevent();
    [all...]

Completed in 56 milliseconds