Home
last modified time | relevance | path

Searched refs:AttrListItem (Results 1 – 1 of 1) sorted by relevance

/reactos/drivers/filesystems/ntfs/
H A Dmft.c143 PNTFS_ATTRIBUTE_LIST_ITEM AttrListItem; in FindAttribute() local
189 Status = FindFirstAttributeListItem(&Context, &AttrListItem); in FindAttribute()
192 if (AttrListItem->Type == Type && AttrListItem->NameLength == NameLength) in FindAttribute()
198 AttrName = (PWCHAR)((PCHAR)AttrListItem + AttrListItem->NameOffset); in FindAttribute()
199 DPRINT("%.*S, %.*S\n", AttrListItem->NameLength, AttrName, NameLength, Name); in FindAttribute()
216 MftIndex = AttrListItem->MFTIndex & NTFS_MFT_MASK; in FindAttribute()
241 Status = FindNextAttributeListItem(&Context, &AttrListItem); in FindAttribute()