Home
last modified time | relevance | path

Searched refs:dirtemplate (Results 1 – 8 of 8) sorted by relevance

/NextBSD/sys/fs/ext2fs/
HDext2_vnops.c180 static struct dirtemplate mastertemplate = {
184 static struct dirtemplate omastertemplate = {
732 struct dirtemplate dirbuf; in ext2_rename()
1019 sizeof(struct dirtemplate), (off_t)0, in ext2_rename()
1034 sizeof(struct dirtemplate), in ext2_rename()
1085 struct dirtemplate dirtemplate, *dtp; in ext2_mkdir() local
1156 dirtemplate = *dtp; in ext2_mkdir()
1157 dirtemplate.dot_ino = ip->i_number; in ext2_mkdir()
1158 dirtemplate.dotdot_ino = dp->i_number; in ext2_mkdir()
1164 dirtemplate.dotdot_reclen = DIRBLKSIZ - 12; in ext2_mkdir()
[all …]
HDext2_lookup.c1024 struct dirtemplate dbuf; in ext2_dirempty()
1028 #define MINDIRSIZ (sizeof(struct dirtemplate) / 2) in ext2_dirempty()
1076 struct dirtemplate dirbuf; in ext2_checkpath()
1094 sizeof(struct dirtemplate), (off_t)0, UIO_SYSSPACE, in ext2_checkpath()
/NextBSD/sys/ufs/ufs/
HDdir.h129 struct dirtemplate { struct
HDufs_vnops.c132 static struct dirtemplate mastertemplate = {
1763 struct dirtemplate dirtemplate, *dtp; local
1911 dtp = (struct dirtemplate *)&omastertemplate;
1912 dirtemplate = *dtp;
1913 dirtemplate.dot_ino = ip->i_number;
1914 dirtemplate.dotdot_ino = dp->i_number;
1922 bcopy((caddr_t)&dirtemplate, (caddr_t)bp->b_data, sizeof dirtemplate);
HDufs_lookup.c1343 struct dirtemplate dbuf;
1347 #define MINDIRSIZ (sizeof (struct dirtemplate) / 2)
1396 struct dirtemplate dirbuf; in ufs_dir_dd_ino()
1417 sizeof (struct dirtemplate), (off_t)0, UIO_SYSSPACE, in ufs_dir_dd_ino()
/NextBSD/sbin/fsck_ffs/
HDdir.c52 static struct dirtemplate emptydir = {
56 static struct dirtemplate dirhead = {
613 struct dirtemplate *dirp; in allocdir()
625 memmove(bp->b_un.b_buf, dirp, sizeof(struct dirtemplate)); in allocdir()
HDpass2.c52 #define MINDIRSIZE (sizeof (struct dirtemplate))
/NextBSD/sys/ufs/ffs/
HDffs_softdep.c729 #define DOTDOT_OFFSET offsetof(struct dirtemplate, dotdot_ino)
730 #define DOT_OFFSET offsetof(struct dirtemplate, dot_ino)