Searched refs:tz (Results 1 – 9 of 9) sorted by relevance
/time/ |
A D | tzset.c | 193 && (*tz == '\0' || (*tz != '+' && *tz != '-' && !isdigit (*tz)))) in parse_offset() 197 if (*tz == '-' || *tz == '+') in parse_offset() 236 tz += *tz == ','; in parse_rule() 239 if (*tz == 'J' || isdigit (*tz)) in parse_rule() 289 if (*tz != '\0' && *tz != '/' && *tz != ',') in parse_rule() 336 if (*tz == '\0' || (tz[0] == ',' && tz[1] == '\0')) in __tzset_parse_tz() 378 if (tz && *tz == '\0') in tzset_internal() 385 if (tz && *tz == ':') in tzset_internal() 386 ++tz; in tzset_internal() 402 old_tz = tz ? __strdup (tz) : NULL; in tzset_internal() [all …]
|
A D | gettimeofday.c | 26 ___gettimeofday (struct timeval *restrict tv, void *restrict tz) in ___gettimeofday() argument 28 if (__glibc_unlikely (tz != 0)) in ___gettimeofday() 29 memset (tz, 0, sizeof (struct timezone)); in ___gettimeofday()
|
A D | settimeofday.c | 25 __settimeofday (const struct timeval *tv, const struct timezone *tz) in __settimeofday() argument 27 if (__glibc_unlikely (tz != 0)) in __settimeofday() 34 return __settimezone (tz); in __settimeofday()
|
A D | settimezone.c | 24 __settimezone (const struct timezone *tz) in __settimezone() argument
|
A D | tst-posixtz.c | 10 const char *tz; member 43 printf ("TZ = \"%s\", time = %jd => ", tests[cnt].tz, in do_test() 47 setenv ("TZ", tests[cnt].tz, 1); in do_test()
|
A D | tst-getdate.c | 32 const char *tz; member 115 setenv ("TZ", tests[i].tz, 1); in do_test()
|
A D | tst-mktime2.c | 43 set_timezone (const char *tz) in set_timezone() argument 45 printf ("info: setting TZ=%s\n", tz); in set_timezone() 46 if (setenv ("TZ", tz, 1) != 0) in set_timezone()
|
A D | Makefile | 92 tz-cflags = -DTZDIR='"$(zonedir)"' \ 96 CFLAGS-tzfile.c += $(tz-cflags) 97 CFLAGS-tzset.c += $(tz-cflags)
|
A D | mktime.c | 94 const char *tz = getenv ("TZ"); in my_tzset() local 95 if (tz != NULL && strchr (tz, '/') != NULL) in my_tzset()
|
Completed in 8 milliseconds