HomeSort by: relevance | last modified time | path
    Searched refs:timezone (Results 1 - 25 of 58) sorted by relevancy

1 2 3

  /src/usr.sbin/bootp/common/
tzone.c 9 * tzone.c - get the timezone
19 extern long timezone;
34 * Get our timezone offset so we can give it to clients if the
42 secondswest = timezone;
44 struct timezone tzp; /* Time zone offset for clients */
  /src/sys/sys/
timeb.h 46 short timezone; /* minutes west of CUT */ member in struct:timeb
  /src/lib/libcompat/4.1/
ftime.c 53 struct timezone tz;
62 tbp->timezone = tz.tz_minuteswest;
  /src/sys/arch/hpc/include/
bootinfo.h 54 long timezone; member in struct:bootinfo
  /src/lib/libc/compat/gen/
compat_timezone.c 35 static char sccsid[] = "@(#)timezone.c 8.1 (Berkeley) 6/4/93";
53 __warn_references(timezone,
54 "warning: reference to compatibility timezone; include <time.h> to generate correct reference")
57 * timezone --
60 * giving the name of the local timezone. Should be replaced, in the
67 timezone(int zone, int dst) function in typeref:typename:char *
  /src/lib/libc/compat/include/
time.h 53 char *timezone(int, int);
57 extern long timezone __RENAME(__timezone13);
  /src/sys/arch/hpcarm/hpcarm/
hpc_machdep.c 276 * rtc_offset from bootinfo.timezone set by hpcboot.exe
279 (bootinfo->timezone > (-12 * 60) &&
280 bootinfo->timezone <= (12 * 60)))
281 rtc_offset = bootinfo->timezone;
  /src/games/tetris/
input.c 80 #define NILTZ ((struct timezone *)0)
  /src/lib/libc/gen/
times.c 89 if (gettimeofday(&t, (struct timezone *)0))
Makefile.inc 89 time.3 timespec_get.3 times.3 timezone.3 toascii.3 \
  /src/sys/arch/ia64/stand/efi/libefi/
time.c 114 ETime->TimeZone < -1440 ||
115 (ETime->TimeZone > 1440 && ETime->TimeZone != 2047) ) {
160 if ( ETime->TimeZone != EFI_UNSPECIFIED_TIMEZONE ) {
162 // TimeZone is kept in minues...
164 UTime += (ETime->TimeZone * 60);
173 OUT struct timezone *tzp
196 // Do something with the timezone if needed
201 EfiTime.TimeZone == EFI_UNSPECIFIED_TIMEZONE ? 0 : EfiTime.TimeZone;
    [all...]
  /src/sys/arch/hpcmips/hpcmips/
machdep.c 336 * rtc_offset from bootinfo.timezone set by pbsdboot.exe
339 && bootinfo->timezone > (-12*60)
340 && bootinfo->timezone <= (12*60))
341 rtc_offset = bootinfo->timezone;
  /src/lib/libc/time/
private.h 203 If defining the 'timezone' variable, avoid a clash with FreeBSD's
204 'timezone' function by renaming its declaration. */
210 # define timezone sys_timezone macro
221 # undef timezone
748 # undef timezone
749 # define timezone tz_timezone macro
818 extern long timezone;
strptime.c 541 tm->TM_GMTOFF = -timezone;
581 * Our current timezone
589 tm->TM_GMTOFF = -timezone;
  /src/sys/arch/hpcsh/hpcsh/
machdep.c 224 * rtc_offset from bootinfo.timezone set by hpcboot.exe
227 && bootinfo->timezone > (-12*60)
228 && bootinfo->timezone <= (12*60))
229 rtc_offset = bootinfo->timezone;
  /src/usr.sbin/rbootd/
rbootd.c 276 (void) gettimeofday(&now, (struct timezone *)0);
  /src/sys/arch/hpc/stand/hpcboot/
hpcmenu.cpp 348 bi.timezone = tz.Bias;
350 bi.timezone += tz.DaylightBias;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_platform_limits_solaris.cc 86 unsigned struct_timezone_sz = sizeof(struct timezone);
334 CHECK_SIZE_AND_OFFSET(timeb, timezone);
sanitizer_platform_limits_solaris.h 178 short timezone; member in struct:__sanitizer::__sanitizer_timeb
sanitizer_platform_limits_freebsd.cc 114 unsigned struct_timezone_sz = sizeof(struct timezone);
489 CHECK_SIZE_AND_OFFSET(timeb, timezone);
  /src/usr.sbin/timed/timed/
measure.c 185 (void)gettimeofday(&tcur, (struct timezone *)0);
  /src/include/
time.h 86 __aconst char *tm_zone; /* timezone abbreviation */
128 extern long int timezone __RENAME(__timezone13);
  /src/sys/compat/linux32/common/
linux32_time.c 83 extern struct timezone linux_sys_tz;
104 /* timezone size does not change */
124 NETBSD32TOP_UAP(tzp, struct timezone);
  /src/usr.bin/make/unit-tests/
varmod-gmtime.mk 145 # wrong values for '%s', depending on the operating system and the timezone.
  /src/libexec/rpc.rstatd/
rstat_proc.c 247 gettimeofday(&tm, (struct timezone *) 0);

Completed in 26 milliseconds

1 2 3