Symbol: strftime
bin/date/date.c
487
ret = strftime(s, maxsize, newformat, t);
bin/ls/print.c
457
strftime(str, len, format, tm);
bin/pax/gen_subs.c
104
if (strftime(f_date,DATELEN,timefrmt,localtime(&(sbp->st_mtime))) == 0)
bin/pax/gen_subs.c
157
if (strftime(f_date, DATELEN, timefrmt,
bin/ps/print.c
397
(void)strftime(buf, buflen, "%H:%M ", tp);
bin/ps/print.c
399
(void)strftime(buf, buflen, "%a%H ", tp);
bin/ps/print.c
401
(void)strftime(buf, buflen, "%e%b%y", tp);
bin/ps/print.c
420
(void)strftime(buf, buflen, "%c", localtime(&then));
bin/sh/parser.c
2260
i += strftime(&ps[i], PROMPTLEN - i - 1, tfmt, now);
crypto/heimdal/appl/ftp/ftpd/ls.c
273
strftime(buf, sizeof(buf), "%b %e %Y", tm);
crypto/heimdal/appl/ftp/ftpd/ls.c
275
strftime(buf, sizeof(buf), "%b %e %H:%M", tm);
crypto/heimdal/appl/telnet/telnetd/utility.c
500
strftime(db, sizeof(db), fmtstr, localtime(&t));
crypto/heimdal/kadmin/util.c
164
strftime(str, len, "%Y-%m-%d %H:%M:%S UTC", gmtime(&t));
crypto/heimdal/kadmin/util.c
166
strftime(str, len, "%Y-%m-%d", gmtime(&t));
crypto/heimdal/kcm/events.c
67
strftime(buf, 64, "%m-%dT%H:%M", gmtime(&time));
crypto/heimdal/lib/hdb/hdb-ldap.c
285
strftime(buf, sizeof(buf), "%Y%m%d%H%M%SZ", tm);
crypto/heimdal/lib/hdb/print.c
117
strftime(buf, sizeof(buf), "%Y%m%d%H%M%S", gmtime(&t));
crypto/heimdal/lib/hx509/print.c
77
strftime(s, 30, "%Y-%m-%d %H:%M:%S", tm);
crypto/heimdal/lib/kadm5/iprop-log.c
125
strftime(t, sizeof(t), "%Y-%m-%d %H:%M:%S", localtime(&timestamp));
crypto/heimdal/lib/kadm5/iprop-log.c
199
strftime(t, sizeof(t), "%Y-%m-%d %H:%M:%S",
crypto/heimdal/lib/kadm5/iprop-log.c
208
strftime(t, sizeof(t), "%Y-%m-%d %H:%M:%S",
crypto/heimdal/lib/krb5/time.c
118
strftime(s, len, include_time ? context->time_fmt : context->date_fmt, tm) == 0)
crypto/heimdal/lib/roken/getarg.c
106
strftime(timestr, sizeof(timestr), "%B %e, %Y", localtime(&t));
crypto/heimdal/lib/roken/strpftime-test.c
246
len = strftime (buf, sizeof(buf), tests[i].vals[j].format, tm);
crypto/heimdal/lib/roken/strpftime-test.c
272
strftime (buf, sizeof(buf), tests[i].vals[j].format, &tm2);
crypto/heimdal/lib/roken/strpftime-test.h
49
strftime (char *buf, size_t maxsize, const char *format,
crypto/heimdal/lib/sl/sl.c
54
strftime(timestr, sizeof(timestr), "%b %d, %Y", localtime(&t));
crypto/krb5/src/kadmin/cli/kadmin.c
150
strftime(out, sizeof(out), "%a %b %d %H:%M:%S %Z %Y", tm) == 0)
crypto/krb5/src/kadmin/dbutil/kdb5_mkey.c
37
strftime(out, sizeof(out), "%a %b %d %H:%M:%S %Z %Y", tm) == 0)
crypto/krb5/src/kadmin/dbutil/tabdump.c
163
if (strftime(buf, sizeof(buf), "%Y-%m-%dT%H:%M:%SZ", tm) == 0) {
crypto/krb5/src/lib/kadm5/logger.c
661
soff = strftime(outbuf, sizeof(outbuf), "%b %d %H:%M:%S", tm);
crypto/krb5/src/lib/krb5/krb/str_conv.c
209
ret = strftime(buffer, buflen, fmt, &tmbuf);
crypto/krb5/src/lib/krb5/krb/str_conv.c
243
if ((ndone = strftime(buffer, buflen, sftime_format_table[i], tmp)))
crypto/krb5/src/plugins/kdb/ldap/libkdb_ldap/ldap_principal2.c
1821
if (strftime(strtime, 50, "%Y%m%d%H%M%SZ", &tme) == 0) {
crypto/openssh/krl.c
822
strftime(ts, nts, "%Y%m%dT%H%M%S", tm);
crypto/openssh/misc.c
2541
strftime(buf, len, "%Y-%m-%dT%H:%M:%S", &tm);
crypto/openssh/regress/timestamp.c
42
if (strftime(buf, sizeof buf, "%Y%m%dT%H%M%S", tm) <= 0)
crypto/openssh/sftp-common.c
246
sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime);
crypto/openssh/sftp-common.c
248
sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime);
crypto/openssh/sftp-server.c
1015
strftime(buf, sizeof(buf), "%Y%m%d-%H:%M:%S",
crypto/openssh/sftp-server.c
1072
strftime(buf, sizeof(buf), "%Y%m%d-%H:%M:%S",
crypto/openssh/sftp-server.c
1495
strftime(buf, sizeof(buf), "%Y%m%d-%H:%M:%S",
include/time.h
127
size_t strftime(char * __restrict, size_t, const char * __restrict,
lib/libbe/be.c
555
len += strftime(buf + len, buflen - len, "@%F-%T", localtime(&rawtime));
lib/libc/tests/stdtime/detect_tz_changes_test.c
258
olen = strftime(obuf, sizeof(obuf), "%z (%Z)", tm);
lib/libc/tests/stdtime/detect_tz_changes_test.c
99
len = strftime(buf, sizeof(buf), "%z (%Z)", tm);
lib/libfetch/http.c
1672
(void)strftime(timebuf, 80, "%a, %d %b %Y %T GMT",
libexec/getty/main.c
758
(void)strftime(db, sizeof(db), DF, localtime(&t));
libexec/tftpd/tftpd.c
639
len = strftime(yyyymmdd, sizeof(yyyymmdd), newfile_format, &lt);
sbin/bectl/bectl_list.c
258
strftime(buf, BUFSZ, "%Y-%m-%d %H:%M",
sbin/camcontrol/timestamp.c
472
strftime(temp_timestamp_string,
sbin/ipf/ipfstat/ipfstat.c
1504
strftime(str1, 80, "%T", localtime(&t));
sbin/ipf/ipmon/ipmon.c
1063
(void) strftime(t, len, "%d/%m/%Y ", tm);
sbin/ipf/ipmon/ipmon.c
1068
(void) strftime(t, len, "%T", tm);
sbin/ipf/ipmon/ipmon.c
655
(void) strftime(t, len, "%d/%m/%Y ", tm);
sbin/ipf/ipmon/ipmon.c
660
(void) strftime(t, len, "%T", tm);
sbin/ipf/ipmon/ipmon.c
838
(void) strftime(t, len, "%d/%m/%Y ", tm);
sbin/ipf/ipmon/ipmon.c
843
(void) strftime(t, len, "%T", tm);
sbin/ipfw/ipfw2.c
6231
strftime(buf, sizeof(buf), "%T", &tm);
sbin/recoverdisk/recoverdisk.c
102
assert(strftime(pp->str, sizeof pp->str, fmt, &tm1) != 0);
sbin/route/route_netlink.c
454
strftime(buf, sizeof(buf), "%T", &tm);
sbin/savecore/savecore.c
202
if (strftime(time_str, sizeof(time_str), "%F %T %z", &tm) == 0)
sys/kern/subr_fattime.c
281
strftime(buf, sizeof buf, "%Y %m %d %H %M %S", &tm);
sys/kern/subr_fattime.c
300
strftime(buf, sizeof buf, "%Y %m %d %H %M %S", &tm);
tests/sys/net/routing/rtsock_print.h
270
strftime(buf, sizeof(buf), "%F %T", &tm_res);
tests/sys/net/routing/rtsock_print.h
319
strftime(buf, sizeof(buf), "%F %T", &tm_res);
tests/sys/net/routing/rtsock_print.h
356
strftime(buf, sizeof(buf), "%F %T", &tm_res);
tools/test/gpioevents/gpioevents.c
176
strftime(timebuf, sizeof(timebuf), "%Y-%m-%dT%H:%M:%S",
tools/test/stress2/lib/options.c
218
strftime(buf, sizeof(buf), "%T", gmtime(&t));
tools/test/stress2/testcases/run/run.c
91
(void) strftime(ct, sizeof(ct), "%T", tm);
tools/tools/net80211/stumbler/stumbler.c
219
strftime(tim, sizeof(tim), "%H:%M:%S", t);
usr.bin/ar/read.c
127
(void)strftime(buf, sizeof(buf),
usr.bin/at/at.c
510
strftime(timestr, TIMESIZE, "%+", &runtime);
usr.bin/calendar/day.c
66
strftime(dayname, sizeof(dayname) - 1, "%A, %d %B %Y", tp1);
usr.bin/calendar/events.c
217
(void)strftime(dbuf, sizeof(dbuf), d_first ? "%e %b" : "%b %e", &tm);
usr.bin/calendar/locale.c
110
strftime(buf, sizeof(buf), "%b", &tm);
usr.bin/calendar/locale.c
122
strftime(buf, sizeof(buf), "%B", &tm);
usr.bin/calendar/locale.c
82
strftime(buf, sizeof(buf), "%a", &tm);
usr.bin/calendar/locale.c
94
strftime(buf, sizeof(buf), "%A", &tm);
usr.bin/chat/chat.c
1237
strftime (report_buffer, 20, "%b %d %H:%M:%S ", tm_now);
usr.bin/diff/diffreg.c
1713
strftime(buf, sizeof(buf), time_format, tm_ptr1);
usr.bin/diff/diffreg.c
1717
strftime(buf, sizeof(buf), "%z", tm_ptr1);
usr.bin/diff/diffreg.c
1726
strftime(buf, sizeof(buf), time_format, tm_ptr2);
usr.bin/diff/diffreg.c
1730
strftime(buf, sizeof(buf), "%z", tm_ptr2);
usr.bin/diff/diffreg_new.c
129
timelen = strftime(buf, 256, time_format, tm_ptr);
usr.bin/diff/diffreg_new.c
130
endlen = strftime(end, 10, "%z", tm_ptr);
usr.bin/find/ls.c
101
strftime(longstring, sizeof(longstring), format, tm);
usr.bin/find/printf.c
153
if (strftime(buffer, sizeof(buffer), fmt, &tm) == 0)
usr.bin/finger/lprint.c
170
strftime(t, sizeof(t),
usr.bin/finger/lprint.c
203
strftime(t, sizeof(t),
usr.bin/finger/lprint.c
208
strftime(t, sizeof(t),
usr.bin/finger/lprint.c
226
strftime(t, sizeof(t),
usr.bin/finger/lprint.c
232
strftime(t, sizeof(t),
usr.bin/finger/lprint.c
239
strftime(t, sizeof(t),
usr.bin/finger/sprint.c
124
(void)strftime(p, sizeof(p), "%a", lc);
usr.bin/finger/sprint.c
126
(void)strftime(p, sizeof(p),
usr.bin/finger/sprint.c
131
(void)strftime(p, sizeof(p), "%Y", lc);
usr.bin/finger/sprint.c
133
(void)strftime(p, sizeof(p), "%R", lc);
usr.bin/kdump/kdump.c
2035
strftime(timestr, sizeof(timestr), TIME_FORMAT, tm);
usr.bin/kdump/kdump.c
2047
strftime(timestr, sizeof(timestr), TIME_FORMAT, tm);
usr.bin/kdump/kdump.c
2059
strftime(timestr, sizeof(timestr), TIME_FORMAT, tm);
usr.bin/kdump/kdump.c
2071
strftime(timestr, sizeof(timestr), TIME_FORMAT, tm);
usr.bin/last/last.c
253
(void) strftime(ct, sizeof(ct), "%+", tm);
usr.bin/last/last.c
357
(void) strftime(ct, sizeof(ct), d_first ?
usr.bin/last/last.c
391
(void) strftime(ct, sizeof(ct), "%R", tm);
usr.bin/last/last.c
401
(void) strftime(ct, sizeof(ct), width >= 8 ? "%T" : "%R", tm);
usr.bin/lastcomm/lastcomm.c
178
(void)strftime(buf, sizeof(buf), format,
usr.bin/lastcomm/lastcomm.c
190
(void)strftime(buf, sizeof(buf), format,
usr.bin/leave/leave.c
141
strftime(tb, sizeof(tb), "%+", localtime(&daytime));
usr.bin/logins/logins.c
317
strftime(cbuf, sizeof(cbuf), pwd->pw_change ? "%F" : "0", tm);
usr.bin/logins/logins.c
319
strftime(ebuf, sizeof(ebuf), pwd->pw_expire ? "%F" : "0", tm);
usr.bin/ncal/ncal.c
572
strftime(buf, sizeof(buf), d_first ? "%e %B %Y" : "%B %e %Y", &tm);
usr.bin/pr/pr.c
1389
if (strftime(buf, HDBUF, timefrmt, timeptr) <= 0) {
usr.bin/rwho/rwho.c
182
strftime(cbuf, sizeof(cbuf), d_first ? "%e %b %R" : "%b %e %R",
usr.bin/script/script.c
616
l = strftime(buf, sizeof buf, tstamp_fmt,
usr.bin/stat/stat.c
788
(void)strftime(path, sizeof(path), timefmt, tm);
usr.bin/systat/vmstat.c
286
(void) strftime(buf, sizeof(buf),
usr.bin/w/w.c
486
if (strftime(buf, sizeof(buf),
usr.bin/who/who.c
194
strftime(buf, sizeof(buf), d_first ? "%e %b %R" : "%b %e %R", tm);
usr.sbin/ac/ac.c
291
(void)strftime(date, sizeof(date),
usr.sbin/apm/apm.c
283
strftime(buf, sizeof(buf), "%c", &tm);
usr.sbin/fifolog/fifolog_reader/fifolog_reader.c
67
i = strftime(buf, sizeof buf, opt_T, &utc);
usr.sbin/gstat/gstat.c
227
(void)strftime(ts,sizeof(ts),
usr.sbin/lpr/common_source/common.c
482
strftime(tempstr, TIMESTR_SIZE, LPD_TIMESTAMP_PATTERN,
usr.sbin/mfiutil/mfi_evt.c
266
strftime(buffer, sizeof(buffer), "%+", localtime(&t));
usr.sbin/newsyslog/newsyslog.c
1925
strftime(datetimestr, sizeof(datetimestr), timefnamefmt, &tm);
usr.sbin/pw/pw_log.c
103
strftime(nfmt, sizeof nfmt, "%Y-%m-%d %T ", t);
usr.sbin/pw/pw_user.c
587
strftime(acexpire, sizeof acexpire, "%c", tptr);
usr.sbin/pw/pw_user.c
589
strftime(pwexpire, sizeof pwexpire, "%c", tptr);
usr.sbin/syslogd/syslogd.c
1948
if (strftime(timebuf, sizeof(timebuf), "%FT%T.______%z",
usr.sbin/syslogd/syslogd.c
1992
if (strftime(timebuf, sizeof(timebuf), RFC3164_DATEFMT,
usr.sbin/usbdump/usbdump.c
501
len = strftime(buf, sizeof(buf), "%H:%M:%S", tm);
usr.sbin/watch/watch.c
98
strftime(btmp, 1024, "Time: %d %b %H:%M", localtime(&t));