Searched defs:seconds (Results 1 - 8 of 8) sorted by relevance

/bind-9.11.3/lib/isc/unix/include/isc/
H A Dtime.h31 unsigned int seconds; member in struct:isc_interval
48 unsigned int seconds, unsigned int nanoseconds);
50 * Set 'i' to a value representing an interval of 'seconds' seconds and
82 unsigned int seconds; member in struct:isc_time
89 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds);
91 * Set 't' to a value which represents the given number of seconds and
98 * isc_interval_set(i, seconds, nanoseconds);
241 * Return the number of seconds since the epoch stored in a time structure.
251 * Ensure the number of seconds i
[all...]
/bind-9.11.3/unit/atf-src/tools/
H A Dtimers.cpp101 impl::timer::timer(const unsigned int seconds) : argument
128 it.it_value.tv_sec = seconds;
140 it.it_value.tv_sec = seconds;
190 impl::child_timer::child_timer(const unsigned int seconds, const pid_t pid, argument
192 timer(seconds),
/bind-9.11.3/lib/isc/unix/
H A Dtime.c83 unsigned int seconds, unsigned int nanoseconds)
88 i->seconds = seconds;
97 if (i->seconds == 0 && i->nanoseconds == 0)
112 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds) { argument
116 t->seconds = seconds;
124 t->seconds = 0;
133 if (t->seconds == 0 && t->nanoseconds == 0)
170 * Ensure the tv_sec value fits in t->seconds
82 isc_interval_set(isc_interval_t *i, unsigned int seconds, unsigned int nanoseconds) argument
332 time_t seconds; local
[all...]
/bind-9.11.3/lib/isc/win32/
H A Dtime.c54 isc_interval_set(isc_interval_t *i, unsigned int seconds, argument
63 i->interval = (LONGLONG)seconds * INTERVALS_PER_S
77 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds) { argument
91 i1.QuadPart += (unsigned __int64)seconds*10000000;
241 time_t seconds; local
245 seconds = (time_t)isc_time_seconds(t);
250 if (isc_time_seconds(t) > (~0U>>1) && seconds <= (time_t)(~0U>>1))
253 *secondsp = seconds;
/bind-9.11.3/bin/named/
H A Dzoneconf.c795 int seconds; local
1359 seconds = cfg_obj_asuint32(validity) * 86400;
1360 dns_zone_setsigvalidityinterval(zone, seconds);
1364 seconds /= 4;
1366 if (seconds > 7 * 86400)
1367 seconds = cfg_obj_asuint32(resign) *
1370 seconds = cfg_obj_asuint32(resign) *
1373 dns_zone_setsigresigninginterval(zone, seconds);
H A Dclient.c277 ns_client_settimeout(ns_client_t *client, unsigned int seconds) { argument
281 isc_interval_set(&interval, seconds, 0);
1499 * seconds ago, assume that we are in an infinite error
/bind-9.11.3/lib/dns/
H A Dresolver.c154 /* The default time in seconds for the whole query to live. */
159 /* The maximum time in seconds for the whole query to live. */
1586 unsigned int seconds; local
1590 * We retry every .8 seconds the first two times through the address
1616 * But don't ever wait for more than 10 seconds.
1621 seconds = us / US_PER_SEC;
1622 us -= seconds * US_PER_SEC;
1623 isc_interval_set(&fctx->interval, seconds, us * 1000);
2665 * Extend the idle timer for TCP. 20 seconds
10214 dns_resolver_settimeout(dns_resolver_t *resolver, unsigned int seconds) { argument
[all...]
H A Dzone.c4846 "next resign: %s/%s in %d seconds",
6086 delta *= 24 * 3600; /* to seconds */
11658 * Set the file modification time zone->expire seconds before expiretime.
16771 isc_uint32_t seconds = isc_time_seconds(now); local
16779 if (zmgr->unreachable[i].expire >= seconds &&
16785 zmgr->unreachable[i].last = seconds;
16838 isc_uint32_t seconds = isc_time_seconds(now); local
16839 isc_uint32_t last = seconds;
16851 if (zmgr->unreachable[i].expire < seconds)
16864 zmgr->unreachable[i].expire = seconds
[all...]

Completed in 94 milliseconds