Symbol: strptime
bin/date/date.c
366
t = strptime(p, fmt, lt);
bin/date/date.c
380
t = strptime(p, "%m%d%H%M", lt);
bin/date/date.c
387
t = strptime(t, yrdigs == 2 ? "%y" : "%Y", lt);
include/time.h
141
char *strptime(const char * __restrict, const char * __restrict,
lib/libc/compat/include/time.h
50
char *strptime(const char * __restrict, const char * __restrict,
lib/libc/time/getdate.c
102
rp = strptime(str, line, rtmp);
lib/libc/time/strptime.c
250
bp = (const u_char *)strptime((const char *)bp,
lib/libc/time/strptime.c
49
__weak_alias(strptime,_strptime)
libexec/httpd/bozohttpd.c
977
if ((remainder = strptime(val, "%a, %d %b %Y %T GMT", &tm)) == NULL &&
libexec/httpd/bozohttpd.c
978
(remainder = strptime(val, "%a, %d-%b-%y %T GMT", &tm)) == NULL &&
libexec/httpd/bozohttpd.c
979
(remainder = strptime(val, "%a %b %d %T %Y", &tm)) == NULL)
sbin/dump/unctime.c
57
str = strptime(str, "%a %b %e %H:%M:%S %Y", &then);
sbin/routed/parms.c
458
ptr = strptime(buf, "%y/%m/%d@%H:%M\n", &tm);
share/examples/refuse/ian/libfetch/http.c
486
r = strptime(p, "%a, %d %b %Y %H:%M:%S GMT", &tm);
tests/lib/libc/time/t_strptime.c
170
if ((rv = strptime(name, fmt, &tm)) == NULL)
tests/lib/libc/time/t_strptime.c
535
if (strptime(buf, "%s", &tm) == NULL) {
tests/lib/libc/time/t_strptime.c
54
ret = strptime(buf, fmt, &tm);
tests/lib/libc/time/t_strptime.c
83
ATF_CHECK_MSG(strptime(buf, fmt, &tm) == NULL, "strptime(\"%s\", "
usr.bin/chpass/util.c
90
t = strptime(p, "%B %d %Y", &tm);
usr.bin/cvslatest/cvslatest.c
143
if ((p = strptime(dt, fmt, &tm)) == NULL || *p) {
usr.bin/ftp/util.c
747
(strptime(timestr, "%Y%m%d%H%M%S", &timebuf) == NULL)) {
usr.bin/ftp/util.c
810
if ((t = strptime(httpdate, "%a, %d %b %Y %H:%M:%S GMT", parsed)) ||
usr.bin/ftp/util.c
812
(t = strptime(httpdate, "%a, %d-%b-%y %H:%M:%S GMT", parsed)) ||
usr.bin/ftp/util.c
814
(t = strptime(httpdate, "%a, %b %d %H:%M:%S %Y", parsed))) {
usr.bin/mail/format.c
575
if ((tail = strptime(date, " %a,", &tmp_tm)) == NULL)
usr.bin/mail/format.c
581
if ((tail = strptime(tail, " %d %b", &tmp_tm)) == NULL)
usr.bin/mail/format.c
591
if ((p = strptime(tail, " %y", &tmp_tm)) != NULL && is_WSP(*p))
usr.bin/mail/format.c
593
else if ((tail = strptime(tail, " %Y", &tmp_tm)) == NULL)
usr.bin/mail/format.c
599
if ((tail = strptime(tail, " %H:%M", &tmp_tm)) == NULL)
usr.bin/mail/format.c
606
if ((p = strptime(tail, ":%S", &tmp_tm)) != NULL) {
usr.bin/mail/format.c
657
if ((tail = strptime(buf, " %a %b %d %H:%M", &tmp_tm)) == NULL)
usr.bin/mail/format.c
667
if ((p = strptime(tail, ":%S", &tmp_tm)) != NULL) {
usr.bin/mail/format.c
683
tail = strptime(tail, " %Y ", &tmp_tm);
usr.sbin/syslogd/syslogd.c
1863
(void)strptime(tsbuf, "%FT%T%z", &parsed);
usr.sbin/syslogd/syslogd.c
1878
strptime((char *)from_buf, "%b %d %T", &parsed);
usr.sbin/user/user.c
1043
if (strptime(s, "%c", &tm) != NULL) {
usr.sbin/user/user.c
1046
} else if (strptime(s, "%B %d %Y", &tm) != NULL) {