Home | History | Annotate | Download | only in epoll_server

Lines Matching defs:CB

123   typedef EpollCallbackInterface CB;
161 // cb - an instance of a subclass of EpollCallbackInterface
165 virtual void RegisterFD(int fd, CB* cb, int event_mask);
174 // cb - an instance of a subclass of EpollCallbackInterface
175 virtual void RegisterFDForWrite(int fd, CB* cb);
184 // cb - an instance of a subclass of EpollCallbackInterface
185 virtual void RegisterFDForReadWrite(int fd, CB* cb);
194 // cb - an instance of a subclass of EpollCallbackInterface
195 virtual void RegisterFDForRead(int fd, CB* cb);
514 : cb(NULL),
524 CBAndEventMask(EpollCallbackInterface* cb,
527 : cb(cb), fd(fd), event_mask(event_mask), events_asserted(0),
540 // the cb will be set to NULL.
541 mutable EpollCallbackInterface* cb;