Lines Matching refs:timeout
267 void once (int fd, int events, tstamp timeout, void (*cb)(int, void *), void *arg = 0) throw () in throw()
269 ev_once (EV_AX_ fd, events, timeout, cb, arg); in throw()
274 void once (int fd, int events, tstamp timeout, K *object) throw () in once()
276 once (fd, events, timeout, method_thunk<K, method>, object); in once()
281 void once (int fd, int events, tstamp timeout, K *object) throw () in once()
283 once (fd, events, timeout, method_thunk<K, &K::operator ()>, object); in once()
295 void once (int fd, int events, tstamp timeout, K *object) throw () in once()
297 once (fd, events, timeout, method_noargs_thunk<K, method>, object); in once()
309 void once (int fd, int events, tstamp timeout) throw () in once()
311 once (fd, events, timeout, simpler_func_thunk<cb>); in once()
323 void once (int fd, int events, tstamp timeout) throw () in once()
325 once (fd, events, timeout, simplest_func_thunk<cb>); in once()