Home | History | Annotate | Download | only in flip_server

Lines Matching defs:cb

124   typedef EpollCallbackInterface CB;
162 // cb - an instance of a subclass of EpollCallbackInterface
166 virtual void RegisterFD(int fd, CB* cb, int event_mask);
175 // cb - an instance of a subclass of EpollCallbackInterface
176 virtual void RegisterFDForWrite(int fd, CB* cb);
185 // cb - an instance of a subclass of EpollCallbackInterface
186 virtual void RegisterFDForReadWrite(int fd, CB* cb);
195 // cb - an instance of a subclass of EpollCallbackInterface
196 virtual void RegisterFDForRead(int fd, CB* cb);
519 : cb(NULL),
529 CBAndEventMask(EpollCallbackInterface* cb,
532 : cb(cb), fd(fd), event_mask(event_mask), events_asserted(0),
545 // the cb will be set to NULL.
546 mutable EpollCallbackInterface* cb;