Lines Matching defs:old_rl
760 * @old_rl: optional runlist in which to insert @attr's runlist
765 * If @old_rl is not NULL, decompressed runlist is inserted into the
766 * appropriate place in @old_rl and the resultant, combined runlist is
767 * returned. The original @old_rl is deallocated.
769 * On error, return NULL with errno set to the error code. @old_rl is left
784 const ATTR_RECORD *attr, runlist_element *old_rl)
835 if ((int)((rlpos + 3) * sizeof(*old_rl)) > rlsize) {
997 if (!old_rl || !old_rl[0].length) {
1000 if (old_rl)
1001 free(old_rl);
1006 old_rl = ntfs_runlists_merge(old_rl, rl);
1009 if (old_rl)
1010 return old_rl;
1025 const ATTR_RECORD *attr, runlist_element *old_rl)
1030 rle = ntfs_mapping_pairs_decompress_i(vol, attr, old_rl);