HomeSort by: relevance | last modified time | path
    Searched refs:dirtemplate (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/ufs/ext2fs/
ext2fs_vnops.c 625 struct ext2fs_dirtemplate dirtemplate; local
675 memset(&dirtemplate, 0, sizeof(dirtemplate));
676 dirtemplate.dot_ino = h2fs32(ip->i_number);
677 dirtemplate.dot_reclen = h2fs16(12);
678 dirtemplate.dot_namlen = 1;
680 dirtemplate.dot_type = EXT2_FT_DIR;
682 dirtemplate.dot_name[0] = '.';
683 dirtemplate.dotdot_ino = h2fs32(dp->i_number);
684 dirtemplate.dotdot_reclen = h2fs16(VTOI(dvp)->i_e2fs->e2fs_bsize - 12)
    [all...]
  /src/sys/ufs/ufs/
dir.h 183 struct dirtemplate { struct
ufs_vnops.c 137 static const struct dirtemplate mastertemplate = {
1234 struct dirtemplate dirtemplate; local
1313 dirtemplate = mastertemplate;
1314 dirtemplate.dotdot_reclen = dirblksiz - dirtemplate.dot_reclen;
1315 dirtemplate.dot_ino = ufs_rw32(ip->i_number, UFS_MPNEEDSWAP(ump));
1316 dirtemplate.dotdot_ino = ufs_rw32(dp->i_number, UFS_MPNEEDSWAP(ump));
1317 dirtemplate.dot_reclen = ufs_rw16(dirtemplate.dot_reclen
    [all...]
ufs_rename.c 76 static int ufs_dirbuf_dotdot_namlen(const struct dirtemplate *,
275 static const struct dirtemplate mastertemplate = {
864 struct dirtemplate dirbuf;
893 ufs_dirbuf_dotdot_namlen(const struct dirtemplate *dirbuf,
ufs_lookup.c 1294 * Using a struct dirtemplate here is not precisely
1309 #define MINDIRSIZ (sizeof (struct dirtemplate) / 2)
  /src/sbin/fsck_ffs/
dir.c 60 struct dirtemplate emptydir = {
64 struct dirtemplate dirhead = {
847 struct dirtemplate *dirp;
863 dirp = (struct dirtemplate *)&odirhead;
874 memmove(bp->b_un.b_buf, dirp, sizeof(struct dirtemplate));
pass2.c 58 #define MINDIRSIZE (sizeof (struct dirtemplate))

Completed in 34 milliseconds