Home
last modified time | relevance | path

Searched refs:di_ctime (Results 1 – 15 of 15) sorted by relevance

/freebsd/usr.sbin/makefs/ffs/
H A Dffs_bswap.c131 n->di_ctime = bswap32(o->di_ctime); in ffs_dinode1_swap()
156 n->di_ctime = bswap64(o->di_ctime); in ffs_dinode2_swap()
158 n->di_birthtime = bswap64(o->di_ctime); in ffs_dinode2_swap()
H A Dufs_inode.h51 #define i_ffs1_ctime i_din.dp1.di_ctime
70 #define i_ffs2_ctime i_din.dp2.di_ctime
/freebsd/sys/ufs/ufs/
H A Ddinode.h135 ufs_time_t di_ctime; /* 48: Last inode change time. */ member
192 uint32_t di_ctime; /* 32: Last inode change time. */ member
H A Dufs_vnops.c547 sb->st_ctim.tv_sec = ip->i_din1->di_ctime; in ufs_stat()
558 sb->st_ctim.tv_sec = ip->i_din2->di_ctime; in ufs_stat()
610 vap->va_ctime.tv_sec = ip->i_din1->di_ctime; in ufs_getattr()
619 vap->va_ctime.tv_sec = ip->i_din2->di_ctime; in ufs_getattr()
/freebsd/sbin/fsdb/
H A Dfsdbutil.c163 t = _time32_to_time(dp->dp1.di_ctime); in printstat()
165 t = _time64_to_time(dp->dp2.di_ctime); in printstat()
H A Dfsdb.c1276 curinode->dp1.di_ctime = _time_to_time32(secs); in CMDFUNCSTART()
1278 curinode->dp2.di_ctime = _time_to_time64(secs); in CMDFUNCSTART()
/freebsd/sys/ufs/ffs/
H A Dffs_subr.c454 if (dp.dp1->di_ctime > now) { in ffs_oldfscompat_inode_read()
457 dp.dp1->di_ctime, (long)now); in ffs_oldfscompat_inode_read()
458 dp.dp1->di_ctime = now; in ffs_oldfscompat_inode_read()
466 dp.dp1->di_ctime = now; in ffs_oldfscompat_inode_read()
474 dp.dp1->di_ctime = now; in ffs_oldfscompat_inode_read()
/freebsd/sbin/growfs/
H A Ddebug.c687 fprintf(dbg_log, "ctime int32_t 0x%08x\n", ino->di_ctime); in dbg_dump_ufs1_ino()
755 fprintf(dbg_log, "ctime ufs_time_t %10jd\n", ino->di_ctime); in dbg_dump_ufs2_ino()
/freebsd/sbin/tunefs/
H A Dtunefs.c985 dp.dp1->di_ctime = utime; in journal_alloc()
995 dp.dp2->di_ctime = utime; in journal_alloc()
/freebsd/usr.sbin/makefs/
H A Dffs.c697 dinp->di_ctime = st->st_ctime; in ffs_build_dinode1()
745 dinp->di_ctime = st->st_ctime; in ffs_build_dinode2()
H A Dffs.c697 dinp->di_ctime = st->st_ctime; in ffs_build_dinode1()
745 dinp->di_ctime = st->st_ctime; in ffs_build_dinode2()
/freebsd/sbin/newfs/
H A Dmkfs.c918 node.dp1.di_ctime = utime; in fsinit()
954 node.dp2.di_ctime = utime; in fsinit()
/freebsd/sbin/fsck_ffs/
H A Dinode.c1459 DIP_SET(dp, di_ctime, DIP(dp, di_atime)); in allocino()
1460 DIP_SET(dp, di_mtime, DIP(dp, di_ctime)); in allocino()
/freebsd/stand/libsa/
H A Dext2fs.c265 uint32_t di_ctime; /* creation time */ member
/freebsd/sbin/dump/
H A Dtraverse.c122 (DIP(dp, di_mtime) >= (t) || DIP(dp, di_ctime) >= (t)) in blockest()