Home | History | Annotate | Download | only in ntfs

Lines Matching defs:iep

776 	struct attr_indexentry *iep;
828 iep = (struct attr_indexentry *) ((char *)rdbuf + aoff);
830 for (; !(iep->ie_flag & NTFS_IEFLAG_LAST) && (rdsize > aoff);
831 aoff += iep->reclen,
832 iep = (struct attr_indexentry *) ((char *)rdbuf + aoff))
835 (u_int32_t) iep->ie_number,
836 (u_int32_t) iep->ie_fnametype));
841 res = ntfs_uastricmp(ntmp, iep->ie_fname,
842 iep->ie_fnamelen, fname, fnamelen);
850 if (iep->ie_fnametype == 0 ||
853 res = ntfs_uastrcmp(ntmp, iep->ie_fname,
854 iep->ie_fnamelen, fname, fnamelen);
862 if (iep->ie_flag & NTFS_IEFLAG_SUBNODE) {
865 tctx->aoff = aoff + iep->reclen;
883 if ((iep->ie_number == ip->i_number) &&
894 error = ntfs_vgetex(ntmp->ntm_mountp, iep->ie_number,
911 if (iep->ie_flag & NTFS_IEFLAG_SUBNODE) {
915 iep->reclen - sizeof(cn_t));
992 ntfs_isnamepermitted(struct ntfsmount *ntmp, struct attr_indexentry *iep)
997 switch (iep->ie_fnametype) {
1005 iep->ie_fnametype);
1034 struct attr_indexentry *iep;
1122 iep = (struct attr_indexentry *) ((char *)rdbuf + aoff);
1123 for (; !(iep->ie_flag & NTFS_IEFLAG_LAST) && (rdsize > aoff);
1124 aoff += iep->reclen,
1125 iep = (struct attr_indexentry *) ((char *)rdbuf + aoff))
1127 if (!ntfs_isnamepermitted(ntmp, iep))
1135 *riepp = iep;