Searched defs:secs (Results 1 - 6 of 6) sorted by relevance

/bind-9.11.3/lib/dns/
H A Dtime.c35 int secs; local
51 secs = year_secs(tm.tm_year + 1900);
52 t += secs;
54 while ((secs = year_secs(tm.tm_year + 1900)) <= t) {
55 t -= secs;
61 while ((secs = month_secs(tm.tm_mon, tm.tm_year + 1900)) <= t) {
62 t -= secs;
128 int secs; local
178 secs = (is_leap(i) ? 366 : 365) * 86400;
179 value -= secs;
[all...]
H A Dttl.c80 unsigned secs, mins, hours, days, weeks, x; local
82 secs = src % 60; src /= 60;
106 if (secs != 0 ||
108 RETERR(ttlfmt(secs, "second", verbose, ISC_TF(x > 0), target));
H A Drrl.c1011 int secs; local
1038 secs = delta_rrl_time(rrl->qps_time, now);
1039 if (secs <= 0) {
1042 qps = (1.0*rrl->qps_responses) / secs;
1043 if (secs >= rrl->window) {
1052 rrl->qps_responses, secs,
H A Dmessage.c3540 isc_uint32_t secs; local
3541 secs = isc_buffer_getuint32(&optbuf);
3544 snprintf(buf, sizeof(buf), "%u", secs);
3547 result = dns_ttl_totext(secs,
3791 isc_uint32_t secs; local
3792 secs = isc_buffer_getuint32(&optbuf);
3794 snprintf(buf, sizeof(buf), "%u", secs);
3797 result = dns_ttl_totext(secs,
/bind-9.11.3/bin/named/
H A Dxfrout.c1087 isc_uint32_t secs; local
1089 secs = isc_time_seconds(&expiretime);
1090 if (secs >= client->now && result == ISC_R_SUCCESS) {
1092 client->expire = secs - client->now;
H A Dquery.c8839 isc_uint32_t secs; local
8841 secs = isc_time_seconds(&expiretime);
8842 if (secs >= client->now &&
8846 client->expire = secs - client->now;

Completed in 50 milliseconds