├── .codecov.yml ├── .github └── workflows │ ├── build.yml │ ├── build_freebsd.yml │ ├── build_ossfuzz.yml │ └── build_shared.yml ├── .gitignore ├── AUTHORS ├── COPYING ├── COPYING.LESSER ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── acinclude.m4 ├── appveyor.yml ├── autogen.ps1 ├── autogen.sh ├── common ├── Makefile.am ├── byte_stream.h ├── common.h ├── config_borlandc.h ├── config_msc.h ├── config_winapi.h ├── file_stream.h ├── memory.h ├── narrow_string.h ├── system_string.h ├── types.h.in └── wide_string.h ├── configure.ac ├── documentation └── Resilient File System (ReFS).asciidoc ├── dpkg ├── changelog.in ├── compat ├── control ├── copyright ├── libfsrefs-dev.install ├── libfsrefs-tools.install ├── libfsrefs.install ├── rules └── source │ └── format ├── fsrefstools ├── Makefile.am ├── fsrefsinfo.c ├── fsrefstools_getopt.c ├── fsrefstools_getopt.h ├── fsrefstools_i18n.h ├── fsrefstools_libbfio.h ├── fsrefstools_libcerror.h ├── fsrefstools_libclocale.h ├── fsrefstools_libcnotify.h ├── fsrefstools_libfcache.h ├── fsrefstools_libfdata.h ├── fsrefstools_libfdatetime.h ├── fsrefstools_libfguid.h ├── fsrefstools_libfsrefs.h ├── fsrefstools_libfwnt.h ├── fsrefstools_libuna.h ├── fsrefstools_output.c ├── fsrefstools_output.h ├── fsrefstools_signal.c ├── fsrefstools_signal.h ├── fsrefstools_unused.h ├── info_handle.c └── info_handle.h ├── include ├── Makefile.am ├── libfsrefs.h.in └── libfsrefs │ ├── codepage.h │ ├── definitions.h.in │ ├── error.h │ ├── extern.h │ ├── features.h.in │ └── types.h.in ├── libfsrefs.ini ├── libfsrefs.pc.in ├── libfsrefs.spec.in ├── libfsrefs ├── Makefile.am ├── fsrefs_checkpoint.h ├── fsrefs_directory_object.h ├── fsrefs_metadata_block.h ├── fsrefs_ministore_tree.h ├── fsrefs_superblock.h ├── fsrefs_volume_header.h ├── libfsrefs.c ├── libfsrefs.rc.in ├── libfsrefs_attribute_values.c ├── libfsrefs_attribute_values.h ├── libfsrefs_block_descriptor.c ├── libfsrefs_block_descriptor.h ├── libfsrefs_block_reference.c ├── libfsrefs_block_reference.h ├── libfsrefs_block_tree.c ├── libfsrefs_block_tree.h ├── libfsrefs_block_tree_node.c ├── libfsrefs_block_tree_node.h ├── libfsrefs_checkpoint.c ├── libfsrefs_checkpoint.h ├── libfsrefs_data_run.c ├── libfsrefs_data_run.h ├── libfsrefs_debug.c ├── libfsrefs_debug.h ├── libfsrefs_definitions.h.in ├── libfsrefs_directory_entry.c ├── libfsrefs_directory_entry.h ├── libfsrefs_directory_object.c ├── libfsrefs_directory_object.h ├── libfsrefs_error.c ├── libfsrefs_error.h ├── libfsrefs_extern.h ├── libfsrefs_file_entry.c ├── libfsrefs_file_entry.h ├── libfsrefs_file_system.c ├── libfsrefs_file_system.h ├── libfsrefs_io_handle.c ├── libfsrefs_io_handle.h ├── libfsrefs_libbfio.h ├── libfsrefs_libcdata.h ├── libfsrefs_libcerror.h ├── libfsrefs_libclocale.h ├── libfsrefs_libcnotify.h ├── libfsrefs_libcthreads.h ├── libfsrefs_libfcache.h ├── libfsrefs_libfdata.h ├── libfsrefs_libfdatetime.h ├── libfsrefs_libfguid.h ├── libfsrefs_libfwnt.h ├── libfsrefs_libuna.h ├── libfsrefs_metadata_block_header.c ├── libfsrefs_metadata_block_header.h ├── libfsrefs_ministore_node.c ├── libfsrefs_ministore_node.h ├── libfsrefs_node_header.c ├── libfsrefs_node_header.h ├── libfsrefs_node_record.c ├── libfsrefs_node_record.h ├── libfsrefs_notify.c ├── libfsrefs_notify.h ├── libfsrefs_objects_tree.c ├── libfsrefs_objects_tree.h ├── libfsrefs_superblock.c ├── libfsrefs_superblock.h ├── libfsrefs_support.c ├── libfsrefs_support.h ├── libfsrefs_tree_header.c ├── libfsrefs_tree_header.h ├── libfsrefs_types.h ├── libfsrefs_unused.h ├── libfsrefs_volume.c ├── libfsrefs_volume.h ├── libfsrefs_volume_header.c └── libfsrefs_volume_header.h ├── m4 ├── common.m4 ├── libbfio.m4 ├── libcdata.m4 ├── libcerror.m4 ├── libcfile.m4 ├── libclocale.m4 ├── libcnotify.m4 ├── libcpath.m4 ├── libcsplit.m4 ├── libcthreads.m4 ├── libfcache.m4 ├── libfdata.m4 ├── libfdatetime.m4 ├── libfguid.m4 ├── libfusn.m4 ├── libfwnt.m4 ├── libuna.m4 ├── pthread.m4 ├── tests.m4 └── types.m4 ├── manuals ├── Makefile.am ├── fsrefsinfo.1 └── libfsrefs.3 ├── msvscpp ├── Makefile.am ├── fsrefs_test_attribute_values │ └── fsrefs_test_attribute_values.vcproj ├── fsrefs_test_block_descriptor │ └── fsrefs_test_block_descriptor.vcproj ├── fsrefs_test_block_reference │ └── fsrefs_test_block_reference.vcproj ├── fsrefs_test_block_tree │ └── fsrefs_test_block_tree.vcproj ├── fsrefs_test_block_tree_node │ └── fsrefs_test_block_tree_node.vcproj ├── fsrefs_test_checkpoint │ └── fsrefs_test_checkpoint.vcproj ├── fsrefs_test_data_run │ └── fsrefs_test_data_run.vcproj ├── fsrefs_test_directory_entry │ └── fsrefs_test_directory_entry.vcproj ├── fsrefs_test_directory_object │ └── fsrefs_test_directory_object.vcproj ├── fsrefs_test_error │ └── fsrefs_test_error.vcproj ├── fsrefs_test_file_entry │ └── fsrefs_test_file_entry.vcproj ├── fsrefs_test_file_system │ └── fsrefs_test_file_system.vcproj ├── fsrefs_test_io_handle │ └── fsrefs_test_io_handle.vcproj ├── fsrefs_test_metadata_block_header │ └── fsrefs_test_metadata_block_header.vcproj ├── fsrefs_test_ministore_node │ └── fsrefs_test_ministore_node.vcproj ├── fsrefs_test_node_header │ └── fsrefs_test_node_header.vcproj ├── fsrefs_test_node_record │ └── fsrefs_test_node_record.vcproj ├── fsrefs_test_notify │ └── fsrefs_test_notify.vcproj ├── fsrefs_test_objects_tree │ └── fsrefs_test_objects_tree.vcproj ├── fsrefs_test_superblock │ └── fsrefs_test_superblock.vcproj ├── fsrefs_test_support │ └── fsrefs_test_support.vcproj ├── fsrefs_test_tools_info_handle │ └── fsrefs_test_tools_info_handle.vcproj ├── fsrefs_test_tools_output │ └── fsrefs_test_tools_output.vcproj ├── fsrefs_test_tools_signal │ └── fsrefs_test_tools_signal.vcproj ├── fsrefs_test_tree_header │ └── fsrefs_test_tree_header.vcproj ├── fsrefs_test_volume │ └── fsrefs_test_volume.vcproj ├── fsrefs_test_volume_header │ └── fsrefs_test_volume_header.vcproj ├── fsrefsinfo │ └── fsrefsinfo.vcproj ├── libbfio │ └── libbfio.vcproj ├── libcdata │ └── libcdata.vcproj ├── libcerror │ └── libcerror.vcproj ├── libcfile │ └── libcfile.vcproj ├── libclocale │ └── libclocale.vcproj ├── libcnotify │ └── libcnotify.vcproj ├── libcpath │ └── libcpath.vcproj ├── libcsplit │ └── libcsplit.vcproj ├── libcthreads │ └── libcthreads.vcproj ├── libfcache │ └── libfcache.vcproj ├── libfdata │ └── libfdata.vcproj ├── libfdatetime │ └── libfdatetime.vcproj ├── libfguid │ └── libfguid.vcproj ├── libfsrefs.sln ├── libfsrefs │ └── libfsrefs.vcproj ├── libfusn │ └── libfusn.vcproj ├── libfwnt │ └── libfwnt.vcproj └── libuna │ └── libuna.vcproj ├── ossfuzz ├── Makefile.am ├── ossfuzz_libbfio.h ├── ossfuzz_libfsrefs.h └── volume_fuzzer.cc ├── po ├── ChangeLog ├── Makevars.in └── POTFILES.in ├── runtests.ps1 ├── runtests.sh ├── synclibs.ps1 ├── synclibs.sh └── tests ├── Makefile.am ├── build.sh ├── data ├── block_descriptor.1 ├── block_descriptor.2 ├── checkpoint.1 ├── checkpoint.2 ├── data_run.1 ├── node_header.1 ├── node_record.1 ├── superblock.1 ├── superblock.2 ├── tree_header.1 └── volume_header.1 ├── fsrefs_test_attribute_values.c ├── fsrefs_test_block_descriptor.c ├── fsrefs_test_block_reference.c ├── fsrefs_test_block_tree.c ├── fsrefs_test_block_tree_node.c ├── fsrefs_test_checkpoint.c ├── fsrefs_test_data_run.c ├── fsrefs_test_directory_entry.c ├── fsrefs_test_directory_object.c ├── fsrefs_test_error.c ├── fsrefs_test_file_entry.c ├── fsrefs_test_file_system.c ├── fsrefs_test_functions.c ├── fsrefs_test_functions.h ├── fsrefs_test_getopt.c ├── fsrefs_test_getopt.h ├── fsrefs_test_io_handle.c ├── fsrefs_test_libbfio.h ├── fsrefs_test_libcerror.h ├── fsrefs_test_libclocale.h ├── fsrefs_test_libcnotify.h ├── fsrefs_test_libfsrefs.h ├── fsrefs_test_libuna.h ├── fsrefs_test_macros.h ├── fsrefs_test_memory.c ├── fsrefs_test_memory.h ├── fsrefs_test_metadata_block_header.c ├── fsrefs_test_ministore_node.c ├── fsrefs_test_ministore_tree.c ├── fsrefs_test_node_header.c ├── fsrefs_test_node_record.c ├── fsrefs_test_notify.c ├── fsrefs_test_objects_tree.c ├── fsrefs_test_superblock.c ├── fsrefs_test_support.c ├── fsrefs_test_tools_info_handle.c ├── fsrefs_test_tools_output.c ├── fsrefs_test_tools_signal.c ├── fsrefs_test_tree_header.c ├── fsrefs_test_unused.h ├── fsrefs_test_volume.c ├── fsrefs_test_volume_header.c ├── lsan.suppressions ├── pkgbuild.sh ├── runtests.sh ├── syncsharedlibs.sh ├── test_fsrefsinfo.ps1 ├── test_fsrefsinfo.sh ├── test_library.ps1 ├── test_library.sh ├── test_manpage.sh ├── test_runner.sh ├── test_tools.ps1 └── test_tools.sh /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/.github/workflows/build_freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/build_ossfuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/.github/workflows/build_ossfuzz.yml -------------------------------------------------------------------------------- /.github/workflows/build_shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/.github/workflows/build_shared.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/README -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autogen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/autogen.ps1 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/Makefile.am -------------------------------------------------------------------------------- /common/byte_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/byte_stream.h -------------------------------------------------------------------------------- /common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/common.h -------------------------------------------------------------------------------- /common/config_borlandc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/config_borlandc.h -------------------------------------------------------------------------------- /common/config_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/config_msc.h -------------------------------------------------------------------------------- /common/config_winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/config_winapi.h -------------------------------------------------------------------------------- /common/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/file_stream.h -------------------------------------------------------------------------------- /common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/memory.h -------------------------------------------------------------------------------- /common/narrow_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/narrow_string.h -------------------------------------------------------------------------------- /common/system_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/system_string.h -------------------------------------------------------------------------------- /common/types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/types.h.in -------------------------------------------------------------------------------- /common/wide_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/common/wide_string.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/configure.ac -------------------------------------------------------------------------------- /documentation/Resilient File System (ReFS).asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/documentation/Resilient File System (ReFS).asciidoc -------------------------------------------------------------------------------- /dpkg/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/dpkg/changelog.in -------------------------------------------------------------------------------- /dpkg/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /dpkg/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/dpkg/control -------------------------------------------------------------------------------- /dpkg/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/dpkg/copyright -------------------------------------------------------------------------------- /dpkg/libfsrefs-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/dpkg/libfsrefs-dev.install -------------------------------------------------------------------------------- /dpkg/libfsrefs-tools.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/dpkg/libfsrefs-tools.install -------------------------------------------------------------------------------- /dpkg/libfsrefs.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/dpkg/libfsrefs.install -------------------------------------------------------------------------------- /dpkg/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/dpkg/rules -------------------------------------------------------------------------------- /dpkg/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /fsrefstools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/Makefile.am -------------------------------------------------------------------------------- /fsrefstools/fsrefsinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefsinfo.c -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_getopt.c -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_getopt.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_i18n.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libbfio.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libcerror.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libclocale.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libcnotify.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libfcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libfcache.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libfdata.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libfdatetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libfdatetime.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libfguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libfguid.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libfsrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libfsrefs.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libfwnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libfwnt.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_libuna.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_output.c -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_output.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_signal.c -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_signal.h -------------------------------------------------------------------------------- /fsrefstools/fsrefstools_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/fsrefstools_unused.h -------------------------------------------------------------------------------- /fsrefstools/info_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/info_handle.c -------------------------------------------------------------------------------- /fsrefstools/info_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/fsrefstools/info_handle.h -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/libfsrefs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/include/libfsrefs.h.in -------------------------------------------------------------------------------- /include/libfsrefs/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/include/libfsrefs/codepage.h -------------------------------------------------------------------------------- /include/libfsrefs/definitions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/include/libfsrefs/definitions.h.in -------------------------------------------------------------------------------- /include/libfsrefs/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/include/libfsrefs/error.h -------------------------------------------------------------------------------- /include/libfsrefs/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/include/libfsrefs/extern.h -------------------------------------------------------------------------------- /include/libfsrefs/features.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/include/libfsrefs/features.h.in -------------------------------------------------------------------------------- /include/libfsrefs/types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/include/libfsrefs/types.h.in -------------------------------------------------------------------------------- /libfsrefs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs.ini -------------------------------------------------------------------------------- /libfsrefs.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs.pc.in -------------------------------------------------------------------------------- /libfsrefs.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs.spec.in -------------------------------------------------------------------------------- /libfsrefs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/Makefile.am -------------------------------------------------------------------------------- /libfsrefs/fsrefs_checkpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/fsrefs_checkpoint.h -------------------------------------------------------------------------------- /libfsrefs/fsrefs_directory_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/fsrefs_directory_object.h -------------------------------------------------------------------------------- /libfsrefs/fsrefs_metadata_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/fsrefs_metadata_block.h -------------------------------------------------------------------------------- /libfsrefs/fsrefs_ministore_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/fsrefs_ministore_tree.h -------------------------------------------------------------------------------- /libfsrefs/fsrefs_superblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/fsrefs_superblock.h -------------------------------------------------------------------------------- /libfsrefs/fsrefs_volume_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/fsrefs_volume_header.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs.rc.in -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_attribute_values.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_attribute_values.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_attribute_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_attribute_values.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_block_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_block_descriptor.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_block_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_block_descriptor.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_block_reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_block_reference.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_block_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_block_reference.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_block_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_block_tree.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_block_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_block_tree.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_block_tree_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_block_tree_node.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_block_tree_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_block_tree_node.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_checkpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_checkpoint.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_checkpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_checkpoint.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_data_run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_data_run.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_data_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_data_run.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_debug.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_debug.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_definitions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_definitions.h.in -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_directory_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_directory_entry.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_directory_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_directory_entry.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_directory_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_directory_object.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_directory_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_directory_object.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_error.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_error.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_extern.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_file_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_file_entry.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_file_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_file_entry.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_file_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_file_system.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_file_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_file_system.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_io_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_io_handle.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_io_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_io_handle.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libbfio.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libcdata.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libcerror.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libclocale.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libcnotify.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libcthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libcthreads.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libfcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libfcache.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libfdata.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libfdatetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libfdatetime.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libfguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libfguid.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libfwnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libfwnt.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_libuna.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_metadata_block_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_metadata_block_header.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_metadata_block_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_metadata_block_header.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_ministore_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_ministore_node.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_ministore_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_ministore_node.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_node_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_node_header.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_node_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_node_header.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_node_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_node_record.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_node_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_node_record.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_notify.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_notify.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_objects_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_objects_tree.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_objects_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_objects_tree.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_superblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_superblock.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_superblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_superblock.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_support.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_support.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_tree_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_tree_header.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_tree_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_tree_header.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_types.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_unused.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_volume.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_volume.h -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_volume_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_volume_header.c -------------------------------------------------------------------------------- /libfsrefs/libfsrefs_volume_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/libfsrefs/libfsrefs_volume_header.h -------------------------------------------------------------------------------- /m4/common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/common.m4 -------------------------------------------------------------------------------- /m4/libbfio.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libbfio.m4 -------------------------------------------------------------------------------- /m4/libcdata.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libcdata.m4 -------------------------------------------------------------------------------- /m4/libcerror.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libcerror.m4 -------------------------------------------------------------------------------- /m4/libcfile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libcfile.m4 -------------------------------------------------------------------------------- /m4/libclocale.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libclocale.m4 -------------------------------------------------------------------------------- /m4/libcnotify.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libcnotify.m4 -------------------------------------------------------------------------------- /m4/libcpath.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libcpath.m4 -------------------------------------------------------------------------------- /m4/libcsplit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libcsplit.m4 -------------------------------------------------------------------------------- /m4/libcthreads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libcthreads.m4 -------------------------------------------------------------------------------- /m4/libfcache.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libfcache.m4 -------------------------------------------------------------------------------- /m4/libfdata.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libfdata.m4 -------------------------------------------------------------------------------- /m4/libfdatetime.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libfdatetime.m4 -------------------------------------------------------------------------------- /m4/libfguid.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libfguid.m4 -------------------------------------------------------------------------------- /m4/libfusn.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libfusn.m4 -------------------------------------------------------------------------------- /m4/libfwnt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libfwnt.m4 -------------------------------------------------------------------------------- /m4/libuna.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/libuna.m4 -------------------------------------------------------------------------------- /m4/pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/pthread.m4 -------------------------------------------------------------------------------- /m4/tests.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/tests.m4 -------------------------------------------------------------------------------- /m4/types.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/m4/types.m4 -------------------------------------------------------------------------------- /manuals/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/manuals/Makefile.am -------------------------------------------------------------------------------- /manuals/fsrefsinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/manuals/fsrefsinfo.1 -------------------------------------------------------------------------------- /manuals/libfsrefs.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/manuals/libfsrefs.3 -------------------------------------------------------------------------------- /msvscpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/Makefile.am -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_attribute_values/fsrefs_test_attribute_values.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_attribute_values/fsrefs_test_attribute_values.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_block_descriptor/fsrefs_test_block_descriptor.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_block_descriptor/fsrefs_test_block_descriptor.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_block_reference/fsrefs_test_block_reference.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_block_reference/fsrefs_test_block_reference.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_block_tree/fsrefs_test_block_tree.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_block_tree/fsrefs_test_block_tree.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_block_tree_node/fsrefs_test_block_tree_node.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_block_tree_node/fsrefs_test_block_tree_node.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_checkpoint/fsrefs_test_checkpoint.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_checkpoint/fsrefs_test_checkpoint.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_data_run/fsrefs_test_data_run.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_data_run/fsrefs_test_data_run.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_directory_entry/fsrefs_test_directory_entry.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_directory_entry/fsrefs_test_directory_entry.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_directory_object/fsrefs_test_directory_object.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_directory_object/fsrefs_test_directory_object.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_error/fsrefs_test_error.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_error/fsrefs_test_error.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_file_entry/fsrefs_test_file_entry.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_file_entry/fsrefs_test_file_entry.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_file_system/fsrefs_test_file_system.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_file_system/fsrefs_test_file_system.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_io_handle/fsrefs_test_io_handle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_io_handle/fsrefs_test_io_handle.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_metadata_block_header/fsrefs_test_metadata_block_header.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_metadata_block_header/fsrefs_test_metadata_block_header.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_ministore_node/fsrefs_test_ministore_node.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_ministore_node/fsrefs_test_ministore_node.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_node_header/fsrefs_test_node_header.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_node_header/fsrefs_test_node_header.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_node_record/fsrefs_test_node_record.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_node_record/fsrefs_test_node_record.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_notify/fsrefs_test_notify.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_notify/fsrefs_test_notify.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_objects_tree/fsrefs_test_objects_tree.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_objects_tree/fsrefs_test_objects_tree.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_superblock/fsrefs_test_superblock.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_superblock/fsrefs_test_superblock.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_support/fsrefs_test_support.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_support/fsrefs_test_support.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_tools_info_handle/fsrefs_test_tools_info_handle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_tools_info_handle/fsrefs_test_tools_info_handle.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_tools_output/fsrefs_test_tools_output.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_tools_output/fsrefs_test_tools_output.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_tools_signal/fsrefs_test_tools_signal.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_tools_signal/fsrefs_test_tools_signal.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_tree_header/fsrefs_test_tree_header.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_tree_header/fsrefs_test_tree_header.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_volume/fsrefs_test_volume.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_volume/fsrefs_test_volume.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefs_test_volume_header/fsrefs_test_volume_header.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefs_test_volume_header/fsrefs_test_volume_header.vcproj -------------------------------------------------------------------------------- /msvscpp/fsrefsinfo/fsrefsinfo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/fsrefsinfo/fsrefsinfo.vcproj -------------------------------------------------------------------------------- /msvscpp/libbfio/libbfio.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libbfio/libbfio.vcproj -------------------------------------------------------------------------------- /msvscpp/libcdata/libcdata.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libcdata/libcdata.vcproj -------------------------------------------------------------------------------- /msvscpp/libcerror/libcerror.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libcerror/libcerror.vcproj -------------------------------------------------------------------------------- /msvscpp/libcfile/libcfile.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libcfile/libcfile.vcproj -------------------------------------------------------------------------------- /msvscpp/libclocale/libclocale.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libclocale/libclocale.vcproj -------------------------------------------------------------------------------- /msvscpp/libcnotify/libcnotify.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libcnotify/libcnotify.vcproj -------------------------------------------------------------------------------- /msvscpp/libcpath/libcpath.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libcpath/libcpath.vcproj -------------------------------------------------------------------------------- /msvscpp/libcsplit/libcsplit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libcsplit/libcsplit.vcproj -------------------------------------------------------------------------------- /msvscpp/libcthreads/libcthreads.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libcthreads/libcthreads.vcproj -------------------------------------------------------------------------------- /msvscpp/libfcache/libfcache.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libfcache/libfcache.vcproj -------------------------------------------------------------------------------- /msvscpp/libfdata/libfdata.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libfdata/libfdata.vcproj -------------------------------------------------------------------------------- /msvscpp/libfdatetime/libfdatetime.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libfdatetime/libfdatetime.vcproj -------------------------------------------------------------------------------- /msvscpp/libfguid/libfguid.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libfguid/libfguid.vcproj -------------------------------------------------------------------------------- /msvscpp/libfsrefs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libfsrefs.sln -------------------------------------------------------------------------------- /msvscpp/libfsrefs/libfsrefs.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libfsrefs/libfsrefs.vcproj -------------------------------------------------------------------------------- /msvscpp/libfusn/libfusn.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libfusn/libfusn.vcproj -------------------------------------------------------------------------------- /msvscpp/libfwnt/libfwnt.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libfwnt/libfwnt.vcproj -------------------------------------------------------------------------------- /msvscpp/libuna/libuna.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/msvscpp/libuna/libuna.vcproj -------------------------------------------------------------------------------- /ossfuzz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/ossfuzz/Makefile.am -------------------------------------------------------------------------------- /ossfuzz/ossfuzz_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/ossfuzz/ossfuzz_libbfio.h -------------------------------------------------------------------------------- /ossfuzz/ossfuzz_libfsrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/ossfuzz/ossfuzz_libfsrefs.h -------------------------------------------------------------------------------- /ossfuzz/volume_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/ossfuzz/volume_fuzzer.cc -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/po/Makevars.in -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | # List of source files which contain translatable strings. 2 | -------------------------------------------------------------------------------- /runtests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/runtests.ps1 -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/runtests.sh -------------------------------------------------------------------------------- /synclibs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/synclibs.ps1 -------------------------------------------------------------------------------- /synclibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/synclibs.sh -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/build.sh -------------------------------------------------------------------------------- /tests/data/block_descriptor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/block_descriptor.1 -------------------------------------------------------------------------------- /tests/data/block_descriptor.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/block_descriptor.2 -------------------------------------------------------------------------------- /tests/data/checkpoint.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/checkpoint.1 -------------------------------------------------------------------------------- /tests/data/checkpoint.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/checkpoint.2 -------------------------------------------------------------------------------- /tests/data/data_run.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/data_run.1 -------------------------------------------------------------------------------- /tests/data/node_header.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/node_header.1 -------------------------------------------------------------------------------- /tests/data/node_record.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/node_record.1 -------------------------------------------------------------------------------- /tests/data/superblock.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/superblock.1 -------------------------------------------------------------------------------- /tests/data/superblock.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/superblock.2 -------------------------------------------------------------------------------- /tests/data/tree_header.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/tree_header.1 -------------------------------------------------------------------------------- /tests/data/volume_header.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/data/volume_header.1 -------------------------------------------------------------------------------- /tests/fsrefs_test_attribute_values.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_attribute_values.c -------------------------------------------------------------------------------- /tests/fsrefs_test_block_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_block_descriptor.c -------------------------------------------------------------------------------- /tests/fsrefs_test_block_reference.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_block_reference.c -------------------------------------------------------------------------------- /tests/fsrefs_test_block_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_block_tree.c -------------------------------------------------------------------------------- /tests/fsrefs_test_block_tree_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_block_tree_node.c -------------------------------------------------------------------------------- /tests/fsrefs_test_checkpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_checkpoint.c -------------------------------------------------------------------------------- /tests/fsrefs_test_data_run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_data_run.c -------------------------------------------------------------------------------- /tests/fsrefs_test_directory_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_directory_entry.c -------------------------------------------------------------------------------- /tests/fsrefs_test_directory_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_directory_object.c -------------------------------------------------------------------------------- /tests/fsrefs_test_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_error.c -------------------------------------------------------------------------------- /tests/fsrefs_test_file_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_file_entry.c -------------------------------------------------------------------------------- /tests/fsrefs_test_file_system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_file_system.c -------------------------------------------------------------------------------- /tests/fsrefs_test_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_functions.c -------------------------------------------------------------------------------- /tests/fsrefs_test_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_functions.h -------------------------------------------------------------------------------- /tests/fsrefs_test_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_getopt.c -------------------------------------------------------------------------------- /tests/fsrefs_test_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_getopt.h -------------------------------------------------------------------------------- /tests/fsrefs_test_io_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_io_handle.c -------------------------------------------------------------------------------- /tests/fsrefs_test_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_libbfio.h -------------------------------------------------------------------------------- /tests/fsrefs_test_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_libcerror.h -------------------------------------------------------------------------------- /tests/fsrefs_test_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_libclocale.h -------------------------------------------------------------------------------- /tests/fsrefs_test_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_libcnotify.h -------------------------------------------------------------------------------- /tests/fsrefs_test_libfsrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_libfsrefs.h -------------------------------------------------------------------------------- /tests/fsrefs_test_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_libuna.h -------------------------------------------------------------------------------- /tests/fsrefs_test_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_macros.h -------------------------------------------------------------------------------- /tests/fsrefs_test_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_memory.c -------------------------------------------------------------------------------- /tests/fsrefs_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_memory.h -------------------------------------------------------------------------------- /tests/fsrefs_test_metadata_block_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_metadata_block_header.c -------------------------------------------------------------------------------- /tests/fsrefs_test_ministore_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_ministore_node.c -------------------------------------------------------------------------------- /tests/fsrefs_test_ministore_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_ministore_tree.c -------------------------------------------------------------------------------- /tests/fsrefs_test_node_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_node_header.c -------------------------------------------------------------------------------- /tests/fsrefs_test_node_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_node_record.c -------------------------------------------------------------------------------- /tests/fsrefs_test_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_notify.c -------------------------------------------------------------------------------- /tests/fsrefs_test_objects_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_objects_tree.c -------------------------------------------------------------------------------- /tests/fsrefs_test_superblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_superblock.c -------------------------------------------------------------------------------- /tests/fsrefs_test_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_support.c -------------------------------------------------------------------------------- /tests/fsrefs_test_tools_info_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_tools_info_handle.c -------------------------------------------------------------------------------- /tests/fsrefs_test_tools_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_tools_output.c -------------------------------------------------------------------------------- /tests/fsrefs_test_tools_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_tools_signal.c -------------------------------------------------------------------------------- /tests/fsrefs_test_tree_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_tree_header.c -------------------------------------------------------------------------------- /tests/fsrefs_test_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_unused.h -------------------------------------------------------------------------------- /tests/fsrefs_test_volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_volume.c -------------------------------------------------------------------------------- /tests/fsrefs_test_volume_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/fsrefs_test_volume_header.c -------------------------------------------------------------------------------- /tests/lsan.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/lsan.suppressions -------------------------------------------------------------------------------- /tests/pkgbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/pkgbuild.sh -------------------------------------------------------------------------------- /tests/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/runtests.sh -------------------------------------------------------------------------------- /tests/syncsharedlibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/syncsharedlibs.sh -------------------------------------------------------------------------------- /tests/test_fsrefsinfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/test_fsrefsinfo.ps1 -------------------------------------------------------------------------------- /tests/test_fsrefsinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/test_fsrefsinfo.sh -------------------------------------------------------------------------------- /tests/test_library.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/test_library.ps1 -------------------------------------------------------------------------------- /tests/test_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/test_library.sh -------------------------------------------------------------------------------- /tests/test_manpage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/test_manpage.sh -------------------------------------------------------------------------------- /tests/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/test_runner.sh -------------------------------------------------------------------------------- /tests/test_tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/test_tools.ps1 -------------------------------------------------------------------------------- /tests/test_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfsrefs/HEAD/tests/test_tools.sh --------------------------------------------------------------------------------