Symbol: timestr
games/atc/extern.h
140
const char *timestr(int);
games/atc/log.c
253
score[i].time, timestr(score[i].real_time),
usr.bin/at/at.c
188
char timestr[TIMESIZE];
usr.bin/at/at.c
364
strftime(timestr, TIMESIZE, "%a %b %e %T %Y", &runtime);
usr.bin/at/at.c
367
timestr);
usr.bin/at/at.c
400
char timestr[TIMESIZE];
usr.bin/at/at.c
407
strftime(timestr, TIMESIZE, "%a %b %e %T %Y", &runtime);
usr.bin/at/at.c
409
job->queue, timestr);
usr.bin/at/at.c
417
strftime(timestr, TIMESIZE, "%b %e, %Y %R", &runtime);
usr.bin/at/at.c
419
timestr, pw ? pw->pw_name : "???",
usr.bin/compress/main.c
909
char *timestr;
usr.bin/compress/main.c
924
timestr = ctime(&t) + 4;
usr.bin/compress/main.c
925
timestr[12] = '\0';
usr.bin/compress/main.c
926
if (timestr[4] == ' ')
usr.bin/compress/main.c
927
timestr[4] = '0';
usr.bin/compress/main.c
929
timestr);
usr.bin/ftp/util.c
628
char *timestr = reply_string;
usr.bin/ftp/util.c
631
while (!isspace((unsigned char)*timestr))
usr.bin/ftp/util.c
632
timestr++;
usr.bin/ftp/util.c
633
while (isspace((unsigned char)*timestr))
usr.bin/ftp/util.c
634
timestr++;
usr.bin/ftp/util.c
635
if (strncmp(timestr, "191", 3) == 0) {
usr.bin/ftp/util.c
638
timestr[0] = ' ';
usr.bin/ftp/util.c
639
timestr[1] = '2';
usr.bin/ftp/util.c
640
timestr[2] = '0';
usr.bin/kdump/ktrstruct.c
146
char timestr[PATH_MAX + 4];
usr.bin/kdump/ktrstruct.c
159
(void)strftime(timestr, sizeof(timestr), TIME_FORMAT,
usr.bin/kdump/ktrstruct.c
161
printf("<\"%s\">", timestr);
usr.bin/mg/grep.c
183
char timestr[NTIME];
usr.bin/mg/grep.c
225
strftime(timestr, sizeof(timestr), "%a %b %e %T %Y", localtime(&t));
usr.bin/mg/grep.c
230
addlinef(bp, "Command finished at %s", timestr);
usr.bin/mg/grep.c
233
"at %s", status, timestr);
usr.bin/mg/grep.c
236
WTERMSIG(ret), timestr);
usr.sbin/dhcpd/parse.c
509
char timestr[26]; /* "w yyyy/mm/dd hh:mm:ss UTC" */
usr.sbin/dhcpd/parse.c
515
memset(timestr, 0, sizeof(timestr));
usr.sbin/dhcpd/parse.c
526
n = strlcat(timestr, val, sizeof(timestr));
usr.sbin/dhcpd/parse.c
527
if (n >= sizeof(timestr)) {
usr.sbin/dhcpd/parse.c
546
p = strptime(timestr, DB_TIMEFMT, &tm);
usr.sbin/dhcpd/parse.c
548
p = strptime(timestr, OLD_DB_TIMEFMT, &tm);