| /freebsd/bin/ls/ |
| H A D | cmp.c | 76 if (b->fts_statp->st_mtim.tv_sec > in modcmp() 77 a->fts_statp->st_mtim.tv_sec) in modcmp() 79 if (b->fts_statp->st_mtim.tv_sec < in modcmp() 80 a->fts_statp->st_mtim.tv_sec) in modcmp() 82 if (b->fts_statp->st_mtim.tv_nsec > in modcmp() 83 a->fts_statp->st_mtim.tv_nsec) in modcmp() 85 if (b->fts_statp->st_mtim.tv_nsec < in modcmp() 86 a->fts_statp->st_mtim.tv_nsec) in modcmp()
|
| /freebsd/sys/sys/ |
| H A D | stat.h | 112 struct timespec st_mtim; /* time of last data modification */ member 131 struct timespec st_mtim; /* time of last data modification */ member 174 struct timespec st_mtim; /* time of last data modification */ member 202 struct timespec st_mtim; /* time of last data modification */ member 221 #define st_mtime st_mtim.tv_sec 226 #define st_mtimensec st_mtim.tv_nsec 234 #define st_mtimespec st_mtim
|
| /freebsd/sys/compat/linux/ |
| H A D | linux_stats.c | 202 tbuf.st_mtim.tv_sec = buf->st_mtim.tv_sec; in newstat_copyout() 203 tbuf.st_mtim.tv_nsec = buf->st_mtim.tv_nsec; in newstat_copyout() 277 lbuf.st_mtim.tv_sec = buf->st_mtim.tv_sec; in old_stat_copyout() 278 lbuf.st_mtim.tv_nsec = buf->st_mtim.tv_nsec; in old_stat_copyout() 579 lbuf.st_mtim.tv_sec = buf->st_mtim.tv_sec; in stat64_copyout() 580 lbuf.st_mtim.tv_nsec = buf->st_mtim.tv_nsec; in stat64_copyout() 740 tbuf.stx_mtime.tv_sec = buf->st_mtim.tv_sec; in statx_copyout() 741 tbuf.stx_mtime.tv_nsec = buf->st_mtim.tv_nsec; in statx_copyout()
|
| /freebsd/tools/build/cross-build/include/linux/sys/ |
| H A D | stat.h | 50 #define st_mtimensec st_mtim.tv_nsec 54 #define st_mtimespec st_mtim
|
| /freebsd/bin/test/ |
| H A D | test.c | 601 if (b1.st_mtim.tv_sec > b2.st_mtim.tv_sec) in newerf() 603 if (b1.st_mtim.tv_sec < b2.st_mtim.tv_sec) in newerf() 606 return (b1.st_mtim.tv_nsec > b2.st_mtim.tv_nsec); in newerf()
|
| /freebsd/crypto/openssh/openbsd-compat/regress/ |
| H A D | utimensattest.c | 99 if (sb.st_mtim.tv_nsec != 45678000) in main() 100 fail("mtim.tv_nsec", 45678000, sb.st_mtim.tv_nsec); in main()
|
| /freebsd/lib/libc/resolv/ |
| H A D | res_state.c | 89 (sb.st_mtim.tv_sec != ext->conf_mtim.tv_sec || in res_check_reload() 90 sb.st_mtim.tv_nsec != ext->conf_mtim.tv_nsec)) { in res_check_reload()
|
| /freebsd/tools/build/ |
| H A D | futimens.c | 79 tv[1].tv_sec = sb.st_mtim.tv_sec; in futimens() 80 tv[1].tv_usec = sb.st_mtim.tv_nsec / 1000; in futimens()
|
| H A D | utimensat.c | 83 tv[1].tv_sec = sb.st_mtim.tv_sec; in utimensat() 84 tv[1].tv_usec = sb.st_mtim.tv_nsec / 1000; in utimensat()
|
| /freebsd/sys/i386/linux/ |
| H A D | linux.h | 167 struct l_timespec st_mtim; member 184 struct l_timespec st_mtim; member 206 struct l_timespec st_mtim; member
|
| /freebsd/sys/compat/freebsd32/ |
| H A D | freebsd32.h | 169 struct timespec32 st_mtim; /* time of last data modification */ member 221 struct timespec32 st_mtim; member 247 struct timespec32 st_mtim; member 270 struct timespec32 st_mtim; member
|
| /freebsd/tests/sys/fs/fusefs/ |
| H A D | getattr.cc | 237 EXPECT_EQ(4, sb.st_mtim.tv_sec); in TEST_F() 238 EXPECT_EQ(7, sb.st_mtim.tv_nsec); in TEST_F() 354 EXPECT_EQ(4, sb.st_mtim.tv_sec); in TEST_F() 355 EXPECT_EQ(7, sb.st_mtim.tv_nsec); in TEST_F()
|
| H A D | read.cc | 575 EXPECT_TRUE(timespeccmp(&sb1.st_mtim, &sb2.st_mtim, ==)); in TEST_F() 611 EXPECT_TRUE(timespeccmp(&sb1.st_mtim, &sb2.st_mtim, ==)); in TEST_F() 1119 EXPECT_TRUE(timespeccmp(&sb1.st_mtim, &sb2.st_mtim, ==)); in TEST_F() 1157 EXPECT_TRUE(timespeccmp(&sb1.st_mtim, &sb2.st_mtim, ==)); in TEST_F()
|
| /freebsd/sys/amd64/linux32/ |
| H A D | linux.h | 195 struct l_timespec st_mtim; member 212 struct l_timespec st_mtim; member 234 struct l_timespec st_mtim; member
|
| /freebsd/lib/libutil/ |
| H A D | pw_util.c | 344 return (st1.st_mtim.tv_sec != st2.st_mtim.tv_sec || in pw_edit() 345 st1.st_mtim.tv_nsec != st2.st_mtim.tv_nsec); in pw_edit()
|
| /freebsd/contrib/llvm-project/libc/include/llvm-libc-types/ |
| H A D | struct_stat.h | 33 struct timespec st_mtim; member
|
| /freebsd/tools/build/cross-build/include/mac/sys/ |
| H A D | stat.h | 44 #define st_mtim st_mtimespec macro
|
| /freebsd/contrib/elftoolchain/libelftc/ |
| H A D | elftc_set_timestamps.c | 48 #define MTIME st_mtim
|
| /freebsd/stand/kboot/kboot/ |
| H A D | hostfs.c | 175 sb->st_mtim.tv_sec = ksb.st_mtime_sec; in hostfs_stat() 176 sb->st_mtim.tv_nsec = ksb.st_mtime_nsec; in hostfs_stat()
|
| /freebsd/usr.bin/touch/ |
| H A D | touch.c | 192 ts[1] = sb.st_mtim; in main() 391 tsp[1] = sb.st_mtim; in stime_file()
|
| /freebsd/contrib/libarchive/tar/ |
| H A D | bsdtar_platform.h | 77 #define ARCHIVE_STAT_MTIME_NANOS(st) (st)->st_mtim.tv_nsec
|
| /freebsd/bin/date/ |
| H A D | date.c | 138 ts.tv_sec = sb.st_mtim.tv_sec; in main() 139 ts.tv_nsec = sb.st_mtim.tv_nsec; in main()
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_entry_stat.c | 95 st->st_mtim.tv_nsec = archive_entry_mtime_nsec(entry); in archive_entry_stat()
|
| H A D | archive_entry_copy_stat.c | 45 archive_entry_set_mtime(entry, st->st_mtime, st->st_mtim.tv_nsec); in archive_entry_copy_stat()
|
| /freebsd/sys/arm64/linux/ |
| H A D | linux.h | 143 struct l_timespec st_mtim; member
|