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;
tz71kernel/time.casmlinkage int sys_gettimeofday(struct timeval *tv, struct timezone *tz)
tz83kernel/time.cif (tz) {
tz84kernel/time.cerror = verify_area(VERIFY_WRITE, tz, sizeof *tz);
tz87kernel/time.cmemcpy_tofs(tz, &sys_tz, sizeof(sys_tz));
tz125kernel/time.casmlinkage int sys_settimeofday(struct timeval *tv, struct timezone *tz)
tz139kernel/time.cif (tz) {
tz140kernel/time.cint error = verify_area(VERIFY_READ, tz, sizeof(*tz));
tz143kernel/time.cmemcpy_fromfs(&new_tz, tz, sizeof(*tz));
tz145kernel/time.cif (tz) {