| /freebsd/contrib/netbsd-tests/usr.bin/netpgpverify/ |
| H A D | Testspec | 64 TESTSET_1_CASE_1="-s eq:0 -o file:expected16 -e empty env TZ=US/Pacific netpgpverify -k pubring.gpg… 66 TESTSET_1_CASE_3="-s eq:0 -o file:expected18 -e empty env TZ=US/Pacific netpgpverify -c verify a.gp… 67 TESTSET_1_CASE_4="-s eq:0 -o file:expected19 -e empty env TZ=US/Pacific netpgpverify -c verify NetB… 68 TESTSET_1_CASE_5="-s eq:0 -o file:expected20 -e empty env TZ=US/Pacific netpgpverify -k pubring.gpg… 69 TESTSET_1_CASE_6="-s eq:0 -o file:expected21 -e empty env TZ=US/Pacific netpgpverify < a.gpg" 70 TESTSET_1_CASE_7="-s eq:0 -o file:expected22 -e empty env TZ=US/Pacific netpgpverify -k pubring.gpg… 71 TESTSET_1_CASE_8="-s eq:0 -o file:expected23 -e empty env TZ=US/Pacific netpgpverify < NetBSD-6.0_R… 72 TESTSET_1_CASE_9="-s eq:0 -o file:expected24 -e empty env TZ=US/Pacific netpgpverify -k pubring.gpg… 75 TESTSET_1_CASE_12="-s eq:0 -o file:expected27 -e empty env TZ=US/Pacific netpgpverify -k pubring.gp… 76 TESTSET_1_CASE_13="-s eq:0 -o file:expected28 -e empty env TZ=US/Pacific netpgpverify -k pubring.gp… [all …]
|
| /freebsd/contrib/tzdata/ |
| H A D | checktab.awk | 1 # Check tz tables for consistency. 76 tz = $3 81 if (tztab[tz]) { 83 zone_table, zone_NR, tz, tz2NR[tz] 98 tz0 = tz 99 tztab[tz] = 1 100 tz2NR[tz] = zone_NR 150 tz = rules = stdoff = "" 152 tz [all...] |
| H A D | checklinks.awk | 1 # Check links in tz tables. 47 for (tz in used) { 48 if (defined[tz] != Zone) { 49 if (!defined[tz]) { 50 printf "%s: Link to nowhere\n", tz 53 printf "%s: Link to link\n", tz 58 for (tz in shortcut) { 59 if (defined[shortcut[tz]] != defined[tz]) { 60 target = (!defined[tz] ? "absence" \ 61 : defined[tz] == "\n" ? "zone" \ [all …]
|
| H A D | theory.html | 4 <title>Theory and pragmatics of the tz code and data</title> 12 <h1>Theory and pragmatics of the <code><abbr>tz</abbr></code> code and data</h1> 16 <li><a href="#scope">Scope of the <code><abbr>tz</abbr></code> 20 <li><a href="#accuracy">Accuracy of the <code><abbr>tz</abbr></code> 31 <h2 id="scope">Scope of the <code><abbr>tz</abbr></code> database</h2> 34 href="https://www.iana.org/time-zones"><code><abbr>tz</abbr></code> 37 It organizes <a href="tz-link.html">time zone and daylight saving time 87 <code><abbr>tz</abbr></code> database is also available. 88 The <code><abbr>tz</abbr></code> code is upwards compatible with <a 98 <code><abbr>tz</abb [all...] |
| H A D | CONTRIBUTING | 1 # Contributing to the tz code and data 12 to <tz@iana.org> for use in the future. In your email, please give 23 "Theory and pragmatics of the tz code and data" 26 <https://lists.iana.org/hyperkitty/list/tz@iana.org/> 44 git clone https://github.com/eggert/tz.git 45 cd tz 68 make TOPDIR=$PWD/tz clean check install 87 * After reviewing the patch files, send the patches to <tz@iana.org> 94 <https://mm.icann.org/pipermail/tz/2018-February/026122.html>.
|
| H A D | etcetera | 6 # These entries are for uses not otherwise covered by the tz database. 8 # support for POSIX proleptic TZ strings. On such platforms these entries 13 # unnecessary as settings for the TZ environment variable. E.g., 14 # instead of TZ='Etc/GMT+4' one can use the POSIX setting TZ='<-04>+4'. 16 # Do not use a POSIX TZ setting like TZ='GMT+4', which is four hours 37 # Be consistent with POSIX TZ settings in the Zone names, 40 # positive signs east of Greenwich. For example, TZ='Etc/GMT+4' uses
|
| H A D | README | 1 README for the tz distribution 7 The Time Zone Database (called tz, tzdb or zoneinfo) contains code and 13 See <https://www.iana.org/time-zones/repository/tz-link.html> or the 14 file tz-link.html for how to acquire the code and data. 26 See the file tz-how-to.html for examples of how to read the data files.
|
| H A D | NEWS | 1 News for the tz database 70 An invalid TZ now generates the time zone abbreviation "-00", not 78 TZNAME_MAXIMUM, the maximum number of bytes in a proleptic TZ 159 This affects behavior for TZ='EET' for some pre-1981 timestamps, 160 for TZ='CET' for some pre-1947 timestamps, and for TZ='WET' for 161 some pre-1996 timestamps. Also, TZ='MET' now behaves like 162 TZ='CET' and so uses the abbreviation "CET" rather than "MET". 202 tzselect now supports POSIX.1-2024 proleptic TZ strings. Also, it 360 TZ strings when using mawk 1.4.3, which mishandles regular 469 library now rejects POSIX-style TZ strings that contain longer [all …]
|
| /freebsd/crypto/openssl/test/testutil/ |
| H A D | helper.c | 31 char *tz = NULL; in test_asn1_string_to_time_t() local 63 tz = getenv("TZ"); in test_asn1_string_to_time_t() 64 if (tz != NULL) { in test_asn1_string_to_time_t() 65 tz = OPENSSL_strdup(tz); in test_asn1_string_to_time_t() 66 if (tz == NULL) { in test_asn1_string_to_time_t() 71 setenv("TZ", "UTC", 1); in test_asn1_string_to_time_t() 75 if (tz != NULL) { in test_asn1_string_to_time_t() 76 setenv("TZ", tz, 1); in test_asn1_string_to_time_t() 77 OPENSSL_free(tz); in test_asn1_string_to_time_t() 79 unsetenv("TZ"); in test_asn1_string_to_time_t()
|
| /freebsd/contrib/ldns/compat/ |
| H A D | timegm.c | 16 char *tz; in timegm() local 18 tz = getenv("TZ"); in timegm() 19 putenv((char*)"TZ="); in timegm() 22 if (tz) { in timegm() 24 snprintf(buf, sizeof(buf), "TZ=%s", tz); in timegm() 25 putenv(tz); in timegm() 28 putenv((char*)"TZ"); in timegm()
|
| /freebsd/contrib/tzcode/ |
| H A D | newtzset.3 | 10 .BI "timezone_t tzalloc(char const *" TZ ); 12 .BI "void tzfree(timezone_t " tz ); 40 .IR TZ . 43 .I TZ 54 .I TZ 63 .I TZ 75 .I TZ 85 .I TZ 233 .I TZ 280 .I TZ [all …]
|
| H A D | tzselect.ksh | 2 # Ask the user about the time zone, and output the resulting TZ value to stdout. 7 REPORT_BUGS_TO=tz@iana.org 357 fmt = "TZ='\''%s'\'' date +'\''%d %%Y %%m %%d %%H:%%M %%a %%b\t%s'\''\n" 391 'Please select a continent, ocean, "coord", "TZ", "time", or "now".' 428 "TZ - I want to specify the timezone using a proleptic TZ string." \ 451 TZ) 452 # Ask the user for a proleptic TZ string. Check that it conforms. 455 tz = substr(ARGV[1], 2) 469 exit tz ~ tzpatter [all...] |
| H A D | theory.html | 4 <title>Theory and pragmatics of the tz code and data</title> 12 <h1>Theory and pragmatics of the <code><abbr>tz</abbr></code> code and data</h1> 16 <li><a href="#scope">Scope of the <code><abbr>tz</abbr></code> 20 <li><a href="#accuracy">Accuracy of the <code><abbr>tz</abbr></code> 31 <h2 id="scope">Scope of the <code><abbr>tz</abbr></code> database</h2> 34 href="https://www.iana.org/time-zones"><code><abbr>tz</abbr></code> 37 It organizes <a href="tz-link.html">time zone and daylight saving time 87 <code><abbr>tz</abbr></code> database is also available. 88 The <code><abbr>tz</abbr></code> code is upwards compatible with <a 98 <code><abbr>tz</abbr></code> database, which has a [all …]
|
| H A D | tz-link.html | 24 <li>The <code><abbr>tz</abbr></code> database product and process 26 <li><a href="#tzdb">The <code><abbr>tz</abbr></code> database</a></li> 27 <li><a href="#download">Downloading the <code><abbr>tz</abbr></code> database</a></li> 28 <li><a href="#changes">Changes to the <code><abbr>tz</abbr></code> database</a></li> 30 <li><a href="#commentary">Commentary on the <code><abbr>tz</abbr></code> database</a></li> 33 <li>Uses of the <code><abbr>tz</abbr></code> database 35 …<li><a href="#web">Web sites using recent versions of the <code><abbr>tz</abbr></code> database</a… 36 <li><a href="#protocols">Network protocols for <code><abbr>tz</abbr></code> data</a></li> 37 <li><a href="#compilers">Other <code><abbr>tz</abbr></code> compilers</a></li> 39 <li><a href="#software">Other <code><abbr>tz</abbr></code>-based time zone software</a></li> [all …]
|
| H A D | CONTRIBUTING | 1 # Contributing to the tz code and data 12 to <tz@iana.org> for use in the future. In your email, please give 23 "Theory and pragmatics of the tz code and data" 26 <https://lists.iana.org/hyperkitty/list/tz@iana.org/> 44 git clone https://github.com/eggert/tz.git 45 cd tz 68 make TOPDIR=$PWD/tz clean check install 87 * After reviewing the patch files, send the patches to <tz@iana.org> 94 <https://mm.icann.org/pipermail/tz/2018-February/026122.html>.
|
| H A D | zdump.c | 225 mktime_z(timezone_t tz, struct tm *tmp) in mktime_z() argument 240 if (setenv("TZ", val, 1) != 0) { in tzalloc() 249 static char const TZeq[TZeqlen] = "TZ="; in tzalloc() 346 my_localtime_rz(timezone_t tz, time_t *tp, struct tm *tmp) in my_localtime_rz() argument 348 tmp = localtime_rz(tz, tp, tmp); in my_localtime_rz() 354 t = mktime_z(tz, &tm); in my_localtime_rz() 590 timezone_t tz = tzalloc(strcmp(argv[i], "-") == 0 in main() local 596 if (!tz) { in main() 603 show(tz, argv[i], now, false); in main() 604 tzfree(tz); in main() [all …]
|
| H A D | tzfile.5 | 77 proleptic TZ string described below.) 170 a proleptic TZ string that lacks rules. 171 For example, when TZ="EET\-2EEST" and there is no TZif file "EET\-2EEST", 200 in the style of the contents of a proleptic TZ, 204 The TZ string is empty (i.e., nothing between the newlines) 206 If non-empty, the TZ string must agree with the local time 218 For version-3-format timezone files, a TZ string (see 221 First, as in TZ="<\-02>2<\-01>,M3.5.0/\-1,M10.5.0/0", 225 Second, as in TZ="XXX3EDT4,0/0,J365/23", DST is in effect all year if it starts 341 in the proleptic TZ string. [all …]
|
| H A D | README | 1 README for the tz distribution 7 The Time Zone Database (called tz, tzdb or zoneinfo) contains code and 13 See <https://www.iana.org/time-zones/repository/tz-link.html> or the 14 file tz-link.html for how to acquire the code and data. 26 See the file tz-how-to.html for examples of how to read the data files.
|
| /freebsd/contrib/sendmail/src/ |
| H A D | arpadate.c | 66 char *tz; variable 149 tz = NULL; 151 tz = lt->tm_name; 154 tz = lt->tm_zone; 161 tz = tzname[1]; 163 tz = tzname[0]; 165 tz = NULL; 172 tz = timezone(off, lt->tm_isdst); 191 if (tz != NULL && *tz != '\0') 195 while (*tz != '\0' && q < &b[sizeof(b) - 3]) [all …]
|
| /freebsd/share/man/man4/ |
| H A D | acpi_thermal.4 | 66 .It Va hw.acpi.thermal.tz%d.active 71 .It Va hw.acpi.thermal.tz%d.passive_cooling 77 .It Va hw.acpi.thermal.tz%d.thermal_flags 80 .It Va hw.acpi.thermal.tz%d.temperature 82 .It Va hw.acpi.thermal.tz%d._PSV 85 .It Va hw.acpi.thermal.tz%d._CR3 88 .It Va hw.acpi.thermal.tz%d._HOT 91 .It Va hw.acpi.thermal.tz%d._CRT 94 .It Va hw.acpi.thermal.tz%d._ACx
|
| /freebsd/usr.sbin/bsdconfig/timezone/share/ |
| H A D | zones.subr | 71 # code coordinates TZ comments 83 # TZ 84 # Zone name used in value of TZ environment variable. 115 # The ``filename'' portion of the TZ value that appears after the 119 # The ``continent'' portion of the TZ value that appears before 280 # Get the TZ field 281 tz = line[3] 284 # Validate the TZ field 286 if (!match(tz, "/")) 290 argv[3] = tz [all …]
|
| /freebsd/contrib/libarchive/libarchive/test/ |
| H A D | test_read_format_isorr_rr_moved.c | 41 TZ=utc touch -afhm -t $time $deepfile 42 TZ=utc touch -afhm -t $time $dirname/dir1/dir2/dir3/dir4/dir5/dir6/dir7/dir8/dir9/dir10 43 TZ=utc touch -afhm -t $time $dirname/dir1/dir2/dir3/dir4/dir5/dir6/dir7/dir8/dir9 44 TZ=utc touch -afhm -t $time $dirname/dir1/dir2/dir3/dir4/dir5/dir6/dir7/dir8 45 TZ=utc touch -afhm -t $time $dirname/dir1/dir2/dir3/dir4/dir5/dir6/dir7 46 TZ=utc touch -afhm -t $time $dirname/dir1/dir2/dir3/dir4/dir5/dir6 47 TZ=utc touch -afhm -t $time $dirname/dir1/dir2/dir3/dir4/dir5 48 TZ=utc touch -afhm -t $time $dirname/dir1/dir2/dir3/dir4 49 TZ=utc touch -afhm -t $time $dirname/dir1/dir2/dir3 50 TZ [all...] |
| /freebsd/lib/libc/stdtime/ |
| H A D | tzset.3 | 56 .Ev TZ 60 .Ev TZ 69 .Ev TZ 74 .Ev TZ 93 .Ev TZ 115 .Ev TZ 285 .Ev TZ 296 .Ev TZ .
|
| /freebsd/usr.sbin/bsdinstall/scripts/ |
| H A D | time | 35 saved_TZ="$TZ" 36 TZ="${BSDINSTALL_CHROOT}/etc/localtime" 37 export TZ 65 TZ="$saved_TZ" 67 unset TZ
|
| /freebsd/sbin/adjkerntz/ |
| H A D | adjkerntz.c | 34 * using zoneinfo rules or direct TZ environment variable set. 74 struct timezone tz, *stz; in main() local 159 if (gettimeofday(&tv, &tz)) { in main() 205 diff = offset - tz.tz_minuteswest * 60 - kern_offset; in main() 257 diff = offset - tz.tz_minuteswest * 60 - kern_offset; in main() 271 if (tz.tz_dsttime != 0 || tz.tz_minuteswest != 0) { in main() 272 tz.tz_dsttime = tz.tz_minuteswest = 0; /* zone info is garbage */ in main() 273 stz = &tz; in main()
|