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

/freebsd-10.0-release/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-10.0-release/lib/libc/stdtime/
H A Dstrptime.c80 static char * _strptime(const char *, const char *, struct tm *, int *, locale_t);
85 _strptime(const char *buf, const char *fmt, struct tm *tm, int *GMTp, function
124 buf = _strptime(buf, tptr->date_fmt, tm, GMTp, locale);
148 buf = _strptime(buf, tptr->c_fmt, tm, GMTp, locale);
154 buf = _strptime(buf, "%m/%d/%y", tm, GMTp, locale);
172 buf = _strptime(buf, "%Y-%m-%d", tm, GMTp, locale);
178 buf = _strptime(buf, "%H:%M", tm, GMTp, locale);
184 buf = _strptime(buf, tptr->ampm_fmt, tm, GMTp, locale);
190 buf = _strptime(buf, "%H:%M:%S", tm, GMTp, locale);
196 buf = _strptime(bu
[all...]

Completed in 64 milliseconds