├── .codecov.yml ├── .github └── workflows │ ├── build.yml │ ├── build_freebsd.yml │ ├── build_macos.yml │ ├── build_ossfuzz.yml │ └── build_shared.yml ├── .gitignore ├── AUTHORS ├── COPYING ├── COPYING.LESSER ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── acinclude.m4 ├── agdbtools ├── Makefile.am ├── agdbinfo.c ├── agdbinput.c ├── agdbinput.h ├── agdbtools_getopt.c ├── agdbtools_getopt.h ├── agdbtools_i18n.h ├── agdbtools_libagdb.h ├── agdbtools_libbfio.h ├── agdbtools_libcerror.h ├── agdbtools_libclocale.h ├── agdbtools_libcnotify.h ├── agdbtools_libfdatetime.h ├── agdbtools_libuna.h ├── agdbtools_output.c ├── agdbtools_output.h ├── agdbtools_signal.c ├── agdbtools_signal.h ├── agdbtools_unused.h ├── info_handle.c └── info_handle.h ├── 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 └── Windows SuperFetch (DB) format.asciidoc ├── dpkg ├── changelog.in ├── compat ├── control ├── copyright ├── libagdb-dev.install ├── libagdb-tools.install ├── libagdb.install ├── rules └── source │ └── format ├── include ├── Makefile.am ├── libagdb.h.in └── libagdb │ ├── codepage.h │ ├── definitions.h.in │ ├── error.h │ ├── extern.h │ ├── features.h.in │ └── types.h.in ├── libagdb.ini ├── libagdb.pc.in ├── libagdb.spec.in ├── libagdb ├── Makefile.am ├── agdb_file_header.h ├── agdb_file_information.h ├── agdb_source_information.h ├── agdb_volume_information.h ├── libagdb.c ├── libagdb.rc.in ├── libagdb_codepage.h ├── libagdb_compressed_block.c ├── libagdb_compressed_block.h ├── libagdb_compressed_blocks_stream.c ├── libagdb_compressed_blocks_stream.h ├── libagdb_compressed_blocks_stream_data_handle.c ├── libagdb_compressed_blocks_stream_data_handle.h ├── libagdb_compressed_file_header.c ├── libagdb_compressed_file_header.h ├── libagdb_debug.c ├── libagdb_debug.h ├── libagdb_definitions.h.in ├── libagdb_error.c ├── libagdb_error.h ├── libagdb_extern.h ├── libagdb_file.c ├── libagdb_file.h ├── libagdb_file_information.c ├── libagdb_file_information.h ├── libagdb_hash.c ├── libagdb_hash.h ├── libagdb_io_handle.c ├── libagdb_io_handle.h ├── libagdb_libbfio.h ├── libagdb_libcdata.h ├── libagdb_libcerror.h ├── libagdb_libclocale.h ├── libagdb_libcnotify.h ├── libagdb_libfcache.h ├── libagdb_libfdata.h ├── libagdb_libfdatetime.h ├── libagdb_libfwnt.h ├── libagdb_libuna.h ├── libagdb_notify.c ├── libagdb_notify.h ├── libagdb_source_information.c ├── libagdb_source_information.h ├── libagdb_support.c ├── libagdb_support.h ├── libagdb_types.h ├── libagdb_unused.h ├── libagdb_volume_information.c └── libagdb_volume_information.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 ├── libfwnt.m4 ├── libuna.m4 ├── pthread.m4 ├── tests.m4 └── types.m4 ├── manuals ├── Makefile.am ├── agdbinfo.1 └── libagdb.3 ├── msvscpp ├── Makefile.am ├── agdb_test_compressed_block │ └── agdb_test_compressed_block.vcproj ├── agdb_test_compressed_blocks_stream_data_handle │ └── agdb_test_compressed_blocks_stream_data_handle.vcproj ├── agdb_test_compressed_file_header │ └── agdb_test_compressed_file_header.vcproj ├── agdb_test_error │ └── agdb_test_error.vcproj ├── agdb_test_file │ └── agdb_test_file.vcproj ├── agdb_test_file_information │ └── agdb_test_file_information.vcproj ├── agdb_test_io_handle │ └── agdb_test_io_handle.vcproj ├── agdb_test_notify │ └── agdb_test_notify.vcproj ├── agdb_test_source_information │ └── agdb_test_source_information.vcproj ├── agdb_test_support │ └── agdb_test_support.vcproj ├── agdb_test_tools_info_handle │ └── agdb_test_tools_info_handle.vcproj ├── agdb_test_tools_output │ └── agdb_test_tools_output.vcproj ├── agdb_test_tools_signal │ └── agdb_test_tools_signal.vcproj ├── agdb_test_volume_information │ └── agdb_test_volume_information.vcproj ├── agdbinfo │ └── agdbinfo.vcproj ├── libagdb.sln ├── libagdb │ └── libagdb.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 ├── libfwnt │ └── libfwnt.vcproj └── libuna │ └── libuna.vcproj ├── ossfuzz ├── Makefile.am ├── file_fuzzer.cc ├── ossfuzz_libagdb.h └── ossfuzz_libbfio.h ├── po ├── ChangeLog ├── Makevars.in └── POTFILES.in ├── runtests.ps1 ├── runtests.sh ├── synclibs.ps1 ├── synclibs.sh ├── synctestdata.ps1 ├── synctestdata.sh └── tests ├── Makefile.am ├── agdb_test_compressed_block.c ├── agdb_test_compressed_blocks_stream_data_handle.c ├── agdb_test_compressed_file_header.c ├── agdb_test_error.c ├── agdb_test_file.c ├── agdb_test_file_information.c ├── agdb_test_functions.c ├── agdb_test_functions.h ├── agdb_test_getopt.c ├── agdb_test_getopt.h ├── agdb_test_io_handle.c ├── agdb_test_libagdb.h ├── agdb_test_libbfio.h ├── agdb_test_libcerror.h ├── agdb_test_libclocale.h ├── agdb_test_libcnotify.h ├── agdb_test_libfdata.h ├── agdb_test_libuna.h ├── agdb_test_macros.h ├── agdb_test_memory.c ├── agdb_test_memory.h ├── agdb_test_notify.c ├── agdb_test_source_information.c ├── agdb_test_support.c ├── agdb_test_tools_info_handle.c ├── agdb_test_tools_output.c ├── agdb_test_tools_signal.c ├── agdb_test_unused.h ├── agdb_test_volume_information.c ├── build.sh ├── data ├── file_information.1 └── volume_information.1 ├── lsan.suppressions ├── pkgbuild.sh ├── runtests.sh ├── syncsharedlibs.sh ├── test_agdbinfo.ps1 ├── test_agdbinfo.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/libagdb/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/.github/workflows/build_freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/build_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/.github/workflows/build_macos.yml -------------------------------------------------------------------------------- /.github/workflows/build_ossfuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/.github/workflows/build_ossfuzz.yml -------------------------------------------------------------------------------- /.github/workflows/build_shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/.github/workflows/build_shared.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/README -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /agdbtools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/Makefile.am -------------------------------------------------------------------------------- /agdbtools/agdbinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbinfo.c -------------------------------------------------------------------------------- /agdbtools/agdbinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbinput.c -------------------------------------------------------------------------------- /agdbtools/agdbinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbinput.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_getopt.c -------------------------------------------------------------------------------- /agdbtools/agdbtools_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_getopt.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_i18n.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_libagdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_libagdb.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_libbfio.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_libcerror.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_libclocale.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_libcnotify.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_libfdatetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_libfdatetime.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_libuna.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_output.c -------------------------------------------------------------------------------- /agdbtools/agdbtools_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_output.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_signal.c -------------------------------------------------------------------------------- /agdbtools/agdbtools_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_signal.h -------------------------------------------------------------------------------- /agdbtools/agdbtools_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/agdbtools_unused.h -------------------------------------------------------------------------------- /agdbtools/info_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/info_handle.c -------------------------------------------------------------------------------- /agdbtools/info_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/agdbtools/info_handle.h -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autogen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/autogen.ps1 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/Makefile.am -------------------------------------------------------------------------------- /common/byte_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/byte_stream.h -------------------------------------------------------------------------------- /common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/common.h -------------------------------------------------------------------------------- /common/config_borlandc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/config_borlandc.h -------------------------------------------------------------------------------- /common/config_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/config_msc.h -------------------------------------------------------------------------------- /common/config_winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/config_winapi.h -------------------------------------------------------------------------------- /common/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/file_stream.h -------------------------------------------------------------------------------- /common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/memory.h -------------------------------------------------------------------------------- /common/narrow_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/narrow_string.h -------------------------------------------------------------------------------- /common/system_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/system_string.h -------------------------------------------------------------------------------- /common/types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/types.h.in -------------------------------------------------------------------------------- /common/wide_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/common/wide_string.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/configure.ac -------------------------------------------------------------------------------- /documentation/Windows SuperFetch (DB) format.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/documentation/Windows SuperFetch (DB) format.asciidoc -------------------------------------------------------------------------------- /dpkg/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/dpkg/changelog.in -------------------------------------------------------------------------------- /dpkg/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /dpkg/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/dpkg/control -------------------------------------------------------------------------------- /dpkg/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/dpkg/copyright -------------------------------------------------------------------------------- /dpkg/libagdb-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/dpkg/libagdb-dev.install -------------------------------------------------------------------------------- /dpkg/libagdb-tools.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/dpkg/libagdb-tools.install -------------------------------------------------------------------------------- /dpkg/libagdb.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/dpkg/libagdb.install -------------------------------------------------------------------------------- /dpkg/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/dpkg/rules -------------------------------------------------------------------------------- /dpkg/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/libagdb.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/include/libagdb.h.in -------------------------------------------------------------------------------- /include/libagdb/codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/include/libagdb/codepage.h -------------------------------------------------------------------------------- /include/libagdb/definitions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/include/libagdb/definitions.h.in -------------------------------------------------------------------------------- /include/libagdb/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/include/libagdb/error.h -------------------------------------------------------------------------------- /include/libagdb/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/include/libagdb/extern.h -------------------------------------------------------------------------------- /include/libagdb/features.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/include/libagdb/features.h.in -------------------------------------------------------------------------------- /include/libagdb/types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/include/libagdb/types.h.in -------------------------------------------------------------------------------- /libagdb.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb.ini -------------------------------------------------------------------------------- /libagdb.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb.pc.in -------------------------------------------------------------------------------- /libagdb.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb.spec.in -------------------------------------------------------------------------------- /libagdb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/Makefile.am -------------------------------------------------------------------------------- /libagdb/agdb_file_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/agdb_file_header.h -------------------------------------------------------------------------------- /libagdb/agdb_file_information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/agdb_file_information.h -------------------------------------------------------------------------------- /libagdb/agdb_source_information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/agdb_source_information.h -------------------------------------------------------------------------------- /libagdb/agdb_volume_information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/agdb_volume_information.h -------------------------------------------------------------------------------- /libagdb/libagdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb.c -------------------------------------------------------------------------------- /libagdb/libagdb.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb.rc.in -------------------------------------------------------------------------------- /libagdb/libagdb_codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_codepage.h -------------------------------------------------------------------------------- /libagdb/libagdb_compressed_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_compressed_block.c -------------------------------------------------------------------------------- /libagdb/libagdb_compressed_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_compressed_block.h -------------------------------------------------------------------------------- /libagdb/libagdb_compressed_blocks_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_compressed_blocks_stream.c -------------------------------------------------------------------------------- /libagdb/libagdb_compressed_blocks_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_compressed_blocks_stream.h -------------------------------------------------------------------------------- /libagdb/libagdb_compressed_blocks_stream_data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_compressed_blocks_stream_data_handle.c -------------------------------------------------------------------------------- /libagdb/libagdb_compressed_blocks_stream_data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_compressed_blocks_stream_data_handle.h -------------------------------------------------------------------------------- /libagdb/libagdb_compressed_file_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_compressed_file_header.c -------------------------------------------------------------------------------- /libagdb/libagdb_compressed_file_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_compressed_file_header.h -------------------------------------------------------------------------------- /libagdb/libagdb_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_debug.c -------------------------------------------------------------------------------- /libagdb/libagdb_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_debug.h -------------------------------------------------------------------------------- /libagdb/libagdb_definitions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_definitions.h.in -------------------------------------------------------------------------------- /libagdb/libagdb_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_error.c -------------------------------------------------------------------------------- /libagdb/libagdb_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_error.h -------------------------------------------------------------------------------- /libagdb/libagdb_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_extern.h -------------------------------------------------------------------------------- /libagdb/libagdb_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_file.c -------------------------------------------------------------------------------- /libagdb/libagdb_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_file.h -------------------------------------------------------------------------------- /libagdb/libagdb_file_information.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_file_information.c -------------------------------------------------------------------------------- /libagdb/libagdb_file_information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_file_information.h -------------------------------------------------------------------------------- /libagdb/libagdb_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_hash.c -------------------------------------------------------------------------------- /libagdb/libagdb_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_hash.h -------------------------------------------------------------------------------- /libagdb/libagdb_io_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_io_handle.c -------------------------------------------------------------------------------- /libagdb/libagdb_io_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_io_handle.h -------------------------------------------------------------------------------- /libagdb/libagdb_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_libbfio.h -------------------------------------------------------------------------------- /libagdb/libagdb_libcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_libcdata.h -------------------------------------------------------------------------------- /libagdb/libagdb_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_libcerror.h -------------------------------------------------------------------------------- /libagdb/libagdb_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_libclocale.h -------------------------------------------------------------------------------- /libagdb/libagdb_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_libcnotify.h -------------------------------------------------------------------------------- /libagdb/libagdb_libfcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_libfcache.h -------------------------------------------------------------------------------- /libagdb/libagdb_libfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_libfdata.h -------------------------------------------------------------------------------- /libagdb/libagdb_libfdatetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_libfdatetime.h -------------------------------------------------------------------------------- /libagdb/libagdb_libfwnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_libfwnt.h -------------------------------------------------------------------------------- /libagdb/libagdb_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_libuna.h -------------------------------------------------------------------------------- /libagdb/libagdb_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_notify.c -------------------------------------------------------------------------------- /libagdb/libagdb_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_notify.h -------------------------------------------------------------------------------- /libagdb/libagdb_source_information.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_source_information.c -------------------------------------------------------------------------------- /libagdb/libagdb_source_information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_source_information.h -------------------------------------------------------------------------------- /libagdb/libagdb_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_support.c -------------------------------------------------------------------------------- /libagdb/libagdb_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_support.h -------------------------------------------------------------------------------- /libagdb/libagdb_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_types.h -------------------------------------------------------------------------------- /libagdb/libagdb_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_unused.h -------------------------------------------------------------------------------- /libagdb/libagdb_volume_information.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_volume_information.c -------------------------------------------------------------------------------- /libagdb/libagdb_volume_information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/libagdb/libagdb_volume_information.h -------------------------------------------------------------------------------- /m4/common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/common.m4 -------------------------------------------------------------------------------- /m4/libbfio.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libbfio.m4 -------------------------------------------------------------------------------- /m4/libcdata.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libcdata.m4 -------------------------------------------------------------------------------- /m4/libcerror.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libcerror.m4 -------------------------------------------------------------------------------- /m4/libcfile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libcfile.m4 -------------------------------------------------------------------------------- /m4/libclocale.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libclocale.m4 -------------------------------------------------------------------------------- /m4/libcnotify.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libcnotify.m4 -------------------------------------------------------------------------------- /m4/libcpath.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libcpath.m4 -------------------------------------------------------------------------------- /m4/libcsplit.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libcsplit.m4 -------------------------------------------------------------------------------- /m4/libcthreads.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libcthreads.m4 -------------------------------------------------------------------------------- /m4/libfcache.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libfcache.m4 -------------------------------------------------------------------------------- /m4/libfdata.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libfdata.m4 -------------------------------------------------------------------------------- /m4/libfdatetime.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libfdatetime.m4 -------------------------------------------------------------------------------- /m4/libfwnt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libfwnt.m4 -------------------------------------------------------------------------------- /m4/libuna.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/libuna.m4 -------------------------------------------------------------------------------- /m4/pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/pthread.m4 -------------------------------------------------------------------------------- /m4/tests.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/tests.m4 -------------------------------------------------------------------------------- /m4/types.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/m4/types.m4 -------------------------------------------------------------------------------- /manuals/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/manuals/Makefile.am -------------------------------------------------------------------------------- /manuals/agdbinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/manuals/agdbinfo.1 -------------------------------------------------------------------------------- /manuals/libagdb.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/manuals/libagdb.3 -------------------------------------------------------------------------------- /msvscpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/Makefile.am -------------------------------------------------------------------------------- /msvscpp/agdb_test_compressed_block/agdb_test_compressed_block.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_compressed_block/agdb_test_compressed_block.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_compressed_blocks_stream_data_handle/agdb_test_compressed_blocks_stream_data_handle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_compressed_blocks_stream_data_handle/agdb_test_compressed_blocks_stream_data_handle.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_compressed_file_header/agdb_test_compressed_file_header.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_compressed_file_header/agdb_test_compressed_file_header.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_error/agdb_test_error.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_error/agdb_test_error.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_file/agdb_test_file.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_file/agdb_test_file.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_file_information/agdb_test_file_information.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_file_information/agdb_test_file_information.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_io_handle/agdb_test_io_handle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_io_handle/agdb_test_io_handle.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_notify/agdb_test_notify.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_notify/agdb_test_notify.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_source_information/agdb_test_source_information.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_source_information/agdb_test_source_information.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_support/agdb_test_support.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_support/agdb_test_support.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_tools_info_handle/agdb_test_tools_info_handle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_tools_info_handle/agdb_test_tools_info_handle.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_tools_output/agdb_test_tools_output.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_tools_output/agdb_test_tools_output.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_tools_signal/agdb_test_tools_signal.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_tools_signal/agdb_test_tools_signal.vcproj -------------------------------------------------------------------------------- /msvscpp/agdb_test_volume_information/agdb_test_volume_information.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdb_test_volume_information/agdb_test_volume_information.vcproj -------------------------------------------------------------------------------- /msvscpp/agdbinfo/agdbinfo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/agdbinfo/agdbinfo.vcproj -------------------------------------------------------------------------------- /msvscpp/libagdb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libagdb.sln -------------------------------------------------------------------------------- /msvscpp/libagdb/libagdb.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libagdb/libagdb.vcproj -------------------------------------------------------------------------------- /msvscpp/libbfio/libbfio.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libbfio/libbfio.vcproj -------------------------------------------------------------------------------- /msvscpp/libcdata/libcdata.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libcdata/libcdata.vcproj -------------------------------------------------------------------------------- /msvscpp/libcerror/libcerror.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libcerror/libcerror.vcproj -------------------------------------------------------------------------------- /msvscpp/libcfile/libcfile.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libcfile/libcfile.vcproj -------------------------------------------------------------------------------- /msvscpp/libclocale/libclocale.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libclocale/libclocale.vcproj -------------------------------------------------------------------------------- /msvscpp/libcnotify/libcnotify.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libcnotify/libcnotify.vcproj -------------------------------------------------------------------------------- /msvscpp/libcpath/libcpath.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libcpath/libcpath.vcproj -------------------------------------------------------------------------------- /msvscpp/libcsplit/libcsplit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libcsplit/libcsplit.vcproj -------------------------------------------------------------------------------- /msvscpp/libcthreads/libcthreads.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libcthreads/libcthreads.vcproj -------------------------------------------------------------------------------- /msvscpp/libfcache/libfcache.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libfcache/libfcache.vcproj -------------------------------------------------------------------------------- /msvscpp/libfdata/libfdata.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libfdata/libfdata.vcproj -------------------------------------------------------------------------------- /msvscpp/libfdatetime/libfdatetime.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libfdatetime/libfdatetime.vcproj -------------------------------------------------------------------------------- /msvscpp/libfwnt/libfwnt.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libfwnt/libfwnt.vcproj -------------------------------------------------------------------------------- /msvscpp/libuna/libuna.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/msvscpp/libuna/libuna.vcproj -------------------------------------------------------------------------------- /ossfuzz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/ossfuzz/Makefile.am -------------------------------------------------------------------------------- /ossfuzz/file_fuzzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/ossfuzz/file_fuzzer.cc -------------------------------------------------------------------------------- /ossfuzz/ossfuzz_libagdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/ossfuzz/ossfuzz_libagdb.h -------------------------------------------------------------------------------- /ossfuzz/ossfuzz_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/ossfuzz/ossfuzz_libbfio.h -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/po/Makevars.in -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | # List of source files which contain translatable strings. 2 | -------------------------------------------------------------------------------- /runtests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/runtests.ps1 -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/runtests.sh -------------------------------------------------------------------------------- /synclibs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/synclibs.ps1 -------------------------------------------------------------------------------- /synclibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/synclibs.sh -------------------------------------------------------------------------------- /synctestdata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/synctestdata.ps1 -------------------------------------------------------------------------------- /synctestdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/synctestdata.sh -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/agdb_test_compressed_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_compressed_block.c -------------------------------------------------------------------------------- /tests/agdb_test_compressed_blocks_stream_data_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_compressed_blocks_stream_data_handle.c -------------------------------------------------------------------------------- /tests/agdb_test_compressed_file_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_compressed_file_header.c -------------------------------------------------------------------------------- /tests/agdb_test_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_error.c -------------------------------------------------------------------------------- /tests/agdb_test_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_file.c -------------------------------------------------------------------------------- /tests/agdb_test_file_information.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_file_information.c -------------------------------------------------------------------------------- /tests/agdb_test_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_functions.c -------------------------------------------------------------------------------- /tests/agdb_test_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_functions.h -------------------------------------------------------------------------------- /tests/agdb_test_getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_getopt.c -------------------------------------------------------------------------------- /tests/agdb_test_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_getopt.h -------------------------------------------------------------------------------- /tests/agdb_test_io_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_io_handle.c -------------------------------------------------------------------------------- /tests/agdb_test_libagdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_libagdb.h -------------------------------------------------------------------------------- /tests/agdb_test_libbfio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_libbfio.h -------------------------------------------------------------------------------- /tests/agdb_test_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_libcerror.h -------------------------------------------------------------------------------- /tests/agdb_test_libclocale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_libclocale.h -------------------------------------------------------------------------------- /tests/agdb_test_libcnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_libcnotify.h -------------------------------------------------------------------------------- /tests/agdb_test_libfdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_libfdata.h -------------------------------------------------------------------------------- /tests/agdb_test_libuna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_libuna.h -------------------------------------------------------------------------------- /tests/agdb_test_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_macros.h -------------------------------------------------------------------------------- /tests/agdb_test_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_memory.c -------------------------------------------------------------------------------- /tests/agdb_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_memory.h -------------------------------------------------------------------------------- /tests/agdb_test_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_notify.c -------------------------------------------------------------------------------- /tests/agdb_test_source_information.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_source_information.c -------------------------------------------------------------------------------- /tests/agdb_test_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_support.c -------------------------------------------------------------------------------- /tests/agdb_test_tools_info_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_tools_info_handle.c -------------------------------------------------------------------------------- /tests/agdb_test_tools_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_tools_output.c -------------------------------------------------------------------------------- /tests/agdb_test_tools_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_tools_signal.c -------------------------------------------------------------------------------- /tests/agdb_test_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_unused.h -------------------------------------------------------------------------------- /tests/agdb_test_volume_information.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/agdb_test_volume_information.c -------------------------------------------------------------------------------- /tests/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/build.sh -------------------------------------------------------------------------------- /tests/data/file_information.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/data/file_information.1 -------------------------------------------------------------------------------- /tests/data/volume_information.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/data/volume_information.1 -------------------------------------------------------------------------------- /tests/lsan.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/lsan.suppressions -------------------------------------------------------------------------------- /tests/pkgbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/pkgbuild.sh -------------------------------------------------------------------------------- /tests/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/runtests.sh -------------------------------------------------------------------------------- /tests/syncsharedlibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/syncsharedlibs.sh -------------------------------------------------------------------------------- /tests/test_agdbinfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/test_agdbinfo.ps1 -------------------------------------------------------------------------------- /tests/test_agdbinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/test_agdbinfo.sh -------------------------------------------------------------------------------- /tests/test_library.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/test_library.ps1 -------------------------------------------------------------------------------- /tests/test_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/test_library.sh -------------------------------------------------------------------------------- /tests/test_manpage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/test_manpage.sh -------------------------------------------------------------------------------- /tests/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/test_runner.sh -------------------------------------------------------------------------------- /tests/test_tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/test_tools.ps1 -------------------------------------------------------------------------------- /tests/test_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libagdb/HEAD/tests/test_tools.sh --------------------------------------------------------------------------------