Lines Matching refs:tv

497     struct timeval tv;
500 tv = tevent_timeval_current_ofs(5, 0);
501 to = tevent_add_timer(ctx->ev, ctx, tv, services_startup_timeout, ctx);
1560 struct timeval tv;
1575 gettimeofday(&tv, NULL);
1576 tv.tv_sec += 1;
1578 te = tevent_add_timer(ev, ev, tv, process_config_file, file_ctx);
1668 struct timeval tv;
1670 tv.tv_sec = t.tv_sec+5;
1671 tv.tv_usec = t.tv_usec;
1686 tev = tevent_add_timer(ev, rw_ctx, tv, rewatch_config_file, rw_ctx);
1710 struct timeval tv;
1749 tv.tv_sec = t.tv_sec+5;
1750 tv.tv_usec = t.tv_usec;
1756 tev = tevent_add_timer(ev, ev, tv, rewatch_config_file, rw_ctx);
1782 struct timeval tv;
1812 gettimeofday(&tv, NULL);
1813 tv.tv_sec += CONFIG_FILE_POLL_INTERVAL;
1814 tv.tv_usec = 0;
1815 file_ctx->timer = tevent_add_timer(ev, file_ctx->parent_ctx, tv,
1967 struct timeval tv;
2003 gettimeofday(&tv, NULL);
2004 tv.tv_sec += CONFIG_FILE_POLL_INTERVAL;
2005 tv.tv_usec = 0;
2006 ctx->file_ctx->timer = tevent_add_timer(ctx->ev, mem_ctx, tv,
2021 struct timeval tv, void *data)
2031 tv = tevent_timeval_current_ofs(MISSING_RESOLV_CONF_POLL_TIME, 0);
2032 te = tevent_add_timer(ctx->ev, ctx, tv, missing_resolv_conf, ctx);
2048 struct timeval tv;
2141 tv = tevent_timeval_current_ofs(MISSING_RESOLV_CONF_POLL_TIME, 0);
2142 te = tevent_add_timer(ctx->ev, ctx, tv, missing_resolv_conf, ctx);
2258 struct timeval tv;
2277 tv = tevent_timeval_current_ofs(10, 0);
2279 mini->timeout = tevent_add_timer(ctx->ev, mini, tv, init_timeout, mini);
2297 struct timeval tv;
2301 tv = tevent_timeval_current();
2309 te = tevent_add_timer(svc->mt_ctx->ev, svc, tv,
2431 struct timeval tv;
2467 tv = tevent_timeval_current_ofs(restart_delay, 0);
2468 te = tevent_add_timer(svc->mt_ctx->ev, svc, tv, mt_svc_restart, svc);