Searched refs:_strptime (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dstrptime.c57 static char *_strptime(const char *, const char *, struct tm *, int);
63 return(_strptime(buf, fmt, tm, 1));
67 _strptime(const char *buf, const char *fmt, struct tm *tm, int initialize) function
126 if (!(bp = _strptime(bp, _ctloc(d_t_fmt), tm, 0)))
132 if (!(bp = _strptime(bp, "%m/%d/%y", tm, 0)))
138 if (!(bp = _strptime(bp, "%H:%M", tm, 0)))
144 if (!(bp = _strptime(bp, "%I:%M:%S %p", tm, 0)))
150 if (!(bp = _strptime(bp, "%H:%M:%S", tm, 0)))
156 if (!(bp = _strptime(bp, _ctloc(t_fmt), tm, 0)))
162 if (!(bp = _strptime(b
[all...]
/freebsd-13-stable/lib/libc/stdtime/
H A Dstrptime.c62 static char * _strptime(const char *, const char *, struct tm *, int *, locale_t);
88 _strptime(const char *buf, const char *fmt, struct tm *tm, int *GMTp, function
134 buf = _strptime(buf, tptr->date_fmt, tm, GMTp, locale);
159 buf = _strptime(buf, tptr->c_fmt, tm, GMTp, locale);
166 buf = _strptime(buf, "%m/%d/%y", tm, GMTp, locale);
185 buf = _strptime(buf, "%Y-%m-%d", tm, GMTp, locale);
192 buf = _strptime(buf, "%H:%M", tm, GMTp, locale);
198 buf = _strptime(buf, tptr->ampm_fmt, tm, GMTp, locale);
204 buf = _strptime(buf, "%H:%M:%S", tm, GMTp, locale);
210 buf = _strptime(bu
[all...]

Completed in 105 milliseconds