Symbol: strptime
bin/date/date.c
161
if (strptime(p, pformat, &tm) == NULL) {
include/time.h
130
char *strptime(const char *__restrict, const char *__restrict,
lib/libc/hidden/time.h
45
PROTO_NORMAL(strptime);
lib/libc/time/strptime.c
90
DEF_WEAK(strptime);
regress/lib/libc/time/strptime/main.c
93
p = strptime(buf, format, &tm);
sbin/dump/itime.c
288
str = strptime(un_buf, "%a %b %e %H:%M:%S %Y", &then);
sbin/dump/main.c
191
str = strptime(optarg, "%a %b %e %H:%M:%S %Y", &then);
sbin/unwind/libunbound/config.h
1562
char *strptime(const char *s, const char *format, struct tm *tm);
usr.bin/cal/cal.c
557
if ((cp = strptime(s, "%b", &tm)) != NULL && *cp == '\0')
usr.bin/chpass/util.c
71
t = strptime(p, "%B %d %Y", &tm);
usr.bin/cvs/entries.c
196
if (strptime(p, "%a %b %d %T %Y", &t) != NULL) {
usr.bin/ftp/fetch.c
985
if (strptime(cp, "%a, %d %h %Y %T %Z", &lmt) == NULL)
usr.bin/mandoc/mandoc.c
106
pp = strptime(p, fmt, &tm);
usr.bin/newsyslog/newsyslog.c
1314
if (strptime(s, format, &tm) == NULL)
usr.bin/ssh/misc.c
2490
if ((cp = strptime(buf, fmt, &tm)) == NULL || *cp != '\0')
usr.bin/touch/touch.c
297
p = strptime(arg, "%F", &tm);
usr.bin/touch/touch.c
300
p = strptime(p + 1, "%T", &tm);
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);
usr.sbin/httpd/server_file.c
742
if (strptime(since->kv_value,
usr.sbin/ntpd/constraint.c
1039
if (strptime(p, IMF_FIXDATE,
usr.sbin/snmpd/mib.y
512
if (strptime(timebuf, "%Y%m%d%H%MZ", &tm) == NULL) {
usr.sbin/unbound/smallapp/unbound-anchor.c
1333
s = strptime(s, "%t%Y%t-%t%m%t-%t%d%tT%t%H%t:%t%M%t:%t%S%t", &tm);
usr.sbin/user/user.c
978
if (strptime(s, "%c", &tm) != NULL) {
usr.sbin/user/user.c
980
} else if (strptime(s, "%B %d %Y", &tm) != NULL) {