/freebsd/bin/ls/ |
H A D | cmp.c | 105 if (b->fts_statp->st_atim.tv_sec > in acccmp() 106 a->fts_statp->st_atim.tv_sec) in acccmp() 108 if (b->fts_statp->st_atim.tv_sec < in acccmp() 109 a->fts_statp->st_atim.tv_sec) in acccmp() 111 if (b->fts_statp->st_atim.tv_nsec > in acccmp() 112 a->fts_statp->st_atim.tv_nsec) in acccmp() 114 if (b->fts_statp->st_atim.tv_nsec < in acccmp() 115 a->fts_statp->st_atim.tv_nsec) in acccmp()
|
/freebsd/sys/sys/ |
H A D | stat.h | 111 struct timespec st_atim; /* time of last access */ member 130 struct timespec st_atim; /* time of last access */ member 170 struct timespec st_atim; /* time of last access */ member 201 struct timespec st_atim; /* time of last access */ 220 #define st_atime st_atim.tv_sec 225 #define st_atimensec st_atim.tv_nsec 233 #define st_atimespec st_atim 200 struct timespec st_atim; /* time of last access */ global() member
|
/freebsd/sys/compat/linux/ |
H A D | linux_stats.c | 154 tbuf.st_atim.tv_sec = buf->st_atim.tv_sec; in newstat_copyout() 155 tbuf.st_atim.tv_nsec = buf->st_atim.tv_nsec; in newstat_copyout() 229 lbuf.st_atim.tv_sec = buf->st_atim.tv_sec; in old_stat_copyout() 230 lbuf.st_atim.tv_nsec = buf->st_atim.tv_nsec; in old_stat_copyout() 529 lbuf.st_atim.tv_sec = buf->st_atim.tv_sec; in stat64_copyout() 530 lbuf.st_atim.tv_nsec = buf->st_atim.tv_nsec; in stat64_copyout() 686 tbuf.stx_atime.tv_sec = buf->st_atim.tv_sec; in statx_copyout() 687 tbuf.stx_atime.tv_nsec = buf->st_atim.tv_nsec; in statx_copyout()
|
/freebsd/tools/build/cross-build/include/linux/sys/ |
H A D | stat.h | 49 #define st_atimensec st_atim.tv_nsec 53 #define st_atimespec st_atim
|
/freebsd/crypto/openssh/openbsd-compat/regress/ |
H A D | utimensattest.c | 91 if (sb.st_atim.tv_nsec != 23456000) in main() 92 fail("atim.tv_nsec", 23456000, sb.st_atim.tv_nsec); in main()
|
/freebsd/tools/build/ |
H A D | futimens.c | 75 tv[0].tv_sec = sb.st_atim.tv_sec; in futimens() 76 tv[0].tv_usec = sb.st_atim.tv_nsec / 1000; in futimens()
|
H A D | utimensat.c | 79 tv[0].tv_sec = sb.st_atim.tv_sec; in utimensat() 80 tv[0].tv_usec = sb.st_atim.tv_nsec / 1000; in utimensat()
|
/freebsd/sys/compat/freebsd32/ |
H A D | freebsd32.h | 176 struct timespec32 st_atim; /* time of last access */ member 225 struct timespec32 st_atim; member 254 struct timespec32 st_atim; 277 struct timespec32 st_atim; 253 struct timespec32 st_atim; global() member 276 struct timespec32 st_atim; global() member
|
/freebsd/sys/i386/linux/ |
H A D | linux.h | 166 struct l_timespec st_atim; member 183 struct l_timespec st_atim; member 205 struct l_timespec st_atim; member
|
/freebsd/tests/sys/fs/fusefs/ |
H A D | getattr.cc | 235 EXPECT_EQ(3, sb.st_atim.tv_sec); in TEST_F() 236 EXPECT_EQ(6, sb.st_atim.tv_nsec); in TEST_F() 352 EXPECT_EQ(3, sb.st_atim.tv_sec); in TEST_F() 353 EXPECT_EQ(6, sb.st_atim.tv_nsec); in TEST_F()
|
H A D | read.cc | 381 EXPECT_TRUE(timespeccmp(&sb1.st_atim, &sb2.st_atim, <)); in TEST_F() 417 EXPECT_TRUE(timespeccmp(&sb1.st_atim, &sb2.st_atim, <)); in TEST_F() 447 sb.st_atim.tv_sec && in TEST_F() 449 sb.st_atim.tv_nsec); in TEST_F() 536 sb.st_atim.tv_sec && in TEST_F() 538 sb.st_atim.tv_nsec); in TEST_F() 925 EXPECT_TRUE(timespeccmp(&sb1.st_atim, &sb2.st_atim, ==)); in TEST_F() 963 EXPECT_TRUE(timespeccmp(&sb1.st_atim, &sb2.st_atim, ==)); in TEST_F()
|
H A D | lookup.cc | 99 EXPECT_EQ(3, sb.st_atim.tv_sec); in TEST_F() 100 EXPECT_EQ(6, sb.st_atim.tv_nsec); in TEST_F()
|
/freebsd/sys/amd64/linux32/ |
H A D | linux.h | 194 struct l_timespec st_atim; member 211 struct l_timespec st_atim; member 233 struct l_timespec st_atim; member
|
/freebsd/tools/build/cross-build/include/mac/sys/ |
H A D | stat.h | 43 #define st_atim st_atimespec macro
|
/freebsd/stand/kboot/kboot/ |
H A D | hostfs.c | 173 sb->st_atim.tv_sec = ksb.st_atime_sec; in hostfs_stat() 174 sb->st_atim.tv_nsec = ksb.st_atime_nsec; in hostfs_stat()
|
/freebsd/contrib/elftoolchain/libelftc/ |
H A D | elftc_set_timestamps.c | 47 #define ATIME st_atim
|
/freebsd/usr.bin/touch/ |
H A D | touch.c | 193 ts[0] = sb.st_atim; in main() 395 tsp[0] = sb.st_atim; in stime_file()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_entry_stat.c | 89 st->st_atim.tv_nsec = archive_entry_atime_nsec(entry); in archive_entry_stat()
|
H A D | archive_entry_copy_stat.c | 43 archive_entry_set_atime(entry, st->st_atime, st->st_atim.tv_nsec); in archive_entry_copy_stat()
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | time_utils.h | 57 TimeSpec st_atim; member 299 inline TimeSpec extract_atime(StatT const& st) { return st.st_atim; }
|
/freebsd/sys/arm64/linux/ |
H A D | linux.h | 142 struct l_timespec st_atim; member
|
/freebsd/sys/amd64/linux/ |
H A D | linux.h | 145 struct l_timespec st_atim; member
|
/freebsd/contrib/pjdfstest/ |
H A D | configure.ac | 87 AC_CHECK_MEMBERS([struct stat.st_atim, struct stat.st_atimespec], [], [], [[
|
/freebsd/usr.bin/compress/ |
H A D | compress.c | 357 tspec[0] = fs->st_atim; in setfile()
|
/freebsd/bin/mv/ |
H A D | mv.c | 318 ts[0] = sbp->st_atim; in fastcopy()
|