tag | line | file | source code |
tz | 93 | fs/isofs/util.c | int year, month, day, hour ,minute, second, tz; |
tz | 102 | fs/isofs/util.c | if (flag == 0) tz = p[6]; /* High sierra has no time zone */ |
tz | 103 | fs/isofs/util.c | else tz = 0; |
tz | 121 | fs/isofs/util.c | if (tz & 0x80) |
tz | 122 | fs/isofs/util.c | tz |= (-1 << 8); |
tz | 125 | fs/isofs/util.c | if (-48 <= tz && tz <= 52) |
tz | 126 | fs/isofs/util.c | crtime += tz * 15 * 60; |
tz | 87 | kernel/time.c | asmlinkage int sys_gettimeofday(struct timeval *tv, struct timezone *tz) |
tz | 99 | kernel/time.c | if (tz) { |
tz | 100 | kernel/time.c | error = verify_area(VERIFY_WRITE, tz, sizeof *tz); |
tz | 103 | kernel/time.c | memcpy_tofs(tz, &sys_tz, sizeof(sys_tz)); |
tz | 141 | kernel/time.c | asmlinkage int sys_settimeofday(struct timeval *tv, struct timezone *tz) |
tz | 155 | kernel/time.c | if (tz) { |
tz | 156 | kernel/time.c | int error = verify_area(VERIFY_READ, tz, sizeof(*tz)); |
tz | 159 | kernel/time.c | memcpy_fromfs(&new_tz, tz, sizeof(*tz)); |
tz | 161 | kernel/time.c | if (tz) { |