Searched defs:mtime (Results 26 - 48 of 48) sorted by relevance

12

/illumos-gate/usr/src/cmd/cpio/
H A Dcpio.h253 char mtime[12]; member in struct:b_block::bar_header
H A Dcpio.c170 static void set_tym(int dirfd, char *nam_p, time_t atime, time_t mtime);
6746 set_tym(int dirfd, char *nam_p, time_t atime, time_t mtime) argument
6752 times[1].tv_sec = mtime;
7611 (void) sscanf(bar_Vhdr->dbuf.mtime, "%12lo", &Gen_bar_vol.g_mtime);
7661 (void) sscanf(tmp_hdr->dbuf.mtime, "%12lo", &Gen.g_mtime);
7758 (void) sscanf(bar_Vhdr->dbuf.mtime, "%12lo",
/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dgprof.h184 time_t mtime; /* last modified time of this file */ member in struct:fl_info
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_znode.c766 uint64_t crtime[2], atime[2], mtime[2], ctime[2]; local
886 ZFS_TIME_ENCODE(&vap->va_mtime, mtime);
888 ZFS_TIME_ENCODE(&now, mtime);
906 NULL, &mtime, 16);
937 NULL, &mtime, 16);
1358 zfs_tstamp_update_setup(znode_t *zp, uint_t flag, uint64_t mtime[2], argument
1377 ZFS_TIME_ENCODE(&now, mtime);
1664 uint64_t mtime[2], ctime[2]; local
1710 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL, mtime, 16);
1714 zfs_tstamp_update_setup(zp, CONTENT_MODIFIED, mtime, ctim
[all...]
H A Dzfs_vnops.c647 * vp - ctime|mtime updated if byte count > 0
676 uint64_t mtime[2], ctime[2]; local
691 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL, &mtime, 16);
961 zfs_tstamp_update_setup(zp, CONTENT_MODIFIED, mtime, ctime,
1369 * dvp - ctime|mtime updated if new entry created
1370 * vp - ctime|mtime always, atime if new
1621 * dvp - ctime|mtime
1862 * dvp - ctime|mtime updated
1863 * vp - ctime|mtime|atime updated
2044 * dvp - ctime|mtime update
2505 uint64_t mtime[2], ctime[2]; local
2718 uint64_t mtime[2], ctime[2]; local
4246 uint64_t mtime[2], ctime[2]; local
[all...]
/illumos-gate/usr/src/uts/common/io/vscan/
H A Dvscan_svc.c849 timestruc_t *mtime; local
868 /* if mtime has changed, don't clear the modified attribute */
870 mtime = &(node->vsn_mtime);
873 (mtime->tv_sec != attr.va_mtime.tv_sec) ||
874 (mtime->tv_nsec != attr.va_mtime.tv_nsec)) {
1012 /* if access is denied, set mtime to invalidate client cache */
/illumos-gate/usr/src/boot/include/isofs/cd9660/
H A Diso.h198 char mtime [ISODCL (28, 44)]; /* 8.4.26.1 */ member in struct:iso_extended_attributes
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_srv_attr.c184 * of owner/group, mode, size, atime/mtime.
2713 timestruc_t mtime; local
2739 error = nfs4_time_ntov(&na->time_modify, &mtime);
2742 if (bcmp(&mtime, &sarg->vap->va_mtime, sizeof (mtime)))
H A Dnfs3_srv.c240 if (args->new_attributes.mtime.set_it == SET_TO_CLIENT_TIME)
1522 nfstime3 *mtime; local
1593 mtime = (nfstime3 *)&args->how.createhow3_u.verf;
1594 va.va_mtime.tv_sec = mtime->seconds % INT32_MAX;
1595 va.va_mtime.tv_nsec = mtime->nseconds;
1753 mtime = (nfstime3 *)&args->how.createhow3_u.verf;
1757 (mtime->seconds % INT32_MAX) ||
1758 vap->va_mtime.tv_nsec != mtime->nseconds)) {
4166 if (sap->mtime.set_it == SET_TO_CLIENT_TIME) {
4169 if (!NFS3_TIME_OK(sap->mtime
[all...]
H A Dnfs_vnops.c1116 * Only need to flush pages if asking for the mtime
1232 * mtime nanosecond field to 1 billion. This will get
1236 * to tell whether both the mtime and atime should be
1253 timestruc_t mtime = vap->va_mtime; local
1268 vap->va_mtime = mtime;
4612 * mtime if we truncate the file to its
H A Dnfs4_xdr.c1452 nfstime4 mtime; local
1456 (longlong_t *)&mtime.seconds))
1458 if (!XDR_GETINT32(xdrs, (int32_t *)&mtime.nseconds))
1460 error = nfs4_time_ntov(&mtime, &vap->va_mtime);
2044 nfstime4 mtime; local
2047 IXDR_GET_U_HYPER(ptr, mtime.seconds);
2048 mtime.nseconds = IXDR_GET_U_INT32(ptr);
2050 error = nfs4_time_ntov(&mtime, &vap->va_mtime);
H A Dnfs4_srv.c6166 timespec32_t *mtime, cred_t *cr, vnode_t **vpp, bool_t *created)
6236 ASSERT(mtime != 0);
6241 if (va.va_mtime.tv_sec != mtime->tv_sec ||
6242 va.va_mtime.tv_nsec != mtime->tv_nsec) {
6313 timespec32_t *mtime; local
6452 mtime = (timespec32_t *)&args->createhow4_u.createverf;
6453 cva.va_mtime.tv_sec = mtime->tv_sec % TIME32_MAX;
6454 cva.va_mtime.tv_nsec = (mtime->tv_nsec / 1000) * 1000;
6475 status = create_vnode(dvp, name, vap, args->mode, mtime,
6165 create_vnode(vnode_t *dvp, char *nm, vattr_t *vap, createmode4 mode, timespec32_t *mtime, cred_t *cr, vnode_t **vpp, bool_t *created) argument
/illumos-gate/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_vnops.c623 /* Update mtime with mtime from server here? */
968 struct timespec *mtime, *atime; local
1086 mtime = ((mask & AT_MTIME) ? &vap->va_mtime : 0);
1089 if (dosattr || mtime || atime) {
1095 dosattr, mtime, atime, &scred);
2983 * mtime if we truncate the file to its
H A Dsmbfs_smb.c81 uint32_t attr, struct timespec *mtime, struct timespec *atime,
85 struct timespec *mtime, struct timespec *atime,
90 struct timespec *mtime, struct smb_cred *scrp);
839 * Set DOS file attributes. mtime should be NULL for dialects above lm10
843 uint32_t attr, struct timespec *mtime,
859 if (mtime) {
860 smb_time_local2server(mtime, svtz, &time);
863 mb_put_uint32le(mbp, time); /* mtime */
922 * Set file attributes (optionally: DOS attr, atime, mtime)
930 struct timespec *mtime,
842 smbfs_smb_setpattr1(struct smbnode *np, const char *name, int len, uint32_t attr, struct timespec *mtime, struct smb_cred *scrp) argument
926 smbfs_smb_setfattr( struct smbnode *np, int fid, uint32_t attr, struct timespec *mtime, struct timespec *atime, struct smb_cred *scrp) argument
964 smbfs_smb_setftime1( struct smbnode *np, uint16_t fid, struct timespec *mtime, struct timespec *atime, struct smb_cred *scrp) argument
1019 smbfs_smb_setfattrNT( struct smbnode *np, int fid, uint32_t attr, struct timespec *mtime, struct timespec *atime, struct smb_cred *scrp) argument
1417 smbfs_smb_close(struct smb_share *ssp, uint16_t fid, struct timespec *mtime, struct smb_cred *scrp) argument
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/
H A Drcp.c1185 time_t mtime, atime; local
1192 mtime = stb.st_mtime;
1195 if ((mtime < 0) || (atime < 0)) {
1198 if (mtime < 0) {
1199 mtime = now;
1210 mtime, atime);
1427 #define mtime tv[1] macro
1484 mtime.tv_sec = strtol(cp, &cp, 0);
1486 SCREWUP("mtime.sec not delimited");
1487 mtime
[all...]
/illumos-gate/usr/src/uts/common/fs/mntfs/
H A Dmntvnops.c493 * than implementing an mtime for a vfs_t.
539 * An unchanged mtime is no guarantee that the
788 * Record /etc/mnttab's current size and mtime for possible future use
1001 timespec_t mtime, old_mtime; local
1016 * /etc/mnttab's size and mtime. We wish to avoid any condition in
1026 vfs_mnttab_modtime(&mtime);
1047 } else if (mntfs_newest(&mtime, &old_mtime) == MNTFS_NEITHER) {
1052 * it is guaranteed to be consistent with mtime, which
1061 * also the mtime, thereby ensuring that the two are
1066 mtime
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/dsw/
H A Ddsw.h233 uint64_t mtime; member in struct:dsw_stat_s
397 uint64_t mtime; member in struct:dsw_stat32_s
H A Ddsw_dev.h141 kstat_named_t mtime; /* from _ii_stat() */ member in struct:_ii_kstat_set_s
/illumos-gate/usr/src/uts/common/sys/
H A Dcpr.h458 time_t mtime; /* mean time on this event */ member in struct:cpr_tdata
/illumos-gate/usr/src/cmd/truss/
H A Dexpound.c160 timespec_t mtime; member in struct:__anon49
173 timespec32_t mtime; member in struct:__anon50
181 TIMESPEC32_TO_TIMESPEC(&utimbuf.mtime, &utimbuf32.mtime);
191 if (utimbuf.mtime.tv_nsec == UTIME_OMIT)
193 else if (utimbuf.mtime.tv_nsec == UTIME_NOW)
196 prtimestruc(pri, "mt = ", &utimbuf.mtime);
/illumos-gate/usr/src/cmd/tar/
H A Dtar.c357 char mtime[12]; member in struct:hblock::header
1522 (void) sscanf(dblock.dbuf.mtime, "%12lo", (ulong_t *)&Gen.g_mtime);
4134 (strcmp(savedblock.dbuf.mtime, dblock.dbuf.mtime)) ||
4647 (void) sprintf(dblock.dbuf.mtime, "%011lo", sp->st_mtime);
4812 time_t mtime; local
4820 (void) fscanf(tfile, "%s %ld.%ld", name, &mtime, &nsecs);
4827 return (stbuf.st_mtime > mtime);
4829 if ((stbuf.st_mtime < mtime) ||
4830 ((stbuf.st_mtime == mtime)
[all...]
/illumos-gate/usr/src/uts/common/nfs/
H A Dnfs.h366 NFS3_TIME_OK((attrs)->mtime.seconds) && \
1155 nfstime3 mtime; member in struct:fattr3
1187 nfstime3 mtime; member in struct:wcc_attr
1249 nfstime3 mtime; member in struct:set_mtime
1259 set_mtime mtime; member in struct:sattr3
/illumos-gate/usr/src/uts/common/smbsrv/
H A Dsmb_ktypes.h1463 timestruc_t mtime; member in struct:open_param

Completed in 263 milliseconds

12