Lines Matching refs:dstdp
149 struct dirent dstdp; in ext2_readdir() local
218 dstdp.d_namlen = dp->e2d_namlen; in ext2_readdir()
219 dstdp.d_type = FTTODT(dp->e2d_type); in ext2_readdir()
221 dstdp.d_namlen > le16toh(dp->e2d_reclen)) { in ext2_readdir()
227 dstdp.d_fileno = le32toh(dp->e2d_ino); in ext2_readdir()
228 dstdp.d_reclen = GENERIC_DIRSIZ(&dstdp); in ext2_readdir()
229 bcopy(dp->e2d_name, dstdp.d_name, dstdp.d_namlen); in ext2_readdir()
231 dstdp.d_off = offset + le16toh(dp->e2d_reclen); in ext2_readdir()
232 dirent_terminate(&dstdp); in ext2_readdir()
233 if (dstdp.d_reclen > uio->uio_resid) { in ext2_readdir()
241 error = uiomove((caddr_t)&dstdp, dstdp.d_reclen, uio); in ext2_readdir()