Searched refs:tmbuf (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/ntp/libntp/
H A Dmktime.c139 static struct tm tmbuf; local
141 tmbuf = *tmp;
142 tmbuf.tm_isdst = 1;
143 tmbuf.tm_min += DSTMINUTES;
144 normalize(&tmbuf.tm_hour, &tmbuf.tm_min, MINSPERHOUR);
145 return &tmbuf;
/freebsd-11-stable/contrib/unbound/util/
H A Dlog.c227 char tmbuf[32]; local
230 char tmbuf[128], dtbuf[128]; local
274 if(log_time_asc && strftime(tmbuf, sizeof(tmbuf), "%b %d %H:%M:%S",
275 localtime_r(&now, &tm))%(sizeof(tmbuf)) != 0) {
277 fprintf(logfile, "%s %s[%d:%x] %s: %s\n", tmbuf,
282 tmbuf, sizeof(tmbuf)) && GetDateFormat(LOCALE_USER_DEFAULT, 0,
284 fprintf(logfile, "%s %s %s[%d:%x] %s: %s\n", dtbuf, tmbuf,
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_getdate.c702 struct tm tmbuf; local
735 ltime = localtime_r(&Julian, &tmbuf);
738 terr = _localtime64_s(&tmbuf, &tmptime);
742 ltime = &tmbuf;
759 struct tm tmbuf; local
767 ltime = localtime_r(&Start, &tmbuf);
770 terr = _localtime64_s(&tmbuf, &tmptime);
774 ltime = &tmbuf;
780 ltime = localtime_r(&Future, &tmbuf);
783 terr = _localtime64_s(&tmbuf,
803 struct tm tmbuf; local
839 struct tm tmbuf; local
[all...]
H A Darchive_write_set_format_zip.c1382 struct tm tmbuf; local
1392 t = localtime_r(&unix_time, &tmbuf);
1395 terr = _localtime64_s(&tmbuf, &tmptime);
1399 t = &tmbuf;
H A Darchive_read_support_format_rar.c1732 struct tm tmbuf; local
1770 tm = localtime_r(&t, &tmbuf);
1773 terr = _localtime64_s(&tmbuf, &tmptime);
1777 tm = &tmbuf;
/freebsd-11-stable/contrib/libarchive/tar/
H A Dutil.c671 struct tm tmbuf; local
749 ltime = localtime_r(&tim, &tmbuf);
752 terr = _localtime64_s(&tmbuf, &tmptime);
756 ltime = &tmbuf;
/freebsd-11-stable/contrib/libarchive/cpio/
H A Dcpio.c1155 struct tm tmbuf; local
1209 ltime = localtime_r(&mtime, &tmbuf);
1212 terr = _localtime64_s(&tmbuf, &tmptime);
1216 ltime = &tmbuf;

Completed in 192 milliseconds