Home | History | Annotate | Download | only in flip_server

Lines Matching refs: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);
527 : cb(NULL),
537 CBAndEventMask(EpollCallbackInterface* cb,
540 : cb(cb), fd(fd), event_mask(event_mask), events_asserted(0),
553 // the cb will be set to NULL.
554 mutable EpollCallbackInterface* cb;