/src/sys/fs/ntfs/ |
ntfs_vnops.c | 575 struct attr_indexentry *iep; local in function:ntfs_readdir 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 [all...] |
ntfs_subr.c | 776 struct attr_indexentry *iep; local in function:ntfs_ntlookupfile 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 | 1034 struct attr_indexentry *iep; local in function:ntfs_ntreaddir [all...] |
/src/sys/arch/x86/x86/ |
mpbios.c | 607 const struct mpbios_int *iep; local in function:mpbios_scan 753 iep = (const struct mpbios_int *)position; 754 if (iep->dst_apic_id == MPS_ALL_APICS) 803 iep = (const struct mpbios_int *)position; 804 ie = *iep; 805 if (iep->dst_apic_id == MPS_ALL_APICS) {
|