| /src/games/larn/ |
| help.c | 31 char tmbuf[128]; /* intermediate translation buffer local 46 tmcapcnv(tmbuf, lgetl()); 47 lprcat(tmbuf); 80 char tmbuf[128]; /* intermediate translation buffer local 91 tmcapcnv(tmbuf, lgetl()); 92 lprcat(tmbuf);
|
| /src/external/bsd/libarchive/dist/cpio/test/ |
| test_option_t.c | 22 struct tm tmbuf; local 77 tmptr = localtime_s(&tmbuf, &mtime) ? NULL : &tmbuf; 79 tmptr = localtime_r(&mtime, &tmbuf);
|
| /src/external/bsd/openldap/dist/servers/slapd/back-monitor/ |
| time.c | 191 char tmbuf[ LDAP_LUTIL_GENTIME_BUFSIZE ]; local 199 lutil_gentime( tmbuf, sizeof( tmbuf ), &tm ); 201 len = strlen( tmbuf ); 209 AC_MEMCPY( a->a_vals[ 0 ].bv_val, tmbuf, len );
|
| init.c | 2240 static char tmbuf[ LDAP_LUTIL_GENTIME_BUFSIZE ]; local 2259 lutil_gentime( tmbuf, sizeof(tmbuf), &tms ); 2261 mi->mi_startTime.bv_val = tmbuf; 2262 mi->mi_startTime.bv_len = strlen( tmbuf );
|
| /src/usr.sbin/fssconfig/ |
| fssconfig.c | 229 char clbuf[5], bsbuf[5], tmbuf[64]; local 269 strftime(tmbuf, sizeof(tmbuf), "%F %T", localtime(&t)); 271 printf("%s: %s, taken %s", dev, fsg.fsg_mount, tmbuf);
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_time.c | 83 struct tm tmbuf; local 91 t = localtime_s(&tmbuf, &ut) ? NULL : &tmbuf; 93 t = localtime_r(&ut, &tmbuf);
|
| archive_parse_date.c | 697 struct tm tmbuf; local 724 ltime = localtime_s(&tmbuf, &Julian) ? NULL : &tmbuf; 726 ltime = localtime_r(&Julian, &tmbuf); 743 struct tm tmbuf; local 746 ltime = localtime_s(&tmbuf, &Start) ? NULL : &tmbuf; 748 ltime = localtime_r(&Start, &tmbuf); 754 ltime = localtime_s(&tmbuf, &Future) ? NULL : &tmbuf; 772 struct tm tmbuf; local 799 struct tm tmbuf; local [all...] |
| archive_read_support_format_rar.c | 1898 struct tm tmbuf; local 1932 tm = localtime_s(&tmbuf, &t) ? NULL : &tmbuf; 1934 tm = localtime_r(&t, &tmbuf);
|
| /src/external/bsd/libarchive/dist/libarchive/test/ |
| test_write_format_zip_file.c | 45 struct tm tmbuf; local 65 tm = localtime_s(&tmbuf, &t) ? NULL : &tmbuf; 67 tm = localtime_r(&t, &tmbuf);
|
| test_write_format_zip_file_zip64.c | 45 struct tm tmbuf; local 64 tm = localtime_s(&tmbuf, &t) ? NULL : &tmbuf; 66 tm = localtime_r(&t, &tmbuf);
|
| test_write_format_zip_compression_bzip2.c | 69 struct tm tmbuf; local 76 tm = localtime_s(&tmbuf, &now) ? NULL : &tmbuf; 78 tm = localtime_r(&now, &tmbuf);
|
| test_write_format_zip_compression_lzmaxz.c | 70 struct tm tmbuf; local 77 tm = localtime_s(&tmbuf, &now) ? NULL : &tmbuf; 79 tm = localtime_r(&now, &tmbuf);
|
| test_write_format_zip_compression_store.c | 89 struct tm tmbuf; local 96 tm = localtime_s(&tmbuf, &now) ? NULL : &tmbuf; 98 tm = localtime_r(&now, &tmbuf);
|
| test_write_format_zip_compression_zstd.c | 69 struct tm tmbuf; local 76 tm = localtime_s(&tmbuf, &now) ? NULL : &tmbuf; 78 tm = localtime_r(&now, &tmbuf);
|
| /src/external/bsd/ntp/dist/libntp/ |
| mktime.c | 141 static struct tm tmbuf; local 143 tmbuf = *tmp; 144 tmbuf.tm_isdst = 1; 145 tmbuf.tm_min += DSTMINUTES; 146 normalize(&tmbuf.tm_hour, &tmbuf.tm_min, MINSPERHOUR); 147 return &tmbuf;
|
| /src/usr.bin/utoppya/ |
| utoppya.c | 193 char *dir, *ext, dirbuf[2], ex, ft, tmbuf[32]; local 231 strftime(tmbuf, sizeof(tmbuf), "%b %e %G %R", tm); 234 tmbuf, ud.ud_path);
|
| /src/external/bsd/libarchive/dist/tar/ |
| util.c | 695 struct tm tmbuf; local 769 ltime = localtime_s(&tmbuf, &tim) ? NULL : &tmbuf; 771 ltime = localtime_r(&tim, &tmbuf);
|
| /src/external/bsd/unbound/dist/util/ |
| log.c | 235 char tmbuf[32]; local 238 char tmbuf[128], dtbuf[128]; local 289 strftime(tmbuf, sizeof(tmbuf), "%Y-%m-%dT%H:%M:%S", tm_p); 298 tmbuf, (int)tv.tv_usec/1000, tzbuf, 310 if(log_time_asc && strftime(tmbuf, sizeof(tmbuf), "%b %d %H:%M:%S", 311 localtime_r(&now, &tm))%(sizeof(tmbuf)) != 0) { 313 fprintf(logfile, "%s %s[%d:%x] %s: %s\n", tmbuf, 318 tmbuf, sizeof(tmbuf)) && GetDateFormat(LOCALE_USER_DEFAULT, 0 [all...] |
| /src/external/bsd/libarchive/dist/cpio/ |
| cpio.c | 1156 struct tm tmbuf; local 1206 ltime = localtime_s(&tmbuf, &mtime) ? NULL : &tmbuf; 1208 ltime = localtime_r(&mtime, &tmbuf);
|
| /src/external/bsd/openldap/dist/contrib/slapd-modules/lastmod/ |
| lastmod.c | 387 char tmbuf[ LDAP_LUTIL_GENTIME_BUFSIZE ]; local 398 timestamp.bv_val = tmbuf; 399 timestamp.bv_len = sizeof(tmbuf); 826 static char tmbuf[ LDAP_LUTIL_GENTIME_BUFSIZE ]; local 848 timestamp.bv_val = tmbuf; 849 timestamp.bv_len = sizeof(tmbuf); 883 tmbuf, 886 tmbuf,
|
| /src/external/bsd/nsd/dist/ |
| util.c | 165 char tmbuf[32]; local 166 tmbuf[0]=0; 176 strftime(tmbuf, sizeof(tmbuf), "%Y-%m-%dT%H:%M:%S", 187 tmbuf, (int)tv.tv_usec/1000, tzbuf, 194 strftime(tmbuf, sizeof(tmbuf), "%Y-%m-%d %H:%M:%S", 198 tmbuf, (int)tv.tv_usec/1000,
|
| rdata.c | 441 struct tm tmbuf; local 449 tm = gmtime_r(&time, &tmbuf);
|
| /src/external/historical/nawk/dist/ |
| run.c | 2066 struct tm *tm, tmbuf; local 2221 memset(&tmbuf, 0, sizeof(tmbuf)); 2222 tm = &tmbuf;
|
| /src/external/bsd/libarchive/dist/test_utils/ |
| test_main.c | 3939 struct tm tmbuf; local 4205 tmptr = localtime_s(&tmbuf, &now) ? NULL : &tmbuf; 4207 tmptr = localtime_r(&now, &tmbuf);
|
| /src/external/bsd/openldap/dist/servers/slapd/ |
| syncrepl.c | 7057 char tmbuf[ LDAP_LUTIL_GENTIME_BUFSIZE ]; local 7067 lutil_gentime( tmbuf, sizeof( tmbuf ), &tm ); 7068 len = strlen( tmbuf ); 7070 AC_MEMCPY( a->a_vals[0].bv_val, tmbuf, len ); 7081 lutil_gentime( tmbuf, sizeof( tmbuf ), &tm ); 7082 len = strlen( tmbuf ); 7084 AC_MEMCPY( a->a_vals[0].bv_val, tmbuf, len ); 7093 lutil_gentime( tmbuf, sizeof( tmbuf ), &tm ) [all...] |