Searched defs:seconds (Results 1 - 8 of 8) sorted by relevance
/bind-9.6-ESV-R11/lib/isc/unix/include/isc/ |
H A D | time.h | 40 unsigned int seconds; member in struct:isc_interval 50 unsigned int seconds, unsigned int nanoseconds); 52 * Set 'i' to a value representing an interval of 'seconds' seconds and 84 unsigned int seconds; member in struct:isc_time 91 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds); 93 * Set 't' to a value which represents the given number of seconds and 100 * isc_interval_set(i, seconds, nanoseconds); 243 * Return the number of seconds since the epoch stored in a time structure. 253 * Ensure the number of seconds i [all...] |
/bind-9.6-ESV-R11/unit/atf-src/atf-run/ |
H A D | timer.cpp | 105 impl::timer::timer(const unsigned int seconds) : argument 132 it.it_value.tv_sec = seconds; 144 it.it_value.tv_sec = seconds; 194 impl::child_timer::child_timer(const unsigned int seconds, const pid_t pid, argument 196 timer(seconds),
|
/bind-9.6-ESV-R11/lib/isc/unix/ |
H A D | time.c | 88 unsigned int seconds, unsigned int nanoseconds) 93 i->seconds = seconds; 102 if (i->seconds == 0 && i->nanoseconds == 0) 117 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds) { argument 121 t->seconds = seconds; 129 t->seconds = 0; 138 if (t->seconds == 0 && t->nanoseconds == 0) 175 * Ensure the tv_sec value fits in t->seconds 87 isc_interval_set(isc_interval_t *i, unsigned int seconds, unsigned int nanoseconds) argument 337 time_t seconds; local [all...] |
/bind-9.6-ESV-R11/lib/isc/win32/ |
H A D | time.c | 61 isc_interval_set(isc_interval_t *i, unsigned int seconds, argument 70 i->interval = (LONGLONG)seconds * INTERVALS_PER_S 84 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds) { argument 98 i1.QuadPart += (unsigned __int64)seconds*10000000;
|
/bind-9.6-ESV-R11/bin/named/ |
H A D | zoneconf.c | 443 int seconds; local 778 seconds = cfg_obj_asuint32(validity) * 86400; 779 dns_zone_setsigvalidityinterval(zone, seconds); 783 seconds /= 4; 785 if (seconds > 7 * 86400) 786 seconds = cfg_obj_asuint32(resign) * 789 seconds = cfg_obj_asuint32(resign) * 792 dns_zone_setsigresigninginterval(zone, seconds);
|
H A D | client.c | 246 ns_client_settimeout(ns_client_t *client, unsigned int seconds) { argument 250 isc_interval_set(&interval, seconds, 0); 1146 * seconds ago, assume that we are in an infinite error
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | resolver.c | 1276 unsigned int seconds; local 1280 * We retry every .8 seconds the first two times through the address 1300 * But don't ever wait for more than 10 seconds. 1305 seconds = us / 1000000; 1306 us -= seconds * 1000000; 1307 isc_interval_set(&fctx->interval, seconds, us * 1000); 2031 * Extend the idle timer for TCP. 20 seconds
|
H A D | zone.c | 3826 delta *= 24 * 3600; /* to seconds */ 11416 isc_uint32_t seconds = isc_time_seconds(now); local 11424 if (zmgr->unreachable[i].expire >= seconds && 11430 zmgr->unreachable[i].last = seconds; 11483 isc_uint32_t seconds = isc_time_seconds(now); local 11484 isc_uint32_t last = seconds; 11496 if (zmgr->unreachable[i].expire < seconds) 11509 zmgr->unreachable[i].expire = seconds + UNREACH_HOLD_TIME; 11510 zmgr->unreachable[i].last = seconds; 11511 if (zmgr->unreachable[i].expire < seconds) [all...] |
Completed in 4582 milliseconds