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

  /src/sys/ufs/ufs/
dir.h 183 struct dirtemplate { struct
ufs_vnops.c 134 static const struct dirtemplate mastertemplate = {
1231 struct dirtemplate dirtemplate; local in function:ufs_mkdir
1310 dirtemplate = mastertemplate;
1311 dirtemplate.dotdot_reclen = dirblksiz - dirtemplate.dot_reclen;
1312 dirtemplate.dot_ino = ufs_rw32(ip->i_number, UFS_MPNEEDSWAP(ump));
1313 dirtemplate.dotdot_ino = ufs_rw32(dp->i_number, UFS_MPNEEDSWAP(ump));
1314 dirtemplate.dot_reclen = ufs_rw16(dirtemplate.dot_reclen
    [all...]
ufs_rename.c 73 static int ufs_dirbuf_dotdot_namlen(const struct dirtemplate *,
272 static const struct dirtemplate mastertemplate = {
861 struct dirtemplate dirbuf;
890 ufs_dirbuf_dotdot_namlen(const struct dirtemplate *dirbuf,
ufs_lookup.c 1291 * Using a struct dirtemplate here is not precisely
1306 #define MINDIRSIZ (sizeof (struct dirtemplate) / 2)
  /src/sys/ufs/ext2fs/
ext2fs_vnops.c 625 struct ext2fs_dirtemplate dirtemplate; local in function:ext2fs_mkdir
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/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 27 milliseconds