Lines Matching defs:verbose
43 ttlfmt(unsigned int t, const char *s, isc_boolean_t verbose,
50 if (verbose)
72 dns_ttl_totext(isc_uint32_t src, isc_boolean_t verbose, isc_buffer_t *target) {
73 return (dns_ttl_totext2(src, verbose, ISC_TRUE, target));
77 dns_ttl_totext2(isc_uint32_t src, isc_boolean_t verbose,
91 RETERR(ttlfmt(weeks, "week", verbose, ISC_TF(x > 0), target));
95 RETERR(ttlfmt(days, "day", verbose, ISC_TF(x > 0), target));
99 RETERR(ttlfmt(hours, "hour", verbose, ISC_TF(x > 0), target));
103 RETERR(ttlfmt(mins, "minute", verbose, ISC_TF(x > 0), target));
108 RETERR(ttlfmt(secs, "second", verbose, ISC_TF(x > 0), target));
117 if (x == 1 && upcase && !verbose) {