/freebsd/contrib/file/ |
H A D | acinclude.m4 | 14 # On SGI, apparently tzname is a #define, but that's ok, AC_CHECK_DECL will 16 AC_CHECK_DECLS([tzname], , , [#include <time.h>]) 17 AC_CACHE_CHECK(for tzname, ac_cv_var_tzname, 21 extern char *tzname[]; 23 return tzname[0][0];]])], [ac_cv_var_tzname=yes], [ac_cv_var_tzname=no])])
|
H A D | config.h.in | 37 /* Define to 1 if you have the declaration of 'tzname', and to 0 if you don't.
|
H A D | configure | 14313 extern char *tzname[]; 14319 return tzname[0][0]; 14406 extern char *tzname[]; 14408 return tzname[0][0];
|
H A D | ChangeLog | 165 * Avinash Sonawane: Fix tzname detection
|
/freebsd/contrib/sendmail/src/ |
H A D | arpadate.c | 158 extern char *tzname[]; 161 tz = tzname[1]; 163 tz = tzname[0];
|
/freebsd/usr.sbin/cron/cron/ |
H A D | externs.h | 74 extern char *tzname[2]; 76 #define TZONE(tm) tzname[(tm).tm_isdst]
|
/freebsd/contrib/tzcode/ |
H A D | tzselect.ksh | 457 tzname = ("(<[[:alnum:]+-][[:alnum:]+-][[:alnum:]+-]+>" \ 467 tzpattern = ("^(:.*|" tzname offset "(" tzname \
|
H A D | private.h | 685 # undef tzname 686 # define tzname tz_tzname 758 extern char *tzname[]; 665 # define tzname tz_tzname global() macro
|
H A D | strftime.c | 510 pt = _add(tzname[t->tm_isdst != 0], in _fmt() 571 if (tzname[t->tm_isdst != 0][0] == '-') in _fmt()
|
H A D | localtime.c | 71 ** 1. They might reference tzname[0] before calling tzset (explicitly 73 ** 2. They might reference tzname[1] before calling tzset (explicitly 75 ** 3. They might reference tzname[1] after setting to a time zone 77 ** 4. They might reference tzname[0] after setting to a time zone 82 ** WILDABBR is used. Another possibility: initialize tzname[0] to the 83 ** string "tzname[0] used before set", and similarly for the other cases. 84 ** And another: initialize tzname[0] to "ERA", with an explanation in the 86 ** that tzname[0] has the "normal" length of three characters). 225 char * tzname[2] = { 308 tzname[ttis 229 char * tzname[2] = { global() variable [all...] |
H A D | zdump.c | 202 /* Platforms with TM_ZONE don't need tzname, so they can use the 745 tzname may have been altered since our caller broke down in hunt() 746 LOT, and tzname needs to be changed back. */ in hunt() 1175 if (0 <= tmp->tm_isdst && tzname[0 < tmp->tm_isdst]) in abbr() 1176 return tzname[0 < tmp->tm_isdst]; in abbr()
|
H A D | NEWS | 742 like tzname, they now prefer specified timestamps to unspecified ones. 2319 The new macro HAVE_TZNAME governs whether the tzname external 2323 same category: although POSIX requires tzname, it specifies the 3405 This change is a companion to the tzname change in 2014h, and is 3406 designed to make timezone and altzone more compatible with tzname. 3447 The tz library's localtime and mktime functions now set tzname to a value 3452 The tz library no longer sets tzname if localtime or mktime fails.
|
/freebsd/lib/libc/stdtime/ |
H A D | Symbol.map | 12 tzname;
|
H A D | strftime.c | 39 extern char * tzname[]; 474 pt = _add(tzname[t->tm_isdst != 0], in _fmt()
|
H A D | strptime.c | 551 } else if (0 == strcmp(zonestr, tzname[0])) { in _strptime() 553 } else if (0 == strcmp(zonestr, tzname[1])) { in _strptime()
|
/freebsd/include/ |
H A D | time.h | 113 extern char *tzname[];
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_interceptors.cpp | 1231 extern char *tzname[2]; 1237 if (tzname[0]) in INTERCEPTOR() 1238 __msan_unpoison(tzname[0], internal_strlen(tzname[0]) + 1); in INTERCEPTOR() 1239 if (tzname[1]) in INTERCEPTOR() 1240 __msan_unpoison(tzname[1], internal_strlen(tzname[1]) + 1); in INTERCEPTOR()
|
/freebsd/contrib/diff/lib/ |
H A D | strftime.c | 50 extern char *tzname[]; 127 # define tzname __tzname macro 1219 zone = tzname[tp->tm_isdst];
|
/freebsd/crypto/heimdal/lib/roken/ |
H A D | strftime.c | 367 tzname[tm->tm_isdst] in strftime()
|
/freebsd/contrib/tzdata/ |
H A D | NEWS | 845 like tzname, they now prefer specified timestamps to unspecified ones. 2422 The new macro HAVE_TZNAME governs whether the tzname external 2426 same category: although POSIX requires tzname, it specifies the 3508 This change is a companion to the tzname change in 2014h, and is 3509 designed to make timezone and altzone more compatible with tzname. 3550 The tz library's localtime and mktime functions now set tzname to a value 3555 The tz library no longer sets tzname if localtime or mktime fails.
|
/freebsd/contrib/sendmail/ |
H A D | RELEASE_NOTES | 7495 AIX4: use tzname[] vector to determine time zone name. 8780 *tzname[(struct tm *)->tm_isdst]), TZ_TIMEZONE (use
|