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

/bind-9.6-ESV-R11/lib/dns/tests/
H A Dtime_test.c47 isc_uint32_t when; local
59 result = dns_time32_fromtext(test_text, &when);
61 ATF_REQUIRE_EQ(when, test_time);
75 isc_uint32_t when; local
87 result = dns_time32_fromtext(test_text, &when);
89 ATF_REQUIRE_EQ(when, test_time);
103 isc_uint32_t when; local
115 result = dns_time32_fromtext(test_text, &when);
117 ATF_REQUIRE_EQ(when, test_time);
131 isc_uint32_t when; local
159 isc_uint32_t when; local
187 isc_uint32_t when; local
[all...]
/bind-9.6-ESV-R11/lib/dns/
H A Ddiff.c201 isc_stdtime_t when; local
209 when = 0;
211 when = sig.timeexpire - delta;
221 if (when == 0 || sig.timeexpire - delta < when)
222 when = sig.timeexpire - delta;
228 return (when);
379 * This will not happen when executing a
382 * It may happen when receiving an IXFR
H A Dmaster.c55 * by these sizes when we need to.
2179 * it might cause a hazardous result when "totallen"
2182 * data step by step, and commit partial data when
2770 isc_uint32_t when; local
2775 when = sig.timeexpire - resign;
2780 if (sig.timeexpire - resign < when)
2781 when = sig.timeexpire - resign;
2784 return (when);
H A Dzone.c507 * Hold state for when we are signing a zone with a new
3810 set_key_expiry_warning(dns_zone_t *zone, isc_stdtime_t when, isc_stdtime_t now) argument
3814 zone->key_expiry = when;
3815 if (when <= now) {
3819 } else if (when < now + 7 * 24 * 3600) {
3822 when); /* XXXMPA convert to date. */
3823 delta = when - now;
3827 isc_time_set(&zone->keywarntime, when - delta, 0);
3831 when); /* XXXMPA convert to date. */
3832 isc_time_set(&zone->keywarntime, when
[all...]
/bind-9.6-ESV-R11/lib/dns/rdata/generic/
H A Drrsig_46.c159 unsigned long when; local
226 when = uint32_fromregion(&sr);
228 RETERR(dns_time32_totext(when, target));
H A Dsig_24.c133 unsigned long when; local
202 when = uint32_fromregion(&sr);
204 RETERR(dns_time32_totext(when, target));
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dapp.c307 isc_time_t when, now; local
320 result = isc__timermgr_nextevent(&when);
327 us = isc_time_microdiff(&when, &now);
341 * We call isc__timermgr_dispatch() only when
485 * be made pending and we will get it when we call sigwait().
/bind-9.6-ESV-R11/lib/isc/
H A Dtimer.c207 * return when the time expires, so here, we check to see if
315 * will be posted to 'task' and when dispatched 'action' will be
921 isc__timermgr_nextevent(isc_time_t *when) { argument
924 *when = timermgr->due;

Completed in 40 milliseconds