Searched refs:strptime (Results 1 - 25 of 39) sorted by relevance

12

/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Dstrpftime-test.h46 #define strptime test_strptime macro
53 strptime (const char *buf, const char *format, struct tm *timeptr);
H A Dstrptime.c241 strptime (const char *buf, const char *format, struct tm *timeptr) function
290 s = strptime (buf, "%m/%d/%y", timeptr);
350 s = strptime (buf, "%I:%M:%S %p", timeptr);
356 s = strptime (buf, "%H:%M", timeptr);
372 s = strptime (buf, "%H:%M:%S", timeptr);
405 s = strptime (buf, "%Y:%m:%d", timeptr);
H A Dstrpftime-test.c262 ptr = strptime (tests[i].vals[j].result,
266 printf ("bad return value from strptime("
284 strptime ("200505", "%Y%m", &tm);
H A DMakefile.am44 libtest_la_SOURCES = strftime.c strptime.c snprintf.c tsearch.c
/freebsd-13-stable/contrib/mandoc/
H A Dtest-strptime.c8 return ! (strptime(input, "%Y-%m-%d", &tm) == input + 10 &&
H A Dconfigure314 singletest strptime STRPTIME || \
315 runtest strptime STRPTIME -D_GNU_SOURCE || true
/freebsd-13-stable/lib/libc/stdtime/
H A DMakefile.inc6 SRCS+= asctime.c difftime.c localtime.c strftime.c strptime.c timelocal.c \
15 MAN+= ctime.3 strftime.3 strptime.3 time2posix.3
23 MLINKS+=strptime.3 strptime_l.3
H A Dstrptime.c45 static char sccsid[] __unused = "@(#)strptime.c 0.1 (Powerdog) 94/03/27";
720 strptime(const char * __restrict buf, const char * __restrict fmt, function
/freebsd-13-stable/sbin/dump/
H A Dunctime.c53 str = strptime(str, "%a %b %e %T %Y", &then);
/freebsd-13-stable/contrib/ntp/libparse/
H A Dclk_sel240x.c7 // correct strptime signature. As per feature_test_macros(7),
136 buffer = (unsigned char *) strptime(
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/time/
H A Dt_strptime.c52 ret = strptime(buf, fmt, &tm);
56 "strptime(\"%s\", \"%s\", tm): incorrect return code: "
61 "strptime(\"%s\", \"%s\", tm): incorrect %s: " \
66 "strptime(\"%s\", \"%s\", tm): incorrect return code: "
71 "strptime(\"%s\", \"%s\", tm): incorrect %s: " \
94 ATF_CHECK_MSG(strptime(buf, fmt, &tm) == NULL, "strptime(\"%s\", "
97 ATF_REQUIRE_MSG(strptime(buf, fmt, &tm) == NULL, "strptime(\"%s\", "
187 if ((rv = strptime(nam
[all...]
/freebsd-13-stable/include/
H A Dtime.h194 char *strptime(const char * __restrict, const char * __restrict,
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dopenbsd-compat.h121 char *strptime(const char *buf, const char *fmt, struct tm *tm);
H A DMakefile.in56 strptime.o \
H A Dstrptime.c1 /* $OpenBSD: strptime.c,v 1.12 2008/06/26 05:42:05 ray Exp $ */
2 /* $NetBSD: strptime.c,v 1.12 1998/01/20 21:39:40 mycroft Exp $ */
32 /* OPENBSD ORIGINAL: lib/libc/time/strptime.c */
61 strptime(const char *buf, const char *fmt, struct tm *tm) function
/freebsd-13-stable/contrib/openbsm/bin/auditreduce/
H A Dauditreduce.c49 #define _GNU_SOURCE /* Required for strptime() on glibc2. */
668 strptime(optarg, "%Y%m%d%H%M%S", &tm);
681 strptime(optarg, "%Y%m%d%H%M%S", &tm);
702 strptime(optarg, "%Y%m%d", &tm);
/freebsd-13-stable/crypto/heimdal/kadmin/
H A Dutil.c207 p = strptime (str, "%Y-%m-%d", &tm);
217 if(p[0] != '\0' && strptime (p, "%H:%M:%S", &tm2) != NULL) {
/freebsd-13-stable/usr.sbin/unbound/
H A Dconfig.h567 /* Define to 1 if you have the `strptime' function. */
796 /* use default strptime. */
1294 #define strptime unbound_strptime macro
1296 char *strptime(const char *s, const char *format, struct tm *tm);
/freebsd-13-stable/bin/date/
H A Ddate.c266 t = strptime(p, fmt, lt);
/freebsd-13-stable/usr.bin/touch/
H A Dtouch.c328 p = strptime(arg, fmt, &t);
/freebsd-13-stable/contrib/tnftp/
H A Dtnftp.h398 char *strptime(const char *, const char *, struct tm *);
/freebsd-13-stable/sbin/camcontrol/
H A Dtimestamp.c278 if (strptime(timestamp_string, format_string,
280 warnx("%s: strptime(3) failed", __func__);
/freebsd-13-stable/contrib/tnftp/src/
H A Dfetch.c947 if ((t = strptime(cp,
951 || (t = strptime(cp,
955 || (t = strptime(cp,
/freebsd-13-stable/lib/libdevdctl/
H A Devent.cc271 strptime(Value(string("timestamp")).c_str(), "%s", &tm_timestamp);
/freebsd-13-stable/usr.bin/ncal/
H A Dncal.c1100 if (strptime(s, "%B", &tm) != NULL || strptime(s, "%b", &tm) != NULL) {

Completed in 234 milliseconds

12