tag | line | file | source code |
tz | 98 | fs/isofs/util.c | int year, month, day, hour ,minute, second, tz; |
tz | 107 | fs/isofs/util.c | if (flag == 0) tz = p[6]; /* High sierra has no time zone */ |
tz | 108 | fs/isofs/util.c | else tz = 0; |
tz | 126 | fs/isofs/util.c | if (tz & 0x80) |
tz | 127 | fs/isofs/util.c | tz |= (-1 << 8); |
tz | 130 | fs/isofs/util.c | if (-48 <= tz && tz <= 52) |
tz | 131 | fs/isofs/util.c | crtime += tz * 15 * 60; |
tz | 233 | kernel/time.c | asmlinkage int sys_gettimeofday(struct timeval *tv, struct timezone *tz) |
tz | 245 | kernel/time.c | if (tz) { |
tz | 246 | kernel/time.c | error = verify_area(VERIFY_WRITE, tz, sizeof *tz); |
tz | 249 | kernel/time.c | memcpy_tofs(tz, &sys_tz, sizeof(sys_tz)); |
tz | 287 | kernel/time.c | asmlinkage int sys_settimeofday(struct timeval *tv, struct timezone *tz) |
tz | 301 | kernel/time.c | if (tz) { |
tz | 302 | kernel/time.c | int error = verify_area(VERIFY_READ, tz, sizeof(*tz)); |
tz | 305 | kernel/time.c | memcpy_fromfs(&new_tz, tz, sizeof(*tz)); |
tz | 307 | kernel/time.c | if (tz) { |