Searched refs:iep (Results 1 - 5 of 5) sorted by relevance

/netbsd-6-1-5-RELEASE/sys/fs/ntfs/
H A Dntfs_vnops.c569 struct attr_indexentry *iep; local
574 error = ntfs_ntreaddir(ntmp, fp, num, &iep);
578 if (NULL == iep)
581 for(; !(iep->ie_flag & NTFS_IEFLAG_LAST) && (uio->uio_resid >= sizeof(struct dirent));
582 iep = NTFS_NEXTREC(iep, struct attr_indexentry *))
584 if(!ntfs_isnamepermitted(ntmp,iep))
589 for(i=0; i<iep->ie_fnamelen; i++) {
591 iep->ie_fname[i]);
597 num, cde->d_name, iep
[all...]
H A Dntfs_subr.c880 struct attr_indexentry *iep; local
933 iep = (struct attr_indexentry *) ((char *)rdbuf + aoff);
935 for (; !(iep->ie_flag & NTFS_IEFLAG_LAST) && (rdsize > aoff);
936 aoff += iep->reclen,
937 iep = (struct attr_indexentry *) ((char *)rdbuf + aoff))
940 (u_int32_t) iep->ie_number,
941 (u_int32_t) iep->ie_fnametype));
946 res = ntfs_uastricmp(ntmp, iep->ie_fname,
947 iep->ie_fnamelen, fname, fnamelen);
953 if (iep
1135 ntfs_isnamepermitted( struct ntfsmount * ntmp, struct attr_indexentry * iep) argument
1183 struct attr_indexentry *iep; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/x86/x86/
H A Dmpbios.c502 const struct mpbios_int *iep; local
607 iep = (const struct mpbios_int *)position;
608 if (iep->dst_apic_id == MPS_ALL_APICS)
653 iep = (const struct mpbios_int *)position;
654 ie = *iep;
655 if (iep->dst_apic_id == MPS_ALL_APICS) {
/netbsd-6-1-5-RELEASE/sys/net80211/
H A Dieee80211_input.c1758 ieee80211_saveie(u_int8_t **iep, const u_int8_t *ie) argument
1764 if (*iep == NULL || (*iep)[1] != ie[1]) {
1765 if (*iep != NULL)
1766 free(*iep, M_DEVBUF);
1767 *iep = malloc(ielen, M_DEVBUF, M_NOWAIT);
1769 if (*iep != NULL)
1770 memcpy(*iep, ie, ielen);
H A Dieee80211_node.c1221 saveie(u_int8_t **iep, const u_int8_t *ie) argument
1225 *iep = NULL;
1227 ieee80211_saveie(iep, ie);

Completed in 89 milliseconds