Lines Matching defs:runs
53 runlist *runs;
81 runs = ntfs_mapping_pairs_decompress(vol, a_ctx->attr, NULL);
82 if (!runs) {
83 ntfs_log_error("Couldn't read the data runs.\n");
91 for (j = 0; runs[j].length > 0; j++) {
92 LCN a_begin = runs[j].lcn;
93 LCN a_end = a_begin + runs[j].length - 1;
99 (long long)runs[j].vcn,
100 (long long)runs[j].lcn,
101 (long long)(runs[j].lcn +
102 runs[j].length - 1),
103 (long long)runs[j].length);
109 if ((*cb) (m_ctx->inode, a_ctx->attr, runs+j, data))