Lines Matching refs:now
378 time_t now;
389 now = (time_t) t->seconds;
391 flen = strftime(buf, len, "%d-%b-%Y %X", localtime_r(&now, &tm));
393 flen = strftime(buf, len, "%d-%b-%Y %X", localtime(&now));
406 time_t now;
420 now = (time_t)t->seconds;
423 gmtime_r(&now, &tm));
425 flen = strftime(buf, len, "%a, %d %b %Y %H:%M:%S GMT", gmtime(&now));
451 time_t now;
462 now = (time_t)t->seconds;
464 flen = strftime(buf, len, "%Y-%m-%dT%H:%M:%SZ", gmtime_r(&now, &tm));
466 flen = strftime(buf, len, "%Y-%m-%dT%H:%M:%SZ", gmtime(&now));
473 time_t now;
484 now = (time_t)t->seconds;
486 flen = strftime(buf, len, "%Y-%m-%dT%H:%M:%SZ", gmtime_r(&now, &tm));
488 flen = strftime(buf, len, "%Y-%m-%dT%H:%M:%SZ", gmtime(&now));