/third_party/ntfs-3g/include/ntfs-3g/ |
D | runlist.h | 30 typedef runlist_element runlist; typedef 80 extern int ntfs_rl_truncate(runlist **arl, const VCN start_vcn); 82 extern int ntfs_rl_sparse(runlist *rl); 83 extern s64 ntfs_rl_get_compressed_size(ntfs_volume *vol, runlist *rl);
|
D | lcnalloc.h | 41 extern runlist *ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count, 44 extern int ntfs_cluster_free_from_rl(ntfs_volume *vol, runlist *rl);
|
D | Makefile.am | 37 runlist.h \
|
/third_party/ntfs-3g/ntfsprogs/ |
D | ntfsresize.c | 191 runlist *head_rl; 214 runlist mftmir_rl; /* $MFTMirr AT_DATA's new position */ 663 static void rl_set(runlist *rl, VCN vcn, LCN lcn, s64 len) in rl_set() 670 static int rl_items(runlist *rl) in rl_items() 687 static void dump_runlist(runlist *rl) in dump_runlist() 709 static void collect_resize_constraints(ntfs_resize_t *resize, runlist *rl) in collect_resize_constraints() 776 static void collect_relocation_info(ntfs_resize_t *resize, runlist *rl) in collect_relocation_info() 831 runlist *rl; in build_lcn_usage_bitmap() 1108 runlist *rl; in build_resize_constraints() 1175 static void rl_fixup(runlist **rl) in rl_fixup() [all …]
|
D | ntfsmove.c | 256 static int ntfs_debug_runlist_dump2(const runlist *rl, int abbr, char *prefix) 387 static runlist * find_unused(ntfs_volume *vol, s64 size, u64 loc in find_unused() 398 runlist *res = NULL; in find_unused() 670 runlist *from; in move_datarun() 671 runlist *to; in move_datarun() 765 runlist *runs; in move_attribute()
|
D | ntfsundelete.c | 932 if (d->runlist) in free_file() 933 free(d->runlist); in free_file() 1312 data->runlist = ntfs_mapping_pairs_decompress(vol, rec, NULL); in get_data() 1313 if (!data->runlist) { in get_data() 1486 rl = data->runlist; in calc_percentage() 1647 if ((!d->runlist) || (d->runlist[0].length <= 0)) { in dump_record() 1650 for (i = 0; d->runlist[i].length > 0; i++) { in dump_record() 1652 (long long)d->runlist[i].length, in dump_record() 1653 (long long)d->runlist[i].lcn); in dump_record() 2067 rl = d->runlist; in undelete_file()
|
D | mkntfs.c | 190 static runlist *g_rl_mft = NULL; 191 static runlist *g_rl_mft_bmp = NULL; 192 static runlist *g_rl_mftmirr = NULL; 193 static runlist *g_rl_logfile = NULL; 194 static runlist *g_rl_boot = NULL; 195 static runlist *g_rl_bad = NULL; 894 static s64 ntfs_rlwrite(struct ntfs_device *dev, const runlist *rl, in ntfs_rlwrite() 1040 static void deallocate_scattered_clusters(const runlist *rl) in deallocate_scattered_clusters() 1070 static runlist * allocate_scattered_clusters(s64 clusters) in allocate_scattered_clusters() 1072 runlist *rl = NULL, *rlt; in allocate_scattered_clusters() [all …]
|
D | ntfsundelete.h | 93 runlist_element *runlist; /* Decoded data runs */ member
|
D | cluster.c | 53 runlist *runs; in cluster_find()
|
D | ntfsck.c | 250 static runlist *load_runlist(ntfs_volume *rawvol, s64 offset_to_file_record, ATTR_TYPES attr_type, … in load_runlist() 333 static VCN get_last_vcn(runlist *rl) in get_last_vcn()
|
D | ntfsclone.c | 633 static s64 is_critical_metadata(ntfs_walk_clusters_ctx *image, runlist *rl) 1354 static void clone_logfile_parts(ntfs_walk_clusters_ctx *image, runlist *rl) 1503 static void copy_wipe_mft(ntfs_walk_clusters_ctx *image, runlist *rl) 1586 static void copy_wipe_i30(ntfs_walk_clusters_ctx *image, runlist *rl) 1660 static void dump_clusters(ntfs_walk_clusters_ctx *image, runlist *rl) 1687 runlist *rl; 2515 runlist *rl;
|
D | ntfsinfo.c | 1111 runlist *rl = ntfs_mapping_pairs_decompress(vol, attr, NULL); in ntfs_dump_attr_security_descriptor() 1431 runlist *rl; in ntfs_dump_attribute_header() 1435 runlist *rlc = rl; in ntfs_dump_attribute_header() 2095 runlist *rl; in ntfs_dump_attr_ea()
|
D | ntfswipe.c | 109 runlist_element *runlist; /* Decoded data runs */ member 1607 if (d->runlist != NULL) in free_file() 1608 free(d->runlist); in free_file()
|
D | ntfscluster.c | 393 runlist *runs; in dump_file()
|
/third_party/ntfs-3g/libntfs-3g/ |
D | lcnalloc.c | 235 runlist *ntfs_cluster_alloc(ntfs_volume *vol, VCN start_vcn, s64 count, in ntfs_cluster_alloc() 243 runlist *rl = NULL, *trl; in ntfs_cluster_alloc() 357 if ((rlpos + 2) * (int)sizeof(runlist) >= rlsize) { in ntfs_cluster_alloc() 578 int ntfs_cluster_free_from_rl(ntfs_volume *vol, runlist *rl) in ntfs_cluster_free_from_rl() 669 runlist *rl; in ntfs_cluster_free()
|
D | Makefile.am | 44 runlist.c \
|
D | runlist.c | 709 marker_vcn = ((runlist*)NULL)->lcn; in ntfs_runlists_merge_i() 1641 int ntfs_rl_truncate(runlist **arl, const VCN start_vcn) in ntfs_rl_truncate() 1643 runlist *rl; in ntfs_rl_truncate() 1717 int ntfs_rl_sparse(runlist *rl) in ntfs_rl_sparse() 1719 runlist *rlc; in ntfs_rl_sparse() 1746 s64 ntfs_rl_get_compressed_size(ntfs_volume *vol, runlist *rl) in ntfs_rl_get_compressed_size() 1748 runlist *rlc; in ntfs_rl_get_compressed_size()
|
D | BUILD.gn | 62 "runlist.c",
|
D | attrib.c | 151 runlist *rl; in ntfs_get_attribute_value() 1308 runlist *rlc; in ntfs_attr_fill_hole() 4455 runlist *al_rl; 5111 runlist *rl; 6506 runlist *rl, *rln;
|
D | dir.c | 2107 runlist *rl; in ntfs_delete()
|