Home
last modified time | relevance | path

Searched refs:nextaction (Results 1 – 3 of 3) sorted by relevance

/openbsd/usr.sbin/ntpd/
H A Dntp.c92 time_t nextaction, last_sensor_scan = 0, now; in ntp_main() local
233 nextaction = getmonotime() + 900; in ntp_main()
287 if (p->next > 0 && p->next < nextaction) in ntp_main()
288 nextaction = p->next; in ntp_main()
289 if (p->deadline > 0 && p->deadline < nextaction) in ntp_main()
290 nextaction = p->deadline; in ntp_main()
312 nextaction = last_sensor_scan + SENSOR_SCAN_INTERVAL; in ntp_main()
318 if (s->next > 0 && s->next < nextaction) in ntp_main()
319 nextaction = s->next; in ntp_main()
355 nextaction = now + CONSTRAINT_RETRY_INTERVAL; in ntp_main()
[all …]
/openbsd/usr.sbin/bgpd/
H A Drtr_proto.c1349 time_t nextaction; in rtr_poll_events() local
1355 if ((nextaction = timer_nextduein(&rs->timers, now)) != -1 && in rtr_poll_events()
1356 nextaction < *timeout) in rtr_poll_events()
1357 *timeout = nextaction; in rtr_poll_events()
H A Dsession.c368 time_t nextaction; in session_main() local
412 if ((nextaction = timer_nextduein(&p->timers, in session_main()
413 now)) != -1 && nextaction < timeout) in session_main()
414 timeout = nextaction; in session_main()