Searched refs:mtime (Results 76 - 100 of 173) sorted by relevance

1234567

/freebsd-current/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_znode.c544 uint64_t atime[2], mtime[2], ctime[2], btime[2]; local
590 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL, &mtime, 16);
619 ZFS_TIME_DECODE(&tmp_ts, mtime);
696 uint64_t crtime[2], atime[2], mtime[2], ctime[2]; local
837 ZFS_TIME_ENCODE(&vap->va_mtime, mtime);
839 ZFS_TIME_ENCODE(&now, mtime);
858 NULL, &mtime, 16);
889 NULL, &mtime, 16);
1201 uint64_t atime[2], mtime[2], ctime[2], btime[2]; local
1269 &mtime, 1
1445 zfs_tstamp_update_setup(znode_t *zp, uint_t flag, uint64_t mtime[2], uint64_t ctime[2]) argument
1790 uint64_t mtime[2], ctime[2]; local
[all...]
/freebsd-current/sys/fs/tarfs/
H A Dtarfs_subr.c166 __enum_uint8(vtype) type, off_t off, size_t sz, time_t mtime, uid_t uid, gid_t gid,
192 tnp->mtime.tv_sec = mtime;
194 tnp->ctime = tnp->mtime;
165 tarfs_alloc_node(struct tarfs_mount *tmp, const char *name, size_t namelen, __enum_uint8(vtype) type, off_t off, size_t sz, time_t mtime, uid_t uid, gid_t gid, mode_t mode, unsigned int flags, const char *linkname, dev_t rdev, struct tarfs_node *parent, struct tarfs_node **retnode) argument
/freebsd-current/share/mk/
H A Dmeta.sys.mk130 # ignore mtime of shell
131 # and mtime of makefiles does not matter in meta mode
/freebsd-current/contrib/bmake/mk/
H A Dsys.vars.mk134 # mtime of each word - assumed to be a valid pathname
140 M_mtime = mtime${M_mtime_fallback:U}
H A Dmeta.sys.mk130 # ignore mtime of shell
131 # and mtime of makefiles does not matter in meta mode
/freebsd-current/usr.bin/touch/tests/
H A Dtouch_test.sh11 local mtime=$1 filename=$2
12 atf_check -o inline:"$((mtime))\n" stat -f%m "$filename"
/freebsd-current/bin/pax/
H A Dextern.h142 void set_ftime(char *fnm, time_t mtime, time_t atime, int frc);
H A Dfile_subs.c625 set_ftime(char *fnm, time_t mtime, time_t atime, int frc) argument
631 tv[1].tv_sec = mtime;
/freebsd-current/tests/sys/fs/fusefs/
H A Dsetattr.cc614 out.body.entry.attr.mtime = oldtimes[1].tv_sec;
628 (time_t)in.body.setattr.mtime ==
640 out.body.attr.attr.mtime = newtimes[1].tv_sec;
647 /* Change a file mtime but not its atime */
669 out.body.entry.attr.mtime = oldtimes[1].tv_sec;
679 (time_t)in.body.setattr.mtime ==
691 out.body.attr.attr.mtime = newtimes[1].tv_sec;
699 * Set a file's mtime and atime to now
702 * or mtime to UTIME_NOW; it's both or neither.
732 out.body.entry.attr.mtime
[all...]
H A Dgetattr.cc220 out.body.attr.attr.mtime = 4;
338 out.body.attr.attr.mtime = 4;
/freebsd-current/lib/libfetch/
H A Dfetch.c81 us->atime = us->mtime = 0;
135 us->atime = us->mtime = 0;
/freebsd-current/bin/ls/tests/
H A Dls_tests.sh427 mtime=$(date -j -f %s $mtime_in_secs +"[[:space:]]+%b[[:space:]]+%e[[:space:]]+%H:%M:%S[[:space:]]+%Y")
429 atf_check -e empty -o match:"$mtime"'[[:space:]]+a\.file' \
535 mtime=$(date -j -f "%s" $mtime_in_secs +"%b[[:space:]]+%e[[:space:]]+%H:%M")
537 expected_output=$(stat -f "%Sp[[:space:]]+%l[[:space:]]+%Sg[[:space:]]+%z[[:space:]]+$mtime[[:space:]]+a\\.file" a.file)
634 mtime=$(date -j -f "%s" $mtime_in_secs +"%b[[:space:]]+%e[[:space:]]+%H:%M")
636 expected_output=$(stat -f "%Sp[[:space:]]+%l[[:space:]]+%Su[[:space:]]+%Sg[[:space:]]+%z[[:space:]]+$mtime[[:space:]]+a\\.file" a.file)
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c178 int64_t mtime; member in struct:fixup_entry
877 fe->mtime = archive_entry_mtime(entry);
880 /* If mtime is unset, use start time. */
881 fe->mtime = a->start_time;
889 /* If birthtime is unset, use mtime. */
890 fe->birthtime = fe->mtime;
2605 p->mtime, p->mtime_nanos,
3518 time_t mtime, long mtime_nsec)
3531 ts[1].tv_sec = mtime;
3548 times[1].tv_sec = mtime;
3516 set_time(int fd, int mode, const char *name, time_t atime, long atime_nsec, time_t mtime, long mtime_nsec) argument
3599 set_time_tru64(int fd, int mode, const char *name, time_t atime, long atime_nsec, time_t mtime, long mtime_nsec, time_t ctime, long ctime_nsec) argument
3622 set_times(struct archive_write_disk *a, int fd, int mode, const char *name, time_t atime, long atime_nanos, time_t birthtime, long birthtime_nanos, time_t mtime, long mtime_nanos, time_t cctime, long ctime_nanos) argument
3682 time_t atime, birthtime, mtime, cctime; local
[all...]
/freebsd-current/usr.bin/gzip/
H A Dgzip.c561 gz_compress(int in, int out, off_t *gsizep, const char *origname, uint32_t mtime) argument
583 mtime = 0;
590 mtime & 0xff,
591 (mtime >> 8) & 0xff,
592 (mtime >> 16) & 0xff,
593 (mtime >> 24) & 0xff,
1859 uint32_t mtime; local
1869 /* If stdin is a file use its mtime, otherwise use current time */
1878 mtime = (uint32_t)sb.st_mtime;
1885 mtime
[all...]
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_znode.c423 uint64_t mtime[2], ctime[2]; local
490 &mtime, 16);
577 uint64_t crtime[2], atime[2], mtime[2], ctime[2]; local
704 ZFS_TIME_ENCODE(&vap->va_mtime, mtime);
706 ZFS_TIME_ENCODE(&now, mtime);
725 NULL, &mtime, 16);
756 NULL, &mtime, 16);
1307 zfs_tstamp_update_setup_ext(znode_t *zp, uint_t flag, uint64_t mtime[2], argument
1326 ZFS_TIME_ENCODE(&now, mtime);
1342 zfs_tstamp_update_setup(znode_t *zp, uint_t flag, uint64_t mtime[ argument
1605 uint64_t mtime[2], ctime[2]; local
[all...]
/freebsd-current/contrib/tnftp/src/
H A Dcmds.c628 time_t mtime; local
630 mtime = remotemodtime(argv[1], 0);
631 if (mtime == -1)
633 if (stbuf.st_mtime >= mtime) {
2512 time_t mtime; local
2520 mtime = remotemodtime(argv[1], 1);
2521 if (mtime != -1)
2523 rfc2822time(localtime(&mtime)));
2524 code = (mtime > 0);
/freebsd-current/crypto/heimdal/appl/rcp/
H A Drcp.c426 #define mtime tv[1] macro
477 mtime.tv_sec = strtol(cp, &cp, 10);
479 SCREWUP("mtime.sec not delimited");
480 mtime.tv_usec = strtol(cp, &cp, 10);
482 SCREWUP("mtime.usec not delimited");
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dzfs_sa.c314 uint64_t crtime[2], mtime[2], ctime[2], atime[2]; local
348 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL, &mtime, 16);
390 &mtime, 16);
/freebsd-current/contrib/sendmail/src/
H A Dalias.c410 time_t mtime; local
478 mtime = stb.st_mtime;
490 if (stat(buf, &stb) < 0 || stb.st_mtime < mtime || attimeout)
/freebsd-current/sys/fs/fuse/
H A Dfuse_kernel.h212 uint64_t mtime; member in struct:fuse_attr
550 uint64_t mtime; member in struct:fuse_setattr_in
/freebsd-current/usr.sbin/fstyp/
H A Dhammer_disk.h907 uint64_t mtime; /* mtime must be second-to-last */ member in struct:hammer_inode_data
912 * Neither mtime nor atime updates are CRCd by the B-Tree element.
913 * mtime updates have UNDO, atime updates do not.
916 offsetof(struct hammer_inode_data, mtime)
/freebsd-current/lib/libsecureboot/
H A Dlocal.trust.mk106 # we take the mtime of this as our baseline time
/freebsd-current/contrib/libarchive/test_utils/
H A Dtest_common.h256 #define assertUtimes(pathname, atime, atime_nsec, mtime, mtime_nsec) \
257 assertion_utimes(__FILE__, __LINE__, pathname, atime, atime_nsec, mtime, mtime_nsec)
/freebsd-current/contrib/lib9p/pytest/
H A Dclient.py567 # now truncate, set mtime to (3,14), and check result
569 clnt.Tsetattr(fid, size=0, mtime=set_time_to)
572 if attrs.mtime.sec != set_time_to.sec or attrs.size != 0:
573 tc.fail('setattr: expected to get back mtime.sec={0}, size=0; '
574 'got mtime.sec={1}, size='
575 '{1}'.format(set_time_to.sec, attrs.mtime.sec, attrs.size))
577 if attrs.mtime.nsec != set_time_to.nsec:
580 tc.succ('able to set and see size and mtime')
/freebsd-current/contrib/elftoolchain/elfcopy/
H A Delfcopy.h171 time_t mtime; /* modification time */ member in struct:ar_obj

Completed in 384 milliseconds

1234567