• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/ntfs/

Lines Matching refs:al_entry

839  * mft record in which @ctx->attr is located and @ctx->al_entry will point to
846 * @ctx->attr is located and @ctx->al_entry will point to the attribute list
854 * attribute list attribute at @ctx->al_entry.
866 ATTR_LIST_ENTRY *al_entry, *next_al_entry;
889 if (!ctx->al_entry)
890 ctx->al_entry = (ATTR_LIST_ENTRY*)al_start;
892 * Iterate over entries in attribute list starting at @ctx->al_entry,
896 al_entry = ctx->al_entry;
899 al_entry = (ATTR_LIST_ENTRY*)((u8*)ctx->al_entry +
900 le16_to_cpu(ctx->al_entry->length));
901 for (;; al_entry = next_al_entry) {
903 if ((u8*)al_entry < base_ni->attr_list ||
904 (u8*)al_entry > al_end)
906 ctx->al_entry = al_entry;
908 if ((u8*)al_entry == al_end)
910 if (!al_entry->length)
912 if ((u8*)al_entry + 6 > al_end || (u8*)al_entry +
913 le16_to_cpu(al_entry->length) > al_end)
915 next_al_entry = (ATTR_LIST_ENTRY*)((u8*)al_entry +
916 le16_to_cpu(al_entry->length));
917 if (le32_to_cpu(al_entry->type) > le32_to_cpu(type))
919 if (type != al_entry->type)
925 al_name_len = al_entry->name_length;
926 al_name = (ntfschar*)((u8*)al_entry + al_entry->name_offset);
966 next_al_entry->type == al_entry->type &&
975 if (MREF_LE(al_entry->mft_reference) == ni->mft_no) {
976 if (MSEQNO_LE(al_entry->mft_reference) != ni->seq_no) {
989 if (MREF_LE(al_entry->mft_reference) ==
997 al_entry->mft_reference), &ni);
1003 MREF_LE(al_entry->
1021 * current al_entry.
1046 if (al_entry->instance != a->instance)
1053 if (al_entry->type != a->type)
1108 * want to preserve @ctx->al_entry we cannot reinitialize the search
1110 * @ctx->al_entry to NULL. Thus we do the necessary bits manually (see
1112 * @ctx->al_entry as the remaining fields (base_*) are identical to
1167 * @ctx->mrec. If an attribute list attribute is present, @ctx->al_entry is
1173 * list attribute is present, @ctx->al_entry is the attribute list entry which
1246 ctx->al_entry = NULL;