Searched defs:due (Results 1 - 3 of 3) sorted by relevance

/bind-9.11.3/lib/isc/include/isc/
H A Dtimer.h89 isc_time_t due; member in struct:isc_timerevent
/bind-9.11.3/lib/isc/
H A Dtimer.c85 isc_time_t due; member in struct:isc__timer
101 isc_time_t due; member in struct:isc__timermgr
181 isc_time_t due; local
205 isc_time_seconds(&manager->due) != 0);
209 * Compute the new due time.
212 result = isc_time_add(now, &timer->interval, &due);
216 isc_time_compare(&timer->expires, &due) < 0)
217 due = timer->expires;
220 due = timer->expires;
222 due
[all...]
/bind-9.11.3/contrib/perftcpdns/
H A Dperftcpdns.c39 * (second "loops" counter) the date of the due (aka next) connect()
41 * - the due date is compared with the current date (aka now).
42 * - if the due is before, lateconn counter is incremented, else
45 * before the due date (e.g., because the sleep was interrupted)
48 * computed from the difference between now and due divided by rate,
272 struct timespec due; /* the date of next connect */ variable in typeref:struct:timespec
1326 due = last;
1328 due.tv_sec += 1;
1330 due.tv_nsec += 1010000000 / rate;
1331 while (due
[all...]

Completed in 11 milliseconds