Searched refs:seconds (Results 1 - 17 of 17) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/unix/
H A Dtime.c88 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...]
H A Dsocket.c1107 dev->timestamp.seconds = tv.tv_sec;
/bind-9.6-ESV-R11/lib/isc/unix/include/isc/
H A Dtime.h40 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/bin/tests/system/nsupdate/
H A Dsetup.sh35 2000 ; refresh (2000 seconds)
36 2000 ; retry (2000 seconds)
/bind-9.6-ESV-R11/lib/isc/win32/include/isc/
H A Dtime.h48 unsigned int seconds, unsigned int nanoseconds);
50 * Set 'i' to a value representing an interval of 'seconds' seconds and
88 isc_time_set(isc_time_t *t, unsigned int seconds, unsigned int nanoseconds);
90 * Set 't' to a value which represents the given number of seconds and
234 * of seconds since the epoch; it will always be less than one
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dtimer.cpp105 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/bin/tests/system/xferquota/
H A Dtests.sh37 seconds=`expr $ticks \* 1`
43 echo "I:Have $count zones up in $seconds seconds"
/bind-9.6-ESV-R11/bin/tests/
H A Dt_api.pl144 q <seconds> : use seconds as the timeout value
/bind-9.6-ESV-R11/lib/isc/win32/
H A Dtime.c61 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 Dzoneconf.c443 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 Dclient.c246 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/bin/named/include/named/
H A Dclient.h242 ns_client_settimeout(ns_client_t *client, unsigned int seconds);
/bind-9.6-ESV-R11/bin/tests/timers/
H A Dt_timers.c122 interval.seconds = Tx_seconds;
137 interval.seconds = Tx_FUDGE_SECONDS;
362 "specified task every 'interval' seconds and returns ISC_R_SUCCESS.";
466 interval.seconds = Tx_seconds;
477 interval.seconds = Tx_FUDGE_SECONDS;
528 "specified task when the timer has been idle for 'interval' seconds.";
602 interval.seconds = Tx_seconds;
613 interval.seconds = Tx_FUDGE_SECONDS;
/bind-9.6-ESV-R11/lib/isc/
H A Dtimer.c45 (d).seconds, (d).nanoseconds)
47 (d).seconds, (d).nanoseconds, (n).seconds, (n).nanoseconds)
49 (d).seconds, (d).nanoseconds)
208 * we're 15 seconds or more behind, and if we are, we signal
/bind-9.6-ESV-R11/bin/tests/tasks/
H A Dt_tasks.c1215 interval.seconds = 5;
1649 interval.seconds = 5;
2002 interval.seconds = 5;
/bind-9.6-ESV-R11/lib/dns/
H A Dzone.c3826 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...]
H A Dresolver.c1276 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

Completed in 102 milliseconds