Searched refs:st_mtim (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-10.3-release/bin/ls/
H A Dcmp.c69 if (b->fts_statp->st_mtim.tv_sec >
70 a->fts_statp->st_mtim.tv_sec)
72 if (b->fts_statp->st_mtim.tv_sec <
73 a->fts_statp->st_mtim.tv_sec)
75 if (b->fts_statp->st_mtim.tv_nsec >
76 a->fts_statp->st_mtim.tv_nsec)
78 if (b->fts_statp->st_mtim.tv_nsec <
79 a->fts_statp->st_mtim.tv_nsec)
/freebsd-10.3-release/sys/compat/svr4/
H A Dsvr4_stat.h47 svr4_time_t st_mtim; member in struct:svr4_stat
64 svr4_timestruc_t st_mtim; member in struct:svr4_xstat
84 svr4_timestruc_t st_mtim; member in struct:svr4_stat64
H A Dsvr4_stat.c110 st4->st_mtim = st->st_mtim.tv_sec;
131 st4->st_mtim = st->st_mtim;
154 st4->st_mtim = st->st_mtim;
/freebsd-10.3-release/lib/libc/resolv/
H A Dres_state.c89 (sb.st_mtim.tv_sec != ext->conf_mtim.tv_sec ||
90 sb.st_mtim.tv_nsec != ext->conf_mtim.tv_nsec)) {
/freebsd-10.3-release/lib/libc/sys/
H A Dfutimens.c85 tv[1].tv_sec = sb.st_mtim.tv_sec;
86 tv[1].tv_usec = sb.st_mtim.tv_nsec / 1000;
H A Dutimensat.c89 tv[1].tv_sec = sb.st_mtim.tv_sec;
90 tv[1].tv_usec = sb.st_mtim.tv_nsec / 1000;
/freebsd-10.3-release/sys/sys/
H A Dstat.h113 struct timespec st_mtim; /* time of last data modification */ member in struct:ostat
131 struct timespec st_mtim; /* time of last data modification */ member in struct:stat
162 struct timespec st_mtim; /* time of last data modification */ member in struct:nstat
180 #define st_mtime st_mtim.tv_sec
189 #define st_mtimespec st_mtim
/freebsd-10.3-release/contrib/libarchive/tar/
H A Dbsdtar_platform.h103 #define ARCHIVE_STAT_MTIME_NANOS(st) (st)->st_mtim.tv_nsec
/freebsd-10.3-release/sys/i386/ibcs2/
H A Dibcs2_stat.h49 ibcs2_time_t st_mtim; member in struct:ibcs2_stat
H A Dibcs2_stat.c76 st4->st_mtim = (ibcs2_time_t)st->st_mtim.tv_sec;
/freebsd-10.3-release/bin/test/
H A Dtest.c580 if (b1.st_mtim.tv_sec > b2.st_mtim.tv_sec)
582 if (b1.st_mtim.tv_sec < b2.st_mtim.tv_sec)
585 return (b1.st_mtim.tv_nsec > b2.st_mtim.tv_nsec);
/freebsd-10.3-release/sys/compat/linux/
H A Dlinux_stats.c183 tbuf.st_mtim.tv_sec = buf->st_mtim.tv_sec;
184 tbuf.st_mtim.tv_nsec = buf->st_mtim.tv_nsec;
274 lbuf.st_mtim.tv_sec = buf->st_mtim.tv_sec;
275 lbuf.st_mtim.tv_nsec = buf->st_mtim.tv_nsec;
519 lbuf.st_mtim.tv_sec = buf->st_mtim
[all...]
/freebsd-10.3-release/usr.bin/touch/
H A Dtouch.c192 TIMESPEC_TO_TIMEVAL(&tv[1], &sb.st_mtim);
204 TIMESPEC_TO_TIMEVAL(&tv[1], &sb.st_mtim);
413 TIMESPEC_TO_TIMEVAL(tvp + 1, &sb.st_mtim);
/freebsd-10.3-release/usr.sbin/mtree/
H A Dcompare.c184 ((s->st_mtimespec.tv_sec != p->fts_statp->st_mtim.tv_sec) ||
185 (s->st_mtimespec.tv_nsec != p->fts_statp->st_mtim.tv_nsec))) {
190 ctime(&p->fts_statp->st_mtim.tv_sec));
H A Dcreate.c216 (long)p->fts_statp->st_mtim.tv_sec,
217 p->fts_statp->st_mtim.tv_nsec);
/freebsd-10.3-release/lib/libutil/
H A Dpw_util.c347 return (st1.st_mtim.tv_sec != st2.st_mtim.tv_sec ||
348 st1.st_mtim.tv_nsec != st2.st_mtim.tv_nsec);
/freebsd-10.3-release/contrib/libarchive/libarchive/
H A Darchive_entry_copy_stat.c46 archive_entry_set_mtime(entry, st->st_mtime, st->st_mtim.tv_nsec);
H A Darchive_entry_stat.c92 st->st_mtim.tv_nsec = archive_entry_mtime_nsec(entry);
/freebsd-10.3-release/sys/compat/freebsd32/
H A Dfreebsd32.h171 struct timespec32 st_mtim; member in struct:stat32
194 struct timespec32 st_mtim; member in struct:ostat32
/freebsd-10.3-release/sys/i386/linux/
H A Dlinux.h181 struct l_timespec st_mtim; member in struct:l_newstat
197 struct l_timespec st_mtim; member in struct:l_stat
220 struct l_timespec st_mtim; member in struct:l_stat64
/freebsd-10.3-release/sys/amd64/linux32/
H A Dlinux.h206 struct l_timespec st_mtim; member in struct:l_newstat
222 struct l_timespec st_mtim; member in struct:l_stat
245 struct l_timespec st_mtim; member in struct:l_stat64
/freebsd-10.3-release/bin/date/
H A Ddate.c123 tval = sb.st_mtim.tv_sec;
/freebsd-10.3-release/contrib/xz/src/xz/
H A Dfile_io.c315 mtime_nsec = pair->src_st.st_mtim.tv_nsec;
335 mtime_nsec = pair->src_st.st_mtim.st__tim.tv_nsec;
/freebsd-10.3-release/bin/rcp/
H A Drcp.c392 (long)stb.st_mtim.tv_sec,
456 (long)statp->st_mtim.tv_sec,
/freebsd-10.3-release/contrib/apr/file_io/unix/
H A Dfilestat.c103 finfo->mtime += info->st_mtim.tv_nsec / APR_TIME_C(1000);

Completed in 317 milliseconds

12