/bind-9.11.3/lib/isc/unix/ |
H A D | time.c | 83 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...] |
H A D | socket.c | 1388 dev->timestamp.seconds = tv.tv_sec;
|
/bind-9.11.3/bin/tests/startperf/ |
H A D | mkzonefile.pl | 22 20 ; refresh (20 seconds) 23 20 ; retry (20 seconds)
|
/bind-9.11.3/lib/isc/unix/include/isc/ |
H A D | time.h | 31 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/lib/isc/win32/include/isc/ |
H A D | time.h | 46 unsigned int seconds, unsigned int nanoseconds); 48 * Set 'i' to a value representing an interval of 'seconds' seconds and 86 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds); 88 * Set 't' to a value which represents the given number of seconds and 242 * of seconds since the epoch; it will always be less than one 321 * Return the number of seconds since the epoch stored in a time structure. 331 * Ensure the number of seconds in an isc_time_t is representable by a time_t. 334 *\li The number of seconds stored in an isc_time_t might be larger 335 * than the number of seconds [all...] |
/bind-9.11.3/unit/atf-src/tools/ |
H A D | timers.cpp | 101 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/bin/tests/system/xferquota/ |
H A D | tests.sh | 33 seconds=`expr $ticks \* 1` 39 echo "I:Have $count zones up in $seconds seconds"
|
/bind-9.11.3/lib/isc/win32/ |
H A D | time.c | 54 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/tests/ |
H A D | t_api.pl | 135 q <seconds> : use seconds as the timeout value
|
/bind-9.11.3/bin/tests/system/nsupdate/ |
H A D | setup.sh | 38 2000 ; refresh (2000 seconds) 39 2000 ; retry (2000 seconds)
|
/bind-9.11.3/bin/named/ |
H A D | zoneconf.c | 795 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 D | client.c | 277 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/include/dns/ |
H A D | resolver.h | 542 dns_resolver_settimeout(dns_resolver_t *resolver, unsigned int seconds); 544 * Set the length of time the resolver will work on a query, in seconds. 555 * Get the current length of time the resolver will work on a query, in seconds.
|
/bind-9.11.3/lib/isc/ |
H A D | timer.c | 50 (d).seconds, (d).nanoseconds) 52 (d).seconds, (d).nanoseconds, (n).seconds, (n).nanoseconds) 54 (d).seconds, (d).nanoseconds) 275 * we're 15 seconds or more behind, and if we are, we signal
|
/bind-9.11.3/bin/named/include/named/ |
H A D | client.h | 189 #define NS_CLIENTATTR_WANTEXPIRE 0x0800 /*%< return seconds to expire */ 190 #define NS_CLIENTATTR_HAVEEXPIRE 0x1000 /*%< return seconds to expire */ 274 ns_client_settimeout(ns_client_t *client, unsigned int seconds);
|
/bind-9.11.3/lib/dns/ |
H A D | resolver.c | 154 /* 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 D | zone.c | 4846 "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...] |
/bind-9.11.3/bin/tests/system/digdelv/ |
H A D | tests.sh | 167 $DIG $DIGOPTS +tcp @10.53.0.2 +ttlunits A seconds.example > dig.out.test$n || ret=1 168 grep "^seconds.example. 45s" < dig.out.test$n > /dev/null || ret=1
|