/src/etc/rc.d/ |
rtclocaltime | 34 sysctl -qw kern.rtc_offset=${rtcoff}
|
/src/sys/sys/ |
kernel.h | 53 extern int rtc_offset; /* offset of rtc from UTC in minutes */
|
/src/sys/arch/x68k/stand/libsa/ |
libx68k.h | 73 extern int rtc_offset;
|
clock.c | 38 int rtc_offset; variable in typeref:typename:int 77 + (min * SECS_PER_MINUTE) + sec + (rtc_offset * 60);
|
/src/sys/kern/ |
kern_todr.c | 399 printf("%s: rtc_offset = %d\n", prefix, rtc_offset); 451 * rtc_offset. A converted port must not do that. 454 tvp->tv_sec += rtc_offset * 60; 485 tvp->tv_sec = clock_ymdhms_to_secs(&dt) + rtc_offset * 60; 500 copy.tv_sec -= rtc_offset * 60; 508 time_t sec = tvp->tv_sec - rtc_offset * 60;
|
init_sysctl.c | 254 CTLTYPE_INT, "rtc_offset", 257 sysctl_kern_rtc_offset, 0, &rtc_offset, 0, 820 * sysctl helper routine for rtc_offset - set time after changes 829 new_rtc_offset = rtc_offset; 840 if (rtc_offset == new_rtc_offset) 845 delta.tv_sec = 60 * (new_rtc_offset - rtc_offset); 848 rtc_offset = new_rtc_offset;
|
/src/sys/arch/playstation2/playstation2/ |
clock.c | 96 printf("bootinfo: %lld/%d/%d/%d/%d/%d rtc_offset %d\n", dt->dt_year, 98 rtc_offset);
|
/src/sys/arch/hpcarm/hpcarm/ |
hpc_machdep.c | 274 #ifndef RTC_OFFSET 276 * rtc_offset from bootinfo.timezone set by hpcboot.exe 278 if (rtc_offset == 0 && 281 rtc_offset = bootinfo->timezone;
|
/src/sys/conf/ |
param.c | 101 #ifndef RTC_OFFSET 102 #define RTC_OFFSET 0 117 int rtc_offset = RTC_OFFSET; variable in typeref:typename:int
|
/src/sys/arch/hpcmips/hpcmips/ |
machdep.c | 334 #ifndef RTC_OFFSET 336 * rtc_offset from bootinfo.timezone set by pbsdboot.exe 338 if (rtc_offset == 0 && bootinfo 341 rtc_offset = bootinfo->timezone; 342 #endif /* RTC_OFFSET */
|
/src/sys/arch/hpcsh/hpcsh/ |
machdep.c | 222 #ifndef RTC_OFFSET 224 * rtc_offset from bootinfo.timezone set by hpcboot.exe 226 if (rtc_offset == 0 229 rtc_offset = bootinfo->timezone;
|
/src/sys/arch/x68k/stand/boot/ |
boot.c | 393 rtc_offset = RTC_OFFSET;
|