taglinefilesource code
tz94fs/isofs/util.cint year, month, day, hour ,minute, second, tz;
tz103fs/isofs/util.cif (flag == 0) tz = p[6]; /* High sierra has no time zone */
tz104fs/isofs/util.celse tz = 0;
tz122fs/isofs/util.cif (tz & 0x80)
tz123fs/isofs/util.ctz |= (-1 << 8);
tz126fs/isofs/util.cif (-48 <= tz && tz <= 52)
tz127fs/isofs/util.ccrtime += tz * 15 * 60;
tz219kernel/time.casmlinkage int sys_gettimeofday(struct timeval *tv, struct timezone *tz)
tz232kernel/time.cif (tz) {
tz233kernel/time.cerror = verify_area(VERIFY_WRITE, tz, sizeof *tz);
tz236kernel/time.cput_fs_long(sys_tz.tz_minuteswest, (unsigned long *) tz);
tz237kernel/time.cput_fs_long(sys_tz.tz_dsttime, ((unsigned long *) tz)+1);
tz274kernel/time.casmlinkage int sys_settimeofday(struct timeval *tv, struct timezone *tz)
tz288kernel/time.cif (tz) {
tz289kernel/time.cint error = verify_area(VERIFY_READ, tz, sizeof(*tz));
tz292kernel/time.cmemcpy_fromfs(&new_tz, tz, sizeof(*tz));
tz294kernel/time.cif (tz) {