Home | History | Annotate | Download | only in ntfs

Lines Matching defs:iep

575 		struct attr_indexentry *iep;
580 error = ntfs_ntreaddir(ntmp, fp, num, &iep);
584 if (NULL == iep)
587 for(; !(iep->ie_flag & NTFS_IEFLAG_LAST) && (uio->uio_resid >= sizeof(struct dirent));
588 iep = NTFS_NEXTREC(iep, struct attr_indexentry *))
590 if(!ntfs_isnamepermitted(ntmp,iep))
595 for(i=0; i<iep->ie_fnamelen; i++) {
597 iep->ie_fname[i]);
603 num, cde->d_name, iep->ie_fnametype,
604 iep->ie_flag));
606 cde->d_fileno = iep->ie_number;
607 cde->d_type = (iep->ie_fflag & NTFS_FFLAG_DIR) ? DT_DIR : DT_REG;