taglinefilesource code
tz93fs/isofs/util.cint year, month, day, hour ,minute, second, tz;
tz102fs/isofs/util.cif (flag == 0) tz = p[6]; /* High sierra has no time zone */
tz103fs/isofs/util.celse tz = 0;
tz121fs/isofs/util.cif (tz & 0x80)
tz122fs/isofs/util.ctz |= (-1 << 8);
tz125fs/isofs/util.cif (-48 <= tz && tz <= 52)
tz126fs/isofs/util.ccrtime += tz * 15 * 60;
tz87kernel/time.casmlinkage int sys_gettimeofday(struct timeval *tv, struct timezone *tz)
tz99kernel/time.cif (tz) {
tz100kernel/time.cerror = verify_area(VERIFY_WRITE, tz, sizeof *tz);
tz103kernel/time.cmemcpy_tofs(tz, &sys_tz, sizeof(sys_tz));
tz141kernel/time.casmlinkage int sys_settimeofday(struct timeval *tv, struct timezone *tz)
tz155kernel/time.cif (tz) {
tz156kernel/time.cint error = verify_area(VERIFY_READ, tz, sizeof(*tz));
tz159kernel/time.cmemcpy_fromfs(&new_tz, tz, sizeof(*tz));
tz161kernel/time.cif (tz) {