Lines Matching defs:ffsdir
81 struct dirent *ffsdir);
97 ext2fs_dirconv2ffs(struct m_ext2fs *fs, struct ext2fs_direct *e2dir, struct dirent *ffsdir)
99 memset(ffsdir, 0, sizeof(struct dirent));
100 ffsdir->d_fileno = fs2h32(e2dir->e2d_ino);
101 ffsdir->d_namlen = e2dir->e2d_namlen;
104 ffsdir->d_type = ext2dt2dt(e2dir->e2d_type);
106 ffsdir->d_type = DT_UNKNOWN;
117 strncpy(ffsdir->d_name, e2dir->e2d_name, ffsdir->d_namlen);
123 ffsdir->d_reclen = _DIRENT_SIZE(ffsdir);