• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/

Lines Matching refs:al_entry

1891  * @ctx->mrec, and @ctx->al_entry is the attribute list entry for this
1900 * @ctx->al_entry points to the position within @ctx->base_ntfs_ino->attr_list
1904 * @ctx->al_entry is set to NULL also (see above).
1919 ATTR_LIST_ENTRY *al_entry, *next_al_entry;
1942 if (!ctx->al_entry) {
1943 ctx->al_entry = (ATTR_LIST_ENTRY*)al_start;
1947 * Iterate over entries in attribute list starting at @ctx->al_entry,
1951 al_entry = ctx->al_entry;
1959 le32_to_cpu(al_entry->type) >
1963 al_entry = (ATTR_LIST_ENTRY*)((char*)ctx->al_entry +
1964 le16_to_cpu(ctx->al_entry->length));
1971 if ((type == AT_UNUSED) && le32_to_cpu(ctx->al_entry->type) <
1973 le32_to_cpu(al_entry->type) >
2001 ctx->al_entry = al_entry;
2018 for (;; al_entry = next_al_entry) {
2020 if ((u8*)al_entry < base_ni->attr_list ||
2021 (u8*)al_entry > al_end)
2023 ctx->al_entry = al_entry;
2025 if ((u8*)al_entry == al_end)
2027 if (!al_entry->length)
2029 if ((u8*)al_entry + 6 > al_end || (u8*)al_entry +
2030 le16_to_cpu(al_entry->length) > al_end)
2032 next_al_entry = (ATTR_LIST_ENTRY*)((u8*)al_entry +
2033 le16_to_cpu(al_entry->length));
2035 if (le32_to_cpu(al_entry->type) > le32_to_cpu(type))
2037 if (type != al_entry->type)
2040 al_name_len = al_entry->name_length;
2041 al_name = (ntfschar*)((u8*)al_entry + al_entry->name_offset);
2101 next_al_entry->type == al_entry->type &&
2111 if (MREF_LE(al_entry->mft_reference) == ni->mft_no) {
2112 if (MSEQNO_LE(al_entry->mft_reference) !=
2121 if (MREF_LE(al_entry->mft_reference) ==
2128 al_entry->mft_reference);
2140 * current al_entry.
2162 if (al_entry->instance != a->instance)
2169 if (al_entry->type != a->type)
2217 * want to preserve @ctx->al_entry we cannot reinitialize the search
2219 * @ctx->al_entry to NULL. Thus we do the necessary bits manually (see
2221 * @ctx->al_entry as the remaining fields (base_*) are identical to
2296 * @ctx->mrec, and @ctx->al_entry is the attribute list entry for this
2298 * belongs. If no attribute list attribute is present @ctx->al_entry and
2306 * @ctx->al_entry points to the position within @ctx->base_ntfs_ino->attr_list
2310 * @ctx->al_entry is set to NULL also (see above).
2400 ctx->al_entry = NULL;
2427 ctx->al_entry = NULL;
3495 if (!ctx->al_entry) {
3543 ctx->al_entry->mft_reference =
3545 ctx->al_entry->instance = nctx->attr->instance;
4491 ctx->al_entry->lowest_vcn = cpu_to_sle64(stop_vcn);