Lines Matching refs:flen
384 unsigned int flen; in isc_time_formattimestamp() local
389 flen = strftime(buf, len, "%d-%b-%Y %X", localtime(&now)); in isc_time_formattimestamp()
390 INSIST(flen < len); in isc_time_formattimestamp()
391 if (flen != 0) in isc_time_formattimestamp()
392 snprintf(buf + flen, len - flen, in isc_time_formattimestamp()
401 unsigned int flen; in isc_time_formathttptimestamp() local
406 flen = strftime(buf, len, "%a, %d %b %Y %H:%M:%S GMT", gmtime(&now)); in isc_time_formathttptimestamp()
407 INSIST(flen < len); in isc_time_formathttptimestamp()
413 unsigned int flen; in isc_time_formatISO8601() local
418 flen = strftime(buf, len, "%Y-%m-%dT%H:%M:%SZ", gmtime(&now)); in isc_time_formatISO8601()
419 INSIST(flen < len); in isc_time_formatISO8601()