taglinefilesource code
tz98fs/isofs/util.cint year, month, day, hour ,minute, second, tz;
tz107fs/isofs/util.cif (flag == 0) tz = p[6]; /* High sierra has no time zone */
tz108fs/isofs/util.celse tz = 0;
tz126fs/isofs/util.cif (tz & 0x80)
tz127fs/isofs/util.ctz |= (-1 << 8);
tz130fs/isofs/util.cif (-48 <= tz && tz <= 52)
tz131fs/isofs/util.ccrtime += tz * 15 * 60;
tz228kernel/time.casmlinkage int sys_gettimeofday(struct timeval *tv, struct timezone *tz)
tz241kernel/time.cif (tz) {
tz242kernel/time.cerror = verify_area(VERIFY_WRITE, tz, sizeof *tz);
tz245kernel/time.cput_fs_long(sys_tz.tz_minuteswest, (unsigned long *) tz);
tz246kernel/time.cput_fs_long(sys_tz.tz_dsttime, ((unsigned long *) tz)+1);
tz284kernel/time.casmlinkage int sys_settimeofday(struct timeval *tv, struct timezone *tz)
tz298kernel/time.cif (tz) {
tz299kernel/time.cint error = verify_area(VERIFY_READ, tz, sizeof(*tz));
tz302kernel/time.cmemcpy_fromfs(&new_tz, tz, sizeof(*tz));
tz304kernel/time.cif (tz) {