libvslvm-python 20240301__tar.gz → 20260901__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- libvslvm_python-20260901/AUTHORS +4 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/INSTALL +0 -0
- libvslvm_python-20260901/Makefile.am +104 -0
- libvslvm_python-20260901/Makefile.in +1209 -0
- libvslvm_python-20260901/PKG-INFO +36 -0
- libvslvm_python-20260901/README +19 -0
- libvslvm_python-20260901/_build.py +275 -0
- libvslvm_python-20260901/acinclude.m4 +36 -0
- libvslvm_python-20260901/aclocal.m4 +1547 -0
- libvslvm_python-20260901/common/Makefile.am +24 -0
- libvslvm_python-20260901/common/Makefile.in +776 -0
- libvslvm_python-20260901/common/byte_stream.h +312 -0
- libvslvm_python-20260901/common/common.h +43 -0
- libvslvm_python-20260901/common/config.h +614 -0
- libvslvm_python-20260901/common/config.h.in +613 -0
- libvslvm_python-20260901/common/config_borlandc.h +26 -0
- libvslvm_python-20260901/common/config_msc.h +34 -0
- libvslvm_python-20260901/common/config_winapi.h +97 -0
- libvslvm_python-20260901/common/file_stream.h +151 -0
- libvslvm_python-20260901/common/memory.h +129 -0
- libvslvm_python-20260901/common/narrow_string.h +187 -0
- libvslvm_python-20260901/common/system_string.h +154 -0
- libvslvm_python-20260901/common/types.h +392 -0
- libvslvm_python-20260901/common/types.h.in +392 -0
- libvslvm_python-20260901/common/wide_string.h +175 -0
- libvslvm_python-20260901/config.guess +1754 -0
- libvslvm_python-20260901/config.sub +1890 -0
- libvslvm_python-20260901/configure +60652 -0
- libvslvm_python-20260901/configure.ac +251 -0
- libvslvm_python-20260901/dpkg/changelog +5 -0
- libvslvm_python-20260901/dpkg/compat +1 -0
- libvslvm_python-20260901/dpkg/control +65 -0
- libvslvm_python-20260901/dpkg/copyright +25 -0
- libvslvm_python-20260901/dpkg/rules +31 -0
- libvslvm_python-20260901/include/Makefile.am +25 -0
- libvslvm_python-20260901/include/Makefile.in +838 -0
- libvslvm_python-20260901/include/libvslvm/codepage.h +122 -0
- libvslvm_python-20260901/include/libvslvm/definitions.h +62 -0
- libvslvm_python-20260901/include/libvslvm/definitions.h.in +62 -0
- libvslvm_python-20260901/include/libvslvm/error.h +291 -0
- libvslvm_python-20260901/include/libvslvm/extern.h +47 -0
- libvslvm_python-20260901/include/libvslvm/features.h +50 -0
- libvslvm_python-20260901/include/libvslvm/features.h.in +50 -0
- libvslvm_python-20260901/include/libvslvm/types.h +216 -0
- libvslvm_python-20260901/include/libvslvm/types.h.in +216 -0
- libvslvm_python-20260901/include/libvslvm.h +725 -0
- libvslvm_python-20260901/include/libvslvm.h.in +725 -0
- libvslvm_python-20260901/libbfio/Makefile.am +54 -0
- libvslvm_python-20260901/libbfio/Makefile.in +939 -0
- libvslvm_python-20260901/libbfio/libbfio_codepage.h +90 -0
- libvslvm_python-20260901/libbfio/libbfio_definitions.h +89 -0
- libvslvm_python-20260901/libbfio/libbfio_error.c +111 -0
- libvslvm_python-20260901/libbfio/libbfio_error.h +74 -0
- libvslvm_python-20260901/libbfio/libbfio_extern.h +53 -0
- libvslvm_python-20260901/libbfio/libbfio_file.c +444 -0
- libvslvm_python-20260901/libbfio/libbfio_file.h +90 -0
- libvslvm_python-20260901/libbfio/libbfio_file_io_handle.c +1198 -0
- libvslvm_python-20260901/libbfio/libbfio_file_io_handle.h +152 -0
- libvslvm_python-20260901/libbfio/libbfio_file_pool.c +494 -0
- libvslvm_python-20260901/libbfio/libbfio_file_pool.h +81 -0
- libvslvm_python-20260901/libbfio/libbfio_file_range.c +468 -0
- libvslvm_python-20260901/libbfio/libbfio_file_range.h +104 -0
- libvslvm_python-20260901/libbfio/libbfio_file_range_io_handle.c +1158 -0
- libvslvm_python-20260901/libbfio/libbfio_file_range_io_handle.h +160 -0
- libvslvm_python-20260901/libbfio/libbfio_handle.c +2708 -0
- libvslvm_python-20260901/libbfio/libbfio_handle.h +363 -0
- libvslvm_python-20260901/libbfio/libbfio_libcdata.h +54 -0
- libvslvm_python-20260901/libbfio/libbfio_libcerror.h +50 -0
- libvslvm_python-20260901/libbfio/libbfio_libcfile.h +50 -0
- libvslvm_python-20260901/libbfio/libbfio_libclocale.h +50 -0
- libvslvm_python-20260901/libbfio/libbfio_libcpath.h +48 -0
- libvslvm_python-20260901/libbfio/libbfio_libcthreads.h +64 -0
- libvslvm_python-20260901/libbfio/libbfio_libuna.h +60 -0
- libvslvm_python-20260901/libbfio/libbfio_memory_range.c +205 -0
- libvslvm_python-20260901/libbfio/libbfio_memory_range.h +60 -0
- libvslvm_python-20260901/libbfio/libbfio_memory_range_io_handle.c +871 -0
- libvslvm_python-20260901/libbfio/libbfio_memory_range_io_handle.h +129 -0
- libvslvm_python-20260901/libbfio/libbfio_pool.c +3523 -0
- libvslvm_python-20260901/libbfio/libbfio_pool.h +275 -0
- libvslvm_python-20260901/libbfio/libbfio_support.c +93 -0
- libvslvm_python-20260901/libbfio/libbfio_support.h +58 -0
- libvslvm_python-20260901/libbfio/libbfio_system_string.c +1017 -0
- libvslvm_python-20260901/libbfio/libbfio_system_string.h +95 -0
- libvslvm_python-20260901/libbfio/libbfio_types.h +49 -0
- libvslvm_python-20260901/libbfio/libbfio_unused.h +44 -0
- libvslvm_python-20260901/libcdata/Makefile.am +40 -0
- libvslvm_python-20260901/libcdata/Makefile.in +918 -0
- libvslvm_python-20260901/libcdata/libcdata_array.c +2015 -0
- libvslvm_python-20260901/libcdata/libcdata_array.h +200 -0
- libvslvm_python-20260901/libcdata/libcdata_btree.c +964 -0
- libvslvm_python-20260901/libcdata/libcdata_btree.h +141 -0
- libvslvm_python-20260901/libcdata/libcdata_btree_node.c +1607 -0
- libvslvm_python-20260901/libcdata/libcdata_btree_node.h +101 -0
- libvslvm_python-20260901/libcdata/libcdata_btree_values_list.c +217 -0
- libvslvm_python-20260901/libcdata/libcdata_btree_values_list.h +55 -0
- libvslvm_python-20260901/libcdata/libcdata_definitions.h +81 -0
- libvslvm_python-20260901/libcdata/libcdata_error.c +111 -0
- libvslvm_python-20260901/libcdata/libcdata_error.h +74 -0
- libvslvm_python-20260901/libcdata/libcdata_extern.h +53 -0
- libvslvm_python-20260901/libcdata/libcdata_libcerror.h +50 -0
- libvslvm_python-20260901/libcdata/libcdata_libcthreads.h +64 -0
- libvslvm_python-20260901/libcdata/libcdata_list.c +2906 -0
- libvslvm_python-20260901/libcdata/libcdata_list.h +235 -0
- libvslvm_python-20260901/libcdata/libcdata_list_element.c +926 -0
- libvslvm_python-20260901/libcdata/libcdata_list_element.h +142 -0
- libvslvm_python-20260901/libcdata/libcdata_range_list.c +4922 -0
- libvslvm_python-20260901/libcdata/libcdata_range_list.h +382 -0
- libvslvm_python-20260901/libcdata/libcdata_range_list_value.c +429 -0
- libvslvm_python-20260901/libcdata/libcdata_range_list_value.h +100 -0
- libvslvm_python-20260901/libcdata/libcdata_support.c +39 -0
- libvslvm_python-20260901/libcdata/libcdata_support.h +47 -0
- libvslvm_python-20260901/libcdata/libcdata_tree_node.c +4271 -0
- libvslvm_python-20260901/libcdata/libcdata_tree_node.h +308 -0
- libvslvm_python-20260901/libcdata/libcdata_types.h +57 -0
- libvslvm_python-20260901/libcdata/libcdata_unused.h +44 -0
- libvslvm_python-20260901/libcerror/Makefile.am +27 -0
- libvslvm_python-20260901/libcerror/Makefile.in +860 -0
- libvslvm_python-20260901/libcerror/libcerror_definitions.h +326 -0
- libvslvm_python-20260901/libcerror/libcerror_error.c +827 -0
- libvslvm_python-20260901/libcerror/libcerror_error.h +125 -0
- libvslvm_python-20260901/libcerror/libcerror_extern.h +53 -0
- libvslvm_python-20260901/libcerror/libcerror_support.c +39 -0
- libvslvm_python-20260901/libcerror/libcerror_support.h +47 -0
- libvslvm_python-20260901/libcerror/libcerror_system.c +569 -0
- libvslvm_python-20260901/libcerror/libcerror_system.h +78 -0
- libvslvm_python-20260901/libcerror/libcerror_types.h +51 -0
- libvslvm_python-20260901/libcerror/libcerror_unused.h +44 -0
- libvslvm_python-20260901/libcfile/Makefile.am +38 -0
- libvslvm_python-20260901/libcfile/Makefile.in +887 -0
- libvslvm_python-20260901/libcfile/libcfile_definitions.h +101 -0
- libvslvm_python-20260901/libcfile/libcfile_error.c +111 -0
- libvslvm_python-20260901/libcfile/libcfile_error.h +74 -0
- libvslvm_python-20260901/libcfile/libcfile_extern.h +53 -0
- libvslvm_python-20260901/libcfile/libcfile_file.c +5022 -0
- libvslvm_python-20260901/libcfile/libcfile_file.h +277 -0
- libvslvm_python-20260901/libcfile/libcfile_libcerror.h +50 -0
- libvslvm_python-20260901/libcfile/libcfile_libclocale.h +50 -0
- libvslvm_python-20260901/libcfile/libcfile_libcnotify.h +50 -0
- libvslvm_python-20260901/libcfile/libcfile_libuna.h +60 -0
- libvslvm_python-20260901/libcfile/libcfile_notify.c +120 -0
- libvslvm_python-20260901/libcfile/libcfile_notify.h +63 -0
- libvslvm_python-20260901/libcfile/libcfile_support.c +1171 -0
- libvslvm_python-20260901/libcfile/libcfile_support.h +98 -0
- libvslvm_python-20260901/libcfile/libcfile_system_string.c +1017 -0
- libvslvm_python-20260901/libcfile/libcfile_system_string.h +95 -0
- libvslvm_python-20260901/libcfile/libcfile_types.h +47 -0
- libvslvm_python-20260901/libcfile/libcfile_unused.h +44 -0
- libvslvm_python-20260901/libcfile/libcfile_winapi.c +815 -0
- libvslvm_python-20260901/libcfile/libcfile_winapi.h +122 -0
- libvslvm_python-20260901/libclocale/Makefile.am +30 -0
- libvslvm_python-20260901/libclocale/Makefile.in +870 -0
- libvslvm_python-20260901/libclocale/libclocale_codepage.c +950 -0
- libvslvm_python-20260901/libclocale/libclocale_codepage.h +73 -0
- libvslvm_python-20260901/libclocale/libclocale_definitions.h +106 -0
- libvslvm_python-20260901/libclocale/libclocale_extern.h +53 -0
- libvslvm_python-20260901/libclocale/libclocale_libcerror.h +50 -0
- libvslvm_python-20260901/libclocale/libclocale_locale.c +494 -0
- libvslvm_python-20260901/libclocale/libclocale_locale.h +66 -0
- libvslvm_python-20260901/libclocale/libclocale_support.c +130 -0
- libvslvm_python-20260901/libclocale/libclocale_support.h +55 -0
- libvslvm_python-20260901/libclocale/libclocale_unused.h +44 -0
- libvslvm_python-20260901/libclocale/libclocale_wide_string.c +69 -0
- libvslvm_python-20260901/libclocale/libclocale_wide_string.h +54 -0
- libvslvm_python-20260901/libcnotify/Makefile.am +29 -0
- libvslvm_python-20260901/libcnotify/Makefile.in +868 -0
- libvslvm_python-20260901/libcnotify/libcnotify_definitions.h +54 -0
- libvslvm_python-20260901/libcnotify/libcnotify_extern.h +53 -0
- libvslvm_python-20260901/libcnotify/libcnotify_libcerror.h +50 -0
- libvslvm_python-20260901/libcnotify/libcnotify_print.c +386 -0
- libvslvm_python-20260901/libcnotify/libcnotify_print.h +68 -0
- libvslvm_python-20260901/libcnotify/libcnotify_stream.c +182 -0
- libvslvm_python-20260901/libcnotify/libcnotify_stream.h +59 -0
- libvslvm_python-20260901/libcnotify/libcnotify_support.c +39 -0
- libvslvm_python-20260901/libcnotify/libcnotify_support.h +49 -0
- libvslvm_python-20260901/libcnotify/libcnotify_unused.h +44 -0
- libvslvm_python-20260901/libcnotify/libcnotify_verbose.c +38 -0
- libvslvm_python-20260901/libcnotify/libcnotify_verbose.h +46 -0
- libvslvm_python-20260901/libcpath/Makefile.am +35 -0
- libvslvm_python-20260901/libcpath/Makefile.in +872 -0
- libvslvm_python-20260901/libcpath/libcpath_definitions.h +79 -0
- libvslvm_python-20260901/libcpath/libcpath_error.c +111 -0
- libvslvm_python-20260901/libcpath/libcpath_error.h +74 -0
- libvslvm_python-20260901/libcpath/libcpath_extern.h +53 -0
- libvslvm_python-20260901/libcpath/libcpath_libcerror.h +50 -0
- libvslvm_python-20260901/libcpath/libcpath_libclocale.h +50 -0
- libvslvm_python-20260901/libcpath/libcpath_libcsplit.h +52 -0
- libvslvm_python-20260901/libcpath/libcpath_libuna.h +60 -0
- libvslvm_python-20260901/libcpath/libcpath_path.c +7508 -0
- libvslvm_python-20260901/libcpath/libcpath_path.h +293 -0
- libvslvm_python-20260901/libcpath/libcpath_support.c +93 -0
- libvslvm_python-20260901/libcpath/libcpath_support.h +58 -0
- libvslvm_python-20260901/libcpath/libcpath_system_string.c +1017 -0
- libvslvm_python-20260901/libcpath/libcpath_system_string.h +95 -0
- libvslvm_python-20260901/libcpath/libcpath_unused.h +44 -0
- libvslvm_python-20260901/libcsplit/Makefile.am +32 -0
- libvslvm_python-20260901/libcsplit/Makefile.in +885 -0
- libvslvm_python-20260901/libcsplit/libcsplit_definitions.h +47 -0
- libvslvm_python-20260901/libcsplit/libcsplit_error.c +111 -0
- libvslvm_python-20260901/libcsplit/libcsplit_error.h +74 -0
- libvslvm_python-20260901/libcsplit/libcsplit_extern.h +53 -0
- libvslvm_python-20260901/libcsplit/libcsplit_libcerror.h +50 -0
- libvslvm_python-20260901/libcsplit/libcsplit_narrow_split_string.c +547 -0
- libvslvm_python-20260901/libcsplit/libcsplit_narrow_split_string.h +107 -0
- libvslvm_python-20260901/libcsplit/libcsplit_narrow_string.c +288 -0
- libvslvm_python-20260901/libcsplit/libcsplit_narrow_string.h +49 -0
- libvslvm_python-20260901/libcsplit/libcsplit_support.c +39 -0
- libvslvm_python-20260901/libcsplit/libcsplit_support.h +47 -0
- libvslvm_python-20260901/libcsplit/libcsplit_types.h +49 -0
- libvslvm_python-20260901/libcsplit/libcsplit_unused.h +44 -0
- libvslvm_python-20260901/libcsplit/libcsplit_wide_split_string.c +551 -0
- libvslvm_python-20260901/libcsplit/libcsplit_wide_split_string.h +111 -0
- libvslvm_python-20260901/libcsplit/libcsplit_wide_string.c +292 -0
- libvslvm_python-20260901/libcsplit/libcsplit_wide_string.h +53 -0
- libvslvm_python-20260901/libcthreads/Makefile.am +38 -0
- libvslvm_python-20260901/libcthreads/Makefile.in +920 -0
- libvslvm_python-20260901/libcthreads/libcthreads_condition.c +735 -0
- libvslvm_python-20260901/libcthreads/libcthreads_condition.h +120 -0
- libvslvm_python-20260901/libcthreads/libcthreads_definitions.h +84 -0
- libvslvm_python-20260901/libcthreads/libcthreads_error.c +111 -0
- libvslvm_python-20260901/libcthreads/libcthreads_error.h +74 -0
- libvslvm_python-20260901/libcthreads/libcthreads_extern.h +53 -0
- libvslvm_python-20260901/libcthreads/libcthreads_libcerror.h +50 -0
- libvslvm_python-20260901/libcthreads/libcthreads_lock.c +391 -0
- libvslvm_python-20260901/libcthreads/libcthreads_lock.h +88 -0
- libvslvm_python-20260901/libcthreads/libcthreads_mutex.c +601 -0
- libvslvm_python-20260901/libcthreads/libcthreads_mutex.h +98 -0
- libvslvm_python-20260901/libcthreads/libcthreads_queue.c +1150 -0
- libvslvm_python-20260901/libcthreads/libcthreads_queue.h +136 -0
- libvslvm_python-20260901/libcthreads/libcthreads_read_write_lock.c +690 -0
- libvslvm_python-20260901/libcthreads/libcthreads_read_write_lock.h +119 -0
- libvslvm_python-20260901/libcthreads/libcthreads_repeating_thread.c +683 -0
- libvslvm_python-20260901/libcthreads/libcthreads_repeating_thread.h +123 -0
- libvslvm_python-20260901/libcthreads/libcthreads_support.c +39 -0
- libvslvm_python-20260901/libcthreads/libcthreads_support.h +47 -0
- libvslvm_python-20260901/libcthreads/libcthreads_thread.c +411 -0
- libvslvm_python-20260901/libcthreads/libcthreads_thread.h +95 -0
- libvslvm_python-20260901/libcthreads/libcthreads_thread_attributes.c +149 -0
- libvslvm_python-20260901/libcthreads/libcthreads_thread_attributes.h +78 -0
- libvslvm_python-20260901/libcthreads/libcthreads_thread_pool.c +1725 -0
- libvslvm_python-20260901/libcthreads/libcthreads_thread_pool.h +177 -0
- libvslvm_python-20260901/libcthreads/libcthreads_types.h +63 -0
- libvslvm_python-20260901/libcthreads/libcthreads_unused.h +44 -0
- libvslvm_python-20260901/libfcache/Makefile.am +35 -0
- libvslvm_python-20260901/libfcache/Makefile.in +881 -0
- libvslvm_python-20260901/libfcache/libfcache_cache.c +1118 -0
- libvslvm_python-20260901/libfcache/libfcache_cache.h +149 -0
- libvslvm_python-20260901/libfcache/libfcache_cache_value.c +502 -0
- libvslvm_python-20260901/libfcache/libfcache_cache_value.h +132 -0
- libvslvm_python-20260901/libfcache/libfcache_date_time.c +92 -0
- libvslvm_python-20260901/libfcache/libfcache_date_time.h +45 -0
- libvslvm_python-20260901/libfcache/libfcache_definitions.h +58 -0
- libvslvm_python-20260901/libfcache/libfcache_error.c +111 -0
- libvslvm_python-20260901/libfcache/libfcache_error.h +74 -0
- libvslvm_python-20260901/libfcache/libfcache_extern.h +40 -0
- libvslvm_python-20260901/libfcache/libfcache_libcdata.h +54 -0
- libvslvm_python-20260901/libfcache/libfcache_libcerror.h +50 -0
- libvslvm_python-20260901/libfcache/libfcache_support.c +41 -0
- libvslvm_python-20260901/libfcache/libfcache_support.h +47 -0
- libvslvm_python-20260901/libfcache/libfcache_types.h +49 -0
- libvslvm_python-20260901/libfcache/libfcache_unused.h +44 -0
- libvslvm_python-20260901/libfdata/Makefile.am +47 -0
- libvslvm_python-20260901/libfdata/Makefile.in +934 -0
- libvslvm_python-20260901/libfdata/libfdata_area.c +1482 -0
- libvslvm_python-20260901/libfdata/libfdata_area.h +278 -0
- libvslvm_python-20260901/libfdata/libfdata_cache.c +59 -0
- libvslvm_python-20260901/libfdata/libfdata_cache.h +56 -0
- libvslvm_python-20260901/libfdata/libfdata_definitions.h +249 -0
- libvslvm_python-20260901/libfdata/libfdata_error.c +111 -0
- libvslvm_python-20260901/libfdata/libfdata_error.h +74 -0
- libvslvm_python-20260901/libfdata/libfdata_extern.h +40 -0
- libvslvm_python-20260901/libfdata/libfdata_libcdata.h +54 -0
- libvslvm_python-20260901/libfdata/libfdata_libcerror.h +50 -0
- libvslvm_python-20260901/libfdata/libfdata_libcnotify.h +50 -0
- libvslvm_python-20260901/libfdata/libfdata_libfcache.h +50 -0
- libvslvm_python-20260901/libfdata/libfdata_list.c +4426 -0
- libvslvm_python-20260901/libfdata/libfdata_list.h +452 -0
- libvslvm_python-20260901/libfdata/libfdata_list_element.c +824 -0
- libvslvm_python-20260901/libfdata/libfdata_list_element.h +159 -0
- libvslvm_python-20260901/libfdata/libfdata_mapped_range.c +312 -0
- libvslvm_python-20260901/libfdata/libfdata_mapped_range.h +77 -0
- libvslvm_python-20260901/libfdata/libfdata_notify.c +120 -0
- libvslvm_python-20260901/libfdata/libfdata_notify.h +63 -0
- libvslvm_python-20260901/libfdata/libfdata_range.c +358 -0
- libvslvm_python-20260901/libfdata/libfdata_range.h +94 -0
- libvslvm_python-20260901/libfdata/libfdata_range_list.c +1196 -0
- libvslvm_python-20260901/libfdata/libfdata_range_list.h +214 -0
- libvslvm_python-20260901/libfdata/libfdata_segments_array.c +914 -0
- libvslvm_python-20260901/libfdata/libfdata_segments_array.h +94 -0
- libvslvm_python-20260901/libfdata/libfdata_stream.c +2582 -0
- libvslvm_python-20260901/libfdata/libfdata_stream.h +363 -0
- libvslvm_python-20260901/libfdata/libfdata_support.c +41 -0
- libvslvm_python-20260901/libfdata/libfdata_support.h +47 -0
- libvslvm_python-20260901/libfdata/libfdata_types.h +59 -0
- libvslvm_python-20260901/libfdata/libfdata_unused.h +44 -0
- libvslvm_python-20260901/libfdata/libfdata_vector.c +1932 -0
- libvslvm_python-20260901/libfdata/libfdata_vector.h +295 -0
- libvslvm_python-20260901/libfvalue/Makefile.am +54 -0
- libvslvm_python-20260901/libfvalue/Makefile.in +968 -0
- libvslvm_python-20260901/libfvalue/libfvalue_binary_data.c +1390 -0
- libvslvm_python-20260901/libfvalue/libfvalue_binary_data.h +114 -0
- libvslvm_python-20260901/libfvalue/libfvalue_codepage.h +103 -0
- libvslvm_python-20260901/libfvalue/libfvalue_data_handle.c +1661 -0
- libvslvm_python-20260901/libfvalue/libfvalue_data_handle.h +195 -0
- libvslvm_python-20260901/libfvalue/libfvalue_definitions.h +350 -0
- libvslvm_python-20260901/libfvalue/libfvalue_error.c +111 -0
- libvslvm_python-20260901/libfvalue/libfvalue_error.h +74 -0
- libvslvm_python-20260901/libfvalue/libfvalue_extern.h +40 -0
- libvslvm_python-20260901/libfvalue/libfvalue_filetime.c +113 -0
- libvslvm_python-20260901/libfvalue/libfvalue_filetime.h +56 -0
- libvslvm_python-20260901/libfvalue/libfvalue_floating_point.c +3472 -0
- libvslvm_python-20260901/libfvalue/libfvalue_floating_point.h +246 -0
- libvslvm_python-20260901/libfvalue/libfvalue_integer.c +2908 -0
- libvslvm_python-20260901/libfvalue/libfvalue_integer.h +261 -0
- libvslvm_python-20260901/libfvalue/libfvalue_libcdata.h +54 -0
- libvslvm_python-20260901/libfvalue/libfvalue_libcerror.h +50 -0
- libvslvm_python-20260901/libfvalue/libfvalue_libcnotify.h +50 -0
- libvslvm_python-20260901/libfvalue/libfvalue_libfdatetime.h +58 -0
- libvslvm_python-20260901/libfvalue/libfvalue_libfguid.h +51 -0
- libvslvm_python-20260901/libfvalue/libfvalue_libfwnt.h +57 -0
- libvslvm_python-20260901/libfvalue/libfvalue_libuna.h +60 -0
- libvslvm_python-20260901/libfvalue/libfvalue_split_utf16_string.c +546 -0
- libvslvm_python-20260901/libfvalue/libfvalue_split_utf16_string.h +114 -0
- libvslvm_python-20260901/libfvalue/libfvalue_split_utf8_string.c +535 -0
- libvslvm_python-20260901/libfvalue/libfvalue_split_utf8_string.h +114 -0
- libvslvm_python-20260901/libfvalue/libfvalue_string.c +3070 -0
- libvslvm_python-20260901/libfvalue/libfvalue_string.h +165 -0
- libvslvm_python-20260901/libfvalue/libfvalue_support.c +41 -0
- libvslvm_python-20260901/libfvalue/libfvalue_support.h +47 -0
- libvslvm_python-20260901/libfvalue/libfvalue_table.c +1357 -0
- libvslvm_python-20260901/libfvalue/libfvalue_table.h +136 -0
- libvslvm_python-20260901/libfvalue/libfvalue_types.h +55 -0
- libvslvm_python-20260901/libfvalue/libfvalue_unused.h +44 -0
- libvslvm_python-20260901/libfvalue/libfvalue_utf16_string.c +300 -0
- libvslvm_python-20260901/libfvalue/libfvalue_utf16_string.h +50 -0
- libvslvm_python-20260901/libfvalue/libfvalue_utf8_string.c +300 -0
- libvslvm_python-20260901/libfvalue/libfvalue_utf8_string.h +50 -0
- libvslvm_python-20260901/libfvalue/libfvalue_value.c +5244 -0
- libvslvm_python-20260901/libfvalue/libfvalue_value.h +753 -0
- libvslvm_python-20260901/libfvalue/libfvalue_value_entry.c +210 -0
- libvslvm_python-20260901/libfvalue/libfvalue_value_entry.h +65 -0
- libvslvm_python-20260901/libfvalue/libfvalue_value_type.c +1183 -0
- libvslvm_python-20260901/libfvalue/libfvalue_value_type.h +100 -0
- libvslvm_python-20260901/libuna/Makefile.am +89 -0
- libvslvm_python-20260901/libuna/Makefile.in +1281 -0
- libvslvm_python-20260901/libuna/libuna_base16_stream.c +1511 -0
- libvslvm_python-20260901/libuna/libuna_base16_stream.h +93 -0
- libvslvm_python-20260901/libuna/libuna_base32_stream.c +3035 -0
- libvslvm_python-20260901/libuna/libuna_base32_stream.h +131 -0
- libvslvm_python-20260901/libuna/libuna_base64_stream.c +2832 -0
- libvslvm_python-20260901/libuna/libuna_base64_stream.h +131 -0
- libvslvm_python-20260901/libuna/libuna_byte_stream.c +633 -0
- libvslvm_python-20260901/libuna/libuna_byte_stream.h +104 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_10.c +73 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_10.h +48 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_13.c +82 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_13.h +48 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_14.c +66 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_14.h +51 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_15.c +46 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_15.h +45 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_16.c +78 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_16.h +57 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_2.c +82 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_2.h +51 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_3.c +79 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_3.h +57 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_4.c +80 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_4.h +48 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_5.c +62 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_5.h +45 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_6.c +58 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_6.h +45 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_7.c +66 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_7.h +48 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_8.c +61 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_8.h +48 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_9.c +50 -0
- libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_9.h +45 -0
- libvslvm_python-20260901/libuna/libuna_codepage_koi8_r.c +392 -0
- libvslvm_python-20260901/libuna/libuna_codepage_koi8_r.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_koi8_u.c +424 -0
- libvslvm_python-20260901/libuna/libuna_codepage_koi8_u.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_arabic.c +352 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_arabic.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_celtic.c +395 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_celtic.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_croatian.c +378 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_croatian.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_cyrillic.c +325 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_cyrillic.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_dingbats.c +347 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_dingbats.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_farsi.c +372 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_farsi.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_gaelic.c +437 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_gaelic.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_greek.c +305 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_greek.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_icelandic.c +381 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_icelandic.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_inuit.c +380 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_inuit.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_roman.c +387 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_roman.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_romanian.c +396 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_romanian.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_russian.c +317 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_russian.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_symbol.c +537 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_symbol.h +59 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_thai.c +330 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_thai.h +59 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_turkish.c +397 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_turkish.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_ukrainian.c +321 -0
- libvslvm_python-20260901/libuna/libuna_codepage_mac_ukrainian.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1250.c +313 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1250.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1251.c +301 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1251.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1252.c +287 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1252.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1253.c +291 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1253.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1254.c +348 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1254.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1255.c +328 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1255.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1256.c +372 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1256.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1257.c +303 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1257.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1258.c +349 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_1258.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_874.c +274 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_874.h +54 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_932.c +4913 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_932.h +59 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_936.c +7371 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_936.h +59 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_949.c +8163 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_949.h +59 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_950.c +6390 -0
- libvslvm_python-20260901/libuna/libuna_codepage_windows_950.h +59 -0
- libvslvm_python-20260901/libuna/libuna_definitions.h +436 -0
- libvslvm_python-20260901/libuna/libuna_error.c +111 -0
- libvslvm_python-20260901/libuna/libuna_error.h +74 -0
- libvslvm_python-20260901/libuna/libuna_extern.h +53 -0
- libvslvm_python-20260901/libuna/libuna_libcerror.h +50 -0
- libvslvm_python-20260901/libuna/libuna_scsu.c +64 -0
- libvslvm_python-20260901/libuna/libuna_scsu.h +45 -0
- libvslvm_python-20260901/libuna/libuna_support.c +39 -0
- libvslvm_python-20260901/libuna/libuna_support.h +49 -0
- libvslvm_python-20260901/libuna/libuna_types.h +53 -0
- libvslvm_python-20260901/libuna/libuna_unicode_character.c +5828 -0
- libvslvm_python-20260901/libuna/libuna_unicode_character.h +260 -0
- libvslvm_python-20260901/libuna/libuna_unused.h +44 -0
- libvslvm_python-20260901/libuna/libuna_url_stream.c +584 -0
- libvslvm_python-20260901/libuna/libuna_url_stream.h +71 -0
- libvslvm_python-20260901/libuna/libuna_utf16_stream.c +815 -0
- libvslvm_python-20260901/libuna/libuna_utf16_stream.h +109 -0
- libvslvm_python-20260901/libuna/libuna_utf16_string.c +3950 -0
- libvslvm_python-20260901/libuna/libuna_utf16_string.h +325 -0
- libvslvm_python-20260901/libuna/libuna_utf32_stream.c +819 -0
- libvslvm_python-20260901/libuna/libuna_utf32_stream.h +109 -0
- libvslvm_python-20260901/libuna/libuna_utf32_string.c +3808 -0
- libvslvm_python-20260901/libuna/libuna_utf32_string.h +321 -0
- libvslvm_python-20260901/libuna/libuna_utf7_stream.c +628 -0
- libvslvm_python-20260901/libuna/libuna_utf7_stream.h +98 -0
- libvslvm_python-20260901/libuna/libuna_utf8_stream.c +748 -0
- libvslvm_python-20260901/libuna/libuna_utf8_stream.h +105 -0
- libvslvm_python-20260901/libuna/libuna_utf8_string.c +4092 -0
- libvslvm_python-20260901/libuna/libuna_utf8_string.h +329 -0
- libvslvm_python-20260901/libvslvm/Makefile.am +93 -0
- libvslvm_python-20260901/libvslvm/Makefile.in +1054 -0
- libvslvm_python-20260901/libvslvm/libvslvm.c +84 -0
- libvslvm_python-20260901/libvslvm/libvslvm.rc +38 -0
- libvslvm_python-20260901/libvslvm/libvslvm.rc.in +38 -0
- libvslvm_python-20260901/libvslvm/libvslvm_checksum.c +204 -0
- libvslvm_python-20260901/libvslvm/libvslvm_checksum.h +63 -0
- libvslvm_python-20260901/libvslvm/libvslvm_chunk_data.c +283 -0
- libvslvm_python-20260901/libvslvm/libvslvm_chunk_data.h +69 -0
- libvslvm_python-20260901/libvslvm/libvslvm_data_area_descriptor.c +231 -0
- libvslvm_python-20260901/libvslvm/libvslvm_data_area_descriptor.h +72 -0
- libvslvm_python-20260901/libvslvm/libvslvm_debug.c +109 -0
- libvslvm_python-20260901/libvslvm/libvslvm_debug.h +48 -0
- libvslvm_python-20260901/libvslvm/libvslvm_definitions.h +80 -0
- libvslvm_python-20260901/libvslvm/libvslvm_definitions.h.in +80 -0
- libvslvm_python-20260901/libvslvm/libvslvm_error.c +111 -0
- libvslvm_python-20260901/libvslvm/libvslvm_error.h +74 -0
- libvslvm_python-20260901/libvslvm/libvslvm_extern.h +53 -0
- libvslvm_python-20260901/libvslvm/libvslvm_handle.c +2291 -0
- libvslvm_python-20260901/libvslvm/libvslvm_handle.h +195 -0
- libvslvm_python-20260901/libvslvm/libvslvm_io_handle.c +172 -0
- libvslvm_python-20260901/libvslvm/libvslvm_io_handle.h +64 -0
- libvslvm_python-20260901/libvslvm/libvslvm_libbfio.h +58 -0
- libvslvm_python-20260901/libvslvm/libvslvm_libcdata.h +54 -0
- libvslvm_python-20260901/libvslvm/libvslvm_libcerror.h +50 -0
- libvslvm_python-20260901/libvslvm/libvslvm_libclocale.h +50 -0
- libvslvm_python-20260901/libvslvm/libvslvm_libcnotify.h +50 -0
- libvslvm_python-20260901/libvslvm/libvslvm_libcsplit.h +52 -0
- libvslvm_python-20260901/libvslvm/libvslvm_libcthreads.h +64 -0
- libvslvm_python-20260901/libvslvm/libvslvm_libfcache.h +50 -0
- libvslvm_python-20260901/libvslvm/libvslvm_libfdata.h +54 -0
- libvslvm_python-20260901/libvslvm/libvslvm_libfvalue.h +60 -0
- libvslvm_python-20260901/libvslvm/libvslvm_logical_volume.c +1632 -0
- libvslvm_python-20260901/libvslvm/libvslvm_logical_volume.h +198 -0
- libvslvm_python-20260901/libvslvm/libvslvm_logical_volume_values.c +717 -0
- libvslvm_python-20260901/libvslvm/libvslvm_logical_volume_values.h +124 -0
- libvslvm_python-20260901/libvslvm/libvslvm_metadata.c +3975 -0
- libvslvm_python-20260901/libvslvm/libvslvm_metadata.h +136 -0
- libvslvm_python-20260901/libvslvm/libvslvm_metadata_area.c +574 -0
- libvslvm_python-20260901/libvslvm/libvslvm_metadata_area.h +71 -0
- libvslvm_python-20260901/libvslvm/libvslvm_notify.c +120 -0
- libvslvm_python-20260901/libvslvm/libvslvm_notify.h +63 -0
- libvslvm_python-20260901/libvslvm/libvslvm_physical_volume.c +1928 -0
- libvslvm_python-20260901/libvslvm/libvslvm_physical_volume.h +219 -0
- libvslvm_python-20260901/libvslvm/libvslvm_raw_location_descriptor.c +261 -0
- libvslvm_python-20260901/libvslvm/libvslvm_raw_location_descriptor.h +84 -0
- libvslvm_python-20260901/libvslvm/libvslvm_segment.c +596 -0
- libvslvm_python-20260901/libvslvm/libvslvm_segment.h +123 -0
- libvslvm_python-20260901/libvslvm/libvslvm_stripe.c +454 -0
- libvslvm_python-20260901/libvslvm/libvslvm_stripe.h +101 -0
- libvslvm_python-20260901/libvslvm/libvslvm_support.c +443 -0
- libvslvm_python-20260901/libvslvm/libvslvm_support.h +88 -0
- libvslvm_python-20260901/libvslvm/libvslvm_types.h +57 -0
- libvslvm_python-20260901/libvslvm/libvslvm_unused.h +44 -0
- libvslvm_python-20260901/libvslvm/libvslvm_volume_group.c +1224 -0
- libvslvm_python-20260901/libvslvm/libvslvm_volume_group.h +212 -0
- libvslvm_python-20260901/libvslvm/vslvm_metadata_area.h +93 -0
- libvslvm_python-20260901/libvslvm/vslvm_physical_volume_label.h +99 -0
- libvslvm_python-20260901/libvslvm.spec +100 -0
- libvslvm_python-20260901/ltmain.sh +11436 -0
- libvslvm_python-20260901/m4/common.m4 +656 -0
- libvslvm_python-20260901/m4/libbfio.m4 +215 -0
- libvslvm_python-20260901/m4/libcdata.m4 +227 -0
- libvslvm_python-20260901/m4/libcerror.m4 +186 -0
- libvslvm_python-20260901/m4/libcfile.m4 +307 -0
- libvslvm_python-20260901/m4/libclocale.m4 +242 -0
- libvslvm_python-20260901/m4/libcnotify.m4 +160 -0
- libvslvm_python-20260901/m4/libcpath.m4 +274 -0
- libvslvm_python-20260901/m4/libcsplit.m4 +183 -0
- libvslvm_python-20260901/m4/libcthreads.m4 +214 -0
- libvslvm_python-20260901/m4/libfcache.m4 +173 -0
- libvslvm_python-20260901/m4/libfdata.m4 +241 -0
- libvslvm_python-20260901/m4/libfuse.m4 +262 -0
- libvslvm_python-20260901/m4/libfvalue.m4 +240 -0
- libvslvm_python-20260901/m4/libtool.m4 +8427 -0
- libvslvm_python-20260901/m4/libuna.m4 +311 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/ltoptions.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/ltsugar.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/ltversion.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/lt~obsolete.m4 +0 -0
- libvslvm_python-20260901/m4/pthread.m4 +126 -0
- libvslvm_python-20260901/m4/python.m4 +222 -0
- libvslvm_python-20260901/m4/tests.m4 +319 -0
- libvslvm_python-20260901/m4/types.m4 +133 -0
- libvslvm_python-20260901/m4/yaltools.m4 +98 -0
- libvslvm_python-20260901/manuals/Makefile.am +12 -0
- libvslvm_python-20260901/manuals/Makefile.in +805 -0
- libvslvm_python-20260901/manuals/libvslvm.3 +619 -0
- libvslvm_python-20260901/manuals/vslvminfo.1 +93 -0
- libvslvm_python-20260901/manuals/vslvmmount.1 +70 -0
- libvslvm_python-20260901/msvscpp/Makefile.am +47 -0
- libvslvm_python-20260901/msvscpp/Makefile.in +716 -0
- libvslvm_python-20260901/msvscpp/libvslvm.sln +455 -0
- libvslvm_python-20260901/msvscpp/pyvslvm/pyvslvm.vcproj +332 -0
- libvslvm_python-20260901/msvscpp/vslvm_test_checksum/vslvm_test_checksum.vcproj +210 -0
- libvslvm_python-20260901/ossfuzz/Makefile.am +85 -0
- libvslvm_python-20260901/ossfuzz/Makefile.in +998 -0
- libvslvm_python-20260901/ossfuzz/handle_fuzzer.cc +151 -0
- libvslvm_python-20260901/ossfuzz/logical_volume_fuzzer.cc +257 -0
- libvslvm_python-20260901/ossfuzz/ossfuzz_libbfio.h +58 -0
- libvslvm_python-20260901/ossfuzz/ossfuzz_libvslvm.h +30 -0
- libvslvm_python-20260901/ossfuzz/volume_group_fuzzer.cc +226 -0
- libvslvm_python-20260901/po/Makevars +45 -0
- libvslvm_python-20260901/pyproject.toml +35 -0
- libvslvm_python-20260901/pyproject.toml.in +35 -0
- libvslvm_python-20260901/pyvslvm/Makefile.am +59 -0
- libvslvm_python-20260901/pyvslvm/Makefile.in +1124 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm.c +804 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm.h +71 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_error.c +422 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_error.h +60 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_file_object_io_handle.c +1524 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_file_object_io_handle.h +141 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_file_objects_io_pool.c +217 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_file_objects_io_pool.h +47 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_handle.c +1423 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_handle.h +104 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_integer.c +399 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_integer.h +56 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_libbfio.h +54 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_libcerror.h +50 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_libclocale.h +50 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_libvslvm.h +30 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_logical_volume.c +1282 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_logical_volume.h +119 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_logical_volumes.c +452 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_logical_volumes.h +95 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_physical_volume.c +742 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_physical_volume.h +87 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_physical_volumes.c +452 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_physical_volumes.h +95 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_python.h +83 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_segment.c +297 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_segment.h +71 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_segments.c +452 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_segments.h +95 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_stripe.c +297 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_stripe.h +71 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_stripes.c +452 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_stripes.h +95 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_unused.h +44 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_volume_group.c +1058 -0
- libvslvm_python-20260901/pyvslvm/pyvslvm_volume_group.h +118 -0
- libvslvm_python-20260901/tests/Makefile.am +423 -0
- libvslvm_python-20260901/tests/Makefile.in +1572 -0
- libvslvm_python-20260901/tests/atlocal.in +29 -0
- libvslvm_python-20260901/tests/generate_test_inputs.sh +301 -0
- libvslvm_python-20260901/tests/package.m4 +5 -0
- libvslvm_python-20260901/tests/pyvslvm_test_handle.py +157 -0
- libvslvm_python-20260901/tests/pyvslvm_test_support.py +111 -0
- libvslvm_python-20260901/tests/test_library.at +41 -0
- libvslvm_python-20260901/tests/test_macros.at +188 -0
- libvslvm_python-20260901/tests/test_manpages.at +73 -0
- libvslvm_python-20260901/tests/test_python_module.at +145 -0
- libvslvm_python-20260901/tests/test_tools.at +249 -0
- libvslvm_python-20260901/tests/vslvm_test_checksum.c +311 -0
- libvslvm_python-20260901/tests/vslvm_test_chunk_data.c +495 -0
- libvslvm_python-20260901/tests/vslvm_test_data_area_descriptor.c +311 -0
- libvslvm_python-20260901/tests/vslvm_test_error.c +150 -0
- libvslvm_python-20260901/tests/vslvm_test_functions.c +562 -0
- libvslvm_python-20260901/tests/vslvm_test_functions.h +66 -0
- libvslvm_python-20260901/tests/vslvm_test_getopt.c +190 -0
- libvslvm_python-20260901/tests/vslvm_test_getopt.h +68 -0
- libvslvm_python-20260901/tests/vslvm_test_handle.c +1574 -0
- libvslvm_python-20260901/tests/vslvm_test_io_handle.c +439 -0
- libvslvm_python-20260901/tests/vslvm_test_libbfio.h +58 -0
- libvslvm_python-20260901/tests/vslvm_test_libcerror.h +50 -0
- libvslvm_python-20260901/tests/vslvm_test_libclocale.h +50 -0
- libvslvm_python-20260901/tests/vslvm_test_libcnotify.h +50 -0
- libvslvm_python-20260901/tests/vslvm_test_libuna.h +60 -0
- libvslvm_python-20260901/tests/vslvm_test_libvslvm.h +30 -0
- libvslvm_python-20260901/tests/vslvm_test_logical_volume.c +136 -0
- libvslvm_python-20260901/tests/vslvm_test_logical_volume_values.c +700 -0
- libvslvm_python-20260901/tests/vslvm_test_macros.h +257 -0
- libvslvm_python-20260901/tests/vslvm_test_memory.c +199 -0
- libvslvm_python-20260901/tests/vslvm_test_memory.h +66 -0
- libvslvm_python-20260901/tests/vslvm_test_metadata.c +483 -0
- libvslvm_python-20260901/tests/vslvm_test_metadata_area.c +309 -0
- libvslvm_python-20260901/tests/vslvm_test_notify.c +229 -0
- libvslvm_python-20260901/tests/vslvm_test_physical_volume.c +1101 -0
- libvslvm_python-20260901/tests/vslvm_test_raw_location_descriptor.c +311 -0
- libvslvm_python-20260901/tests/vslvm_test_segment.c +704 -0
- libvslvm_python-20260901/tests/vslvm_test_stripe.c +575 -0
- libvslvm_python-20260901/tests/vslvm_test_support.c +773 -0
- libvslvm_python-20260901/tests/vslvm_test_tools_info_handle.c +299 -0
- libvslvm_python-20260901/tests/vslvm_test_tools_output.c +105 -0
- libvslvm_python-20260901/tests/vslvm_test_tools_signal.c +213 -0
- libvslvm_python-20260901/tests/vslvm_test_unused.h +50 -0
- libvslvm_python-20260901/tests/vslvm_test_volume_group.c +1097 -0
- libvslvm_python-20260901/vslvmtools/Makefile.am +96 -0
- libvslvm_python-20260901/vslvmtools/Makefile.in +1009 -0
- libvslvm_python-20260901/vslvmtools/byte_size_string.c +424 -0
- libvslvm_python-20260901/vslvmtools/byte_size_string.h +58 -0
- libvslvm_python-20260901/vslvmtools/info_handle.c +1989 -0
- libvslvm_python-20260901/vslvmtools/info_handle.h +132 -0
- libvslvm_python-20260901/vslvmtools/mount_dokan.c +1615 -0
- libvslvm_python-20260901/vslvmtools/mount_dokan.h +181 -0
- libvslvm_python-20260901/vslvmtools/mount_file_entry.c +933 -0
- libvslvm_python-20260901/vslvmtools/mount_file_entry.h +137 -0
- libvslvm_python-20260901/vslvmtools/mount_file_system.c +775 -0
- libvslvm_python-20260901/vslvmtools/mount_file_system.h +110 -0
- libvslvm_python-20260901/vslvmtools/mount_fuse.c +1406 -0
- libvslvm_python-20260901/vslvmtools/mount_fuse.h +155 -0
- libvslvm_python-20260901/vslvmtools/mount_handle.c +1169 -0
- libvslvm_python-20260901/vslvmtools/mount_handle.h +139 -0
- libvslvm_python-20260901/vslvmtools/vslvminfo.c +341 -0
- libvslvm_python-20260901/vslvmtools/vslvmmount.c +720 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_getopt.c +572 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_getopt.h +106 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_i18n.h +48 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_libbfio.h +58 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_libcdata.h +54 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_libcerror.h +50 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_libclocale.h +50 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_libcnotify.h +50 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_libcpath.h +48 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_libuna.h +60 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_libvslvm.h +30 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_output.c +172 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_output.h +55 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_signal.c +262 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_signal.h +72 -0
- libvslvm_python-20260901/vslvmtools/vslvmtools_unused.h +50 -0
- libvslvm-20240301/AUTHORS +0 -4
- libvslvm-20240301/Makefile.am +0 -107
- libvslvm-20240301/Makefile.in +0 -1197
- libvslvm-20240301/PKG-INFO +0 -13
- libvslvm-20240301/README +0 -19
- libvslvm-20240301/acinclude.m4 +0 -59
- libvslvm-20240301/aclocal.m4 +0 -1546
- libvslvm-20240301/common/Makefile.am +0 -25
- libvslvm-20240301/common/Makefile.in +0 -762
- libvslvm-20240301/common/byte_stream.h +0 -257
- libvslvm-20240301/common/common.h +0 -43
- libvslvm-20240301/common/config.h +0 -599
- libvslvm-20240301/common/config.h.in +0 -598
- libvslvm-20240301/common/config_borlandc.h +0 -26
- libvslvm-20240301/common/config_msc.h +0 -34
- libvslvm-20240301/common/config_winapi.h +0 -95
- libvslvm-20240301/common/file_stream.h +0 -151
- libvslvm-20240301/common/memory.h +0 -129
- libvslvm-20240301/common/narrow_string.h +0 -187
- libvslvm-20240301/common/system_string.h +0 -154
- libvslvm-20240301/common/types.h +0 -392
- libvslvm-20240301/common/types.h.in +0 -392
- libvslvm-20240301/common/wide_string.h +0 -175
- libvslvm-20240301/config.guess +0 -1774
- libvslvm-20240301/config.sub +0 -1907
- libvslvm-20240301/configure +0 -58562
- libvslvm-20240301/configure.ac +0 -239
- libvslvm-20240301/dpkg/changelog +0 -5
- libvslvm-20240301/dpkg/compat +0 -1
- libvslvm-20240301/dpkg/control +0 -65
- libvslvm-20240301/dpkg/copyright +0 -25
- libvslvm-20240301/dpkg/rules +0 -31
- libvslvm-20240301/include/Makefile.am +0 -27
- libvslvm-20240301/include/Makefile.in +0 -826
- libvslvm-20240301/include/libvslvm/codepage.h +0 -122
- libvslvm-20240301/include/libvslvm/definitions.h +0 -62
- libvslvm-20240301/include/libvslvm/definitions.h.in +0 -62
- libvslvm-20240301/include/libvslvm/error.h +0 -291
- libvslvm-20240301/include/libvslvm/extern.h +0 -44
- libvslvm-20240301/include/libvslvm/features.h +0 -50
- libvslvm-20240301/include/libvslvm/features.h.in +0 -50
- libvslvm-20240301/include/libvslvm/types.h +0 -216
- libvslvm-20240301/include/libvslvm/types.h.in +0 -216
- libvslvm-20240301/include/libvslvm.h +0 -725
- libvslvm-20240301/include/libvslvm.h.in +0 -725
- libvslvm-20240301/libbfio/Makefile.am +0 -54
- libvslvm-20240301/libbfio/Makefile.in +0 -911
- libvslvm-20240301/libbfio/libbfio_codepage.h +0 -90
- libvslvm-20240301/libbfio/libbfio_definitions.h +0 -89
- libvslvm-20240301/libbfio/libbfio_error.c +0 -111
- libvslvm-20240301/libbfio/libbfio_error.h +0 -74
- libvslvm-20240301/libbfio/libbfio_extern.h +0 -46
- libvslvm-20240301/libbfio/libbfio_file.c +0 -444
- libvslvm-20240301/libbfio/libbfio_file.h +0 -90
- libvslvm-20240301/libbfio/libbfio_file_io_handle.c +0 -1198
- libvslvm-20240301/libbfio/libbfio_file_io_handle.h +0 -152
- libvslvm-20240301/libbfio/libbfio_file_pool.c +0 -494
- libvslvm-20240301/libbfio/libbfio_file_pool.h +0 -81
- libvslvm-20240301/libbfio/libbfio_file_range.c +0 -468
- libvslvm-20240301/libbfio/libbfio_file_range.h +0 -104
- libvslvm-20240301/libbfio/libbfio_file_range_io_handle.c +0 -1158
- libvslvm-20240301/libbfio/libbfio_file_range_io_handle.h +0 -160
- libvslvm-20240301/libbfio/libbfio_handle.c +0 -2708
- libvslvm-20240301/libbfio/libbfio_handle.h +0 -363
- libvslvm-20240301/libbfio/libbfio_libcdata.h +0 -54
- libvslvm-20240301/libbfio/libbfio_libcerror.h +0 -50
- libvslvm-20240301/libbfio/libbfio_libcfile.h +0 -50
- libvslvm-20240301/libbfio/libbfio_libclocale.h +0 -50
- libvslvm-20240301/libbfio/libbfio_libcpath.h +0 -48
- libvslvm-20240301/libbfio/libbfio_libcthreads.h +0 -64
- libvslvm-20240301/libbfio/libbfio_libuna.h +0 -60
- libvslvm-20240301/libbfio/libbfio_memory_range.c +0 -205
- libvslvm-20240301/libbfio/libbfio_memory_range.h +0 -60
- libvslvm-20240301/libbfio/libbfio_memory_range_io_handle.c +0 -871
- libvslvm-20240301/libbfio/libbfio_memory_range_io_handle.h +0 -129
- libvslvm-20240301/libbfio/libbfio_pool.c +0 -3521
- libvslvm-20240301/libbfio/libbfio_pool.h +0 -275
- libvslvm-20240301/libbfio/libbfio_support.c +0 -93
- libvslvm-20240301/libbfio/libbfio_support.h +0 -58
- libvslvm-20240301/libbfio/libbfio_system_string.c +0 -1017
- libvslvm-20240301/libbfio/libbfio_system_string.h +0 -95
- libvslvm-20240301/libbfio/libbfio_types.h +0 -49
- libvslvm-20240301/libbfio/libbfio_unused.h +0 -44
- libvslvm-20240301/libcdata/Makefile.am +0 -42
- libvslvm-20240301/libcdata/Makefile.in +0 -895
- libvslvm-20240301/libcdata/libcdata_array.c +0 -2015
- libvslvm-20240301/libcdata/libcdata_array.h +0 -200
- libvslvm-20240301/libcdata/libcdata_btree.c +0 -964
- libvslvm-20240301/libcdata/libcdata_btree.h +0 -141
- libvslvm-20240301/libcdata/libcdata_btree_node.c +0 -1607
- libvslvm-20240301/libcdata/libcdata_btree_node.h +0 -101
- libvslvm-20240301/libcdata/libcdata_btree_values_list.c +0 -217
- libvslvm-20240301/libcdata/libcdata_btree_values_list.h +0 -55
- libvslvm-20240301/libcdata/libcdata_definitions.h +0 -81
- libvslvm-20240301/libcdata/libcdata_error.c +0 -111
- libvslvm-20240301/libcdata/libcdata_error.h +0 -74
- libvslvm-20240301/libcdata/libcdata_extern.h +0 -46
- libvslvm-20240301/libcdata/libcdata_libcerror.h +0 -50
- libvslvm-20240301/libcdata/libcdata_libcthreads.h +0 -64
- libvslvm-20240301/libcdata/libcdata_list.c +0 -2906
- libvslvm-20240301/libcdata/libcdata_list.h +0 -235
- libvslvm-20240301/libcdata/libcdata_list_element.c +0 -926
- libvslvm-20240301/libcdata/libcdata_list_element.h +0 -142
- libvslvm-20240301/libcdata/libcdata_range_list.c +0 -4922
- libvslvm-20240301/libcdata/libcdata_range_list.h +0 -382
- libvslvm-20240301/libcdata/libcdata_range_list_value.c +0 -429
- libvslvm-20240301/libcdata/libcdata_range_list_value.h +0 -100
- libvslvm-20240301/libcdata/libcdata_support.c +0 -39
- libvslvm-20240301/libcdata/libcdata_support.h +0 -47
- libvslvm-20240301/libcdata/libcdata_tree_node.c +0 -4216
- libvslvm-20240301/libcdata/libcdata_tree_node.h +0 -301
- libvslvm-20240301/libcdata/libcdata_types.h +0 -57
- libvslvm-20240301/libcdata/libcdata_unused.h +0 -44
- libvslvm-20240301/libcerror/Makefile.am +0 -29
- libvslvm-20240301/libcerror/Makefile.in +0 -845
- libvslvm-20240301/libcerror/libcerror_definitions.h +0 -326
- libvslvm-20240301/libcerror/libcerror_error.c +0 -827
- libvslvm-20240301/libcerror/libcerror_error.h +0 -125
- libvslvm-20240301/libcerror/libcerror_extern.h +0 -46
- libvslvm-20240301/libcerror/libcerror_support.c +0 -39
- libvslvm-20240301/libcerror/libcerror_support.h +0 -47
- libvslvm-20240301/libcerror/libcerror_system.c +0 -587
- libvslvm-20240301/libcerror/libcerror_system.h +0 -78
- libvslvm-20240301/libcerror/libcerror_types.h +0 -51
- libvslvm-20240301/libcerror/libcerror_unused.h +0 -44
- libvslvm-20240301/libcfile/Makefile.am +0 -40
- libvslvm-20240301/libcfile/Makefile.in +0 -869
- libvslvm-20240301/libcfile/libcfile_definitions.h +0 -101
- libvslvm-20240301/libcfile/libcfile_error.c +0 -111
- libvslvm-20240301/libcfile/libcfile_error.h +0 -74
- libvslvm-20240301/libcfile/libcfile_extern.h +0 -46
- libvslvm-20240301/libcfile/libcfile_file.c +0 -4570
- libvslvm-20240301/libcfile/libcfile_file.h +0 -273
- libvslvm-20240301/libcfile/libcfile_libcerror.h +0 -50
- libvslvm-20240301/libcfile/libcfile_libclocale.h +0 -50
- libvslvm-20240301/libcfile/libcfile_libcnotify.h +0 -50
- libvslvm-20240301/libcfile/libcfile_libuna.h +0 -60
- libvslvm-20240301/libcfile/libcfile_notify.c +0 -120
- libvslvm-20240301/libcfile/libcfile_notify.h +0 -63
- libvslvm-20240301/libcfile/libcfile_support.c +0 -1171
- libvslvm-20240301/libcfile/libcfile_support.h +0 -98
- libvslvm-20240301/libcfile/libcfile_system_string.c +0 -1017
- libvslvm-20240301/libcfile/libcfile_system_string.h +0 -95
- libvslvm-20240301/libcfile/libcfile_types.h +0 -47
- libvslvm-20240301/libcfile/libcfile_unused.h +0 -44
- libvslvm-20240301/libcfile/libcfile_winapi.c +0 -815
- libvslvm-20240301/libcfile/libcfile_winapi.h +0 -122
- libvslvm-20240301/libclocale/Makefile.am +0 -32
- libvslvm-20240301/libclocale/Makefile.in +0 -854
- libvslvm-20240301/libclocale/libclocale_codepage.c +0 -920
- libvslvm-20240301/libclocale/libclocale_codepage.h +0 -77
- libvslvm-20240301/libclocale/libclocale_definitions.h +0 -106
- libvslvm-20240301/libclocale/libclocale_extern.h +0 -46
- libvslvm-20240301/libclocale/libclocale_libcerror.h +0 -50
- libvslvm-20240301/libclocale/libclocale_locale.c +0 -494
- libvslvm-20240301/libclocale/libclocale_locale.h +0 -66
- libvslvm-20240301/libclocale/libclocale_support.c +0 -130
- libvslvm-20240301/libclocale/libclocale_support.h +0 -55
- libvslvm-20240301/libclocale/libclocale_unused.h +0 -44
- libvslvm-20240301/libclocale/libclocale_wide_string.c +0 -69
- libvslvm-20240301/libclocale/libclocale_wide_string.h +0 -54
- libvslvm-20240301/libcnotify/Makefile.am +0 -31
- libvslvm-20240301/libcnotify/Makefile.in +0 -852
- libvslvm-20240301/libcnotify/libcnotify_definitions.h +0 -54
- libvslvm-20240301/libcnotify/libcnotify_extern.h +0 -46
- libvslvm-20240301/libcnotify/libcnotify_libcerror.h +0 -50
- libvslvm-20240301/libcnotify/libcnotify_print.c +0 -400
- libvslvm-20240301/libcnotify/libcnotify_print.h +0 -68
- libvslvm-20240301/libcnotify/libcnotify_stream.c +0 -182
- libvslvm-20240301/libcnotify/libcnotify_stream.h +0 -56
- libvslvm-20240301/libcnotify/libcnotify_support.c +0 -39
- libvslvm-20240301/libcnotify/libcnotify_support.h +0 -49
- libvslvm-20240301/libcnotify/libcnotify_unused.h +0 -44
- libvslvm-20240301/libcnotify/libcnotify_verbose.c +0 -38
- libvslvm-20240301/libcnotify/libcnotify_verbose.h +0 -50
- libvslvm-20240301/libcpath/Makefile.am +0 -37
- libvslvm-20240301/libcpath/Makefile.in +0 -856
- libvslvm-20240301/libcpath/libcpath_definitions.h +0 -83
- libvslvm-20240301/libcpath/libcpath_error.c +0 -111
- libvslvm-20240301/libcpath/libcpath_error.h +0 -74
- libvslvm-20240301/libcpath/libcpath_extern.h +0 -46
- libvslvm-20240301/libcpath/libcpath_libcerror.h +0 -50
- libvslvm-20240301/libcpath/libcpath_libclocale.h +0 -50
- libvslvm-20240301/libcpath/libcpath_libcsplit.h +0 -52
- libvslvm-20240301/libcpath/libcpath_libuna.h +0 -60
- libvslvm-20240301/libcpath/libcpath_path.c +0 -7174
- libvslvm-20240301/libcpath/libcpath_path.h +0 -273
- libvslvm-20240301/libcpath/libcpath_support.c +0 -93
- libvslvm-20240301/libcpath/libcpath_support.h +0 -58
- libvslvm-20240301/libcpath/libcpath_system_string.c +0 -1017
- libvslvm-20240301/libcpath/libcpath_system_string.h +0 -95
- libvslvm-20240301/libcpath/libcpath_unused.h +0 -44
- libvslvm-20240301/libcsplit/Makefile.am +0 -34
- libvslvm-20240301/libcsplit/Makefile.in +0 -867
- libvslvm-20240301/libcsplit/libcsplit_definitions.h +0 -47
- libvslvm-20240301/libcsplit/libcsplit_error.c +0 -111
- libvslvm-20240301/libcsplit/libcsplit_error.h +0 -74
- libvslvm-20240301/libcsplit/libcsplit_extern.h +0 -46
- libvslvm-20240301/libcsplit/libcsplit_libcerror.h +0 -50
- libvslvm-20240301/libcsplit/libcsplit_narrow_split_string.c +0 -547
- libvslvm-20240301/libcsplit/libcsplit_narrow_split_string.h +0 -107
- libvslvm-20240301/libcsplit/libcsplit_narrow_string.c +0 -288
- libvslvm-20240301/libcsplit/libcsplit_narrow_string.h +0 -49
- libvslvm-20240301/libcsplit/libcsplit_support.c +0 -39
- libvslvm-20240301/libcsplit/libcsplit_support.h +0 -47
- libvslvm-20240301/libcsplit/libcsplit_types.h +0 -49
- libvslvm-20240301/libcsplit/libcsplit_unused.h +0 -44
- libvslvm-20240301/libcsplit/libcsplit_wide_split_string.c +0 -551
- libvslvm-20240301/libcsplit/libcsplit_wide_split_string.h +0 -111
- libvslvm-20240301/libcsplit/libcsplit_wide_string.c +0 -292
- libvslvm-20240301/libcsplit/libcsplit_wide_string.h +0 -53
- libvslvm-20240301/libcthreads/Makefile.am +0 -40
- libvslvm-20240301/libcthreads/Makefile.in +0 -897
- libvslvm-20240301/libcthreads/libcthreads_condition.c +0 -735
- libvslvm-20240301/libcthreads/libcthreads_condition.h +0 -120
- libvslvm-20240301/libcthreads/libcthreads_definitions.h +0 -84
- libvslvm-20240301/libcthreads/libcthreads_error.c +0 -111
- libvslvm-20240301/libcthreads/libcthreads_error.h +0 -74
- libvslvm-20240301/libcthreads/libcthreads_extern.h +0 -46
- libvslvm-20240301/libcthreads/libcthreads_libcerror.h +0 -50
- libvslvm-20240301/libcthreads/libcthreads_lock.c +0 -391
- libvslvm-20240301/libcthreads/libcthreads_lock.h +0 -88
- libvslvm-20240301/libcthreads/libcthreads_mutex.c +0 -601
- libvslvm-20240301/libcthreads/libcthreads_mutex.h +0 -98
- libvslvm-20240301/libcthreads/libcthreads_queue.c +0 -1150
- libvslvm-20240301/libcthreads/libcthreads_queue.h +0 -136
- libvslvm-20240301/libcthreads/libcthreads_read_write_lock.c +0 -690
- libvslvm-20240301/libcthreads/libcthreads_read_write_lock.h +0 -119
- libvslvm-20240301/libcthreads/libcthreads_repeating_thread.c +0 -644
- libvslvm-20240301/libcthreads/libcthreads_repeating_thread.h +0 -115
- libvslvm-20240301/libcthreads/libcthreads_support.c +0 -39
- libvslvm-20240301/libcthreads/libcthreads_support.h +0 -47
- libvslvm-20240301/libcthreads/libcthreads_thread.c +0 -405
- libvslvm-20240301/libcthreads/libcthreads_thread.h +0 -95
- libvslvm-20240301/libcthreads/libcthreads_thread_attributes.c +0 -149
- libvslvm-20240301/libcthreads/libcthreads_thread_attributes.h +0 -78
- libvslvm-20240301/libcthreads/libcthreads_thread_pool.c +0 -1721
- libvslvm-20240301/libcthreads/libcthreads_thread_pool.h +0 -177
- libvslvm-20240301/libcthreads/libcthreads_types.h +0 -63
- libvslvm-20240301/libcthreads/libcthreads_unused.h +0 -44
- libvslvm-20240301/libfcache/Makefile.am +0 -37
- libvslvm-20240301/libfcache/Makefile.in +0 -864
- libvslvm-20240301/libfcache/libfcache_cache.c +0 -1118
- libvslvm-20240301/libfcache/libfcache_cache.h +0 -149
- libvslvm-20240301/libfcache/libfcache_cache_value.c +0 -502
- libvslvm-20240301/libfcache/libfcache_cache_value.h +0 -132
- libvslvm-20240301/libfcache/libfcache_date_time.c +0 -92
- libvslvm-20240301/libfcache/libfcache_date_time.h +0 -45
- libvslvm-20240301/libfcache/libfcache_definitions.h +0 -58
- libvslvm-20240301/libfcache/libfcache_error.c +0 -111
- libvslvm-20240301/libfcache/libfcache_error.h +0 -74
- libvslvm-20240301/libfcache/libfcache_extern.h +0 -46
- libvslvm-20240301/libfcache/libfcache_libcdata.h +0 -54
- libvslvm-20240301/libfcache/libfcache_libcerror.h +0 -50
- libvslvm-20240301/libfcache/libfcache_support.c +0 -41
- libvslvm-20240301/libfcache/libfcache_support.h +0 -47
- libvslvm-20240301/libfcache/libfcache_types.h +0 -49
- libvslvm-20240301/libfcache/libfcache_unused.h +0 -44
- libvslvm-20240301/libfdata/Makefile.am +0 -49
- libvslvm-20240301/libfdata/Makefile.in +0 -909
- libvslvm-20240301/libfdata/libfdata_area.c +0 -1482
- libvslvm-20240301/libfdata/libfdata_area.h +0 -278
- libvslvm-20240301/libfdata/libfdata_cache.c +0 -59
- libvslvm-20240301/libfdata/libfdata_cache.h +0 -56
- libvslvm-20240301/libfdata/libfdata_definitions.h +0 -249
- libvslvm-20240301/libfdata/libfdata_error.c +0 -111
- libvslvm-20240301/libfdata/libfdata_error.h +0 -74
- libvslvm-20240301/libfdata/libfdata_extern.h +0 -46
- libvslvm-20240301/libfdata/libfdata_libcdata.h +0 -54
- libvslvm-20240301/libfdata/libfdata_libcerror.h +0 -50
- libvslvm-20240301/libfdata/libfdata_libcnotify.h +0 -50
- libvslvm-20240301/libfdata/libfdata_libfcache.h +0 -50
- libvslvm-20240301/libfdata/libfdata_list.c +0 -4426
- libvslvm-20240301/libfdata/libfdata_list.h +0 -452
- libvslvm-20240301/libfdata/libfdata_list_element.c +0 -824
- libvslvm-20240301/libfdata/libfdata_list_element.h +0 -159
- libvslvm-20240301/libfdata/libfdata_mapped_range.c +0 -312
- libvslvm-20240301/libfdata/libfdata_mapped_range.h +0 -77
- libvslvm-20240301/libfdata/libfdata_notify.c +0 -120
- libvslvm-20240301/libfdata/libfdata_notify.h +0 -63
- libvslvm-20240301/libfdata/libfdata_range.c +0 -358
- libvslvm-20240301/libfdata/libfdata_range.h +0 -94
- libvslvm-20240301/libfdata/libfdata_range_list.c +0 -1196
- libvslvm-20240301/libfdata/libfdata_range_list.h +0 -214
- libvslvm-20240301/libfdata/libfdata_segments_array.c +0 -914
- libvslvm-20240301/libfdata/libfdata_segments_array.h +0 -94
- libvslvm-20240301/libfdata/libfdata_stream.c +0 -2582
- libvslvm-20240301/libfdata/libfdata_stream.h +0 -363
- libvslvm-20240301/libfdata/libfdata_support.c +0 -41
- libvslvm-20240301/libfdata/libfdata_support.h +0 -47
- libvslvm-20240301/libfdata/libfdata_types.h +0 -59
- libvslvm-20240301/libfdata/libfdata_unused.h +0 -44
- libvslvm-20240301/libfdata/libfdata_vector.c +0 -1932
- libvslvm-20240301/libfdata/libfdata_vector.h +0 -295
- libvslvm-20240301/libfvalue/Makefile.am +0 -56
- libvslvm-20240301/libfvalue/Makefile.in +0 -940
- libvslvm-20240301/libfvalue/libfvalue_binary_data.c +0 -1546
- libvslvm-20240301/libfvalue/libfvalue_binary_data.h +0 -114
- libvslvm-20240301/libfvalue/libfvalue_codepage.h +0 -103
- libvslvm-20240301/libfvalue/libfvalue_data_handle.c +0 -1661
- libvslvm-20240301/libfvalue/libfvalue_data_handle.h +0 -195
- libvslvm-20240301/libfvalue/libfvalue_definitions.h +0 -350
- libvslvm-20240301/libfvalue/libfvalue_error.c +0 -111
- libvslvm-20240301/libfvalue/libfvalue_error.h +0 -74
- libvslvm-20240301/libfvalue/libfvalue_extern.h +0 -46
- libvslvm-20240301/libfvalue/libfvalue_filetime.c +0 -113
- libvslvm-20240301/libfvalue/libfvalue_filetime.h +0 -56
- libvslvm-20240301/libfvalue/libfvalue_floating_point.c +0 -3456
- libvslvm-20240301/libfvalue/libfvalue_floating_point.h +0 -246
- libvslvm-20240301/libfvalue/libfvalue_integer.c +0 -2886
- libvslvm-20240301/libfvalue/libfvalue_integer.h +0 -261
- libvslvm-20240301/libfvalue/libfvalue_libcdata.h +0 -54
- libvslvm-20240301/libfvalue/libfvalue_libcerror.h +0 -50
- libvslvm-20240301/libfvalue/libfvalue_libcnotify.h +0 -50
- libvslvm-20240301/libfvalue/libfvalue_libfdatetime.h +0 -58
- libvslvm-20240301/libfvalue/libfvalue_libfguid.h +0 -51
- libvslvm-20240301/libfvalue/libfvalue_libfwnt.h +0 -57
- libvslvm-20240301/libfvalue/libfvalue_libuna.h +0 -60
- libvslvm-20240301/libfvalue/libfvalue_split_utf16_string.c +0 -546
- libvslvm-20240301/libfvalue/libfvalue_split_utf16_string.h +0 -114
- libvslvm-20240301/libfvalue/libfvalue_split_utf8_string.c +0 -535
- libvslvm-20240301/libfvalue/libfvalue_split_utf8_string.h +0 -114
- libvslvm-20240301/libfvalue/libfvalue_string.c +0 -3070
- libvslvm-20240301/libfvalue/libfvalue_string.h +0 -165
- libvslvm-20240301/libfvalue/libfvalue_support.c +0 -41
- libvslvm-20240301/libfvalue/libfvalue_support.h +0 -47
- libvslvm-20240301/libfvalue/libfvalue_table.c +0 -1357
- libvslvm-20240301/libfvalue/libfvalue_table.h +0 -136
- libvslvm-20240301/libfvalue/libfvalue_types.h +0 -55
- libvslvm-20240301/libfvalue/libfvalue_unused.h +0 -44
- libvslvm-20240301/libfvalue/libfvalue_utf16_string.c +0 -300
- libvslvm-20240301/libfvalue/libfvalue_utf16_string.h +0 -50
- libvslvm-20240301/libfvalue/libfvalue_utf8_string.c +0 -300
- libvslvm-20240301/libfvalue/libfvalue_utf8_string.h +0 -50
- libvslvm-20240301/libfvalue/libfvalue_value.c +0 -5241
- libvslvm-20240301/libfvalue/libfvalue_value.h +0 -753
- libvslvm-20240301/libfvalue/libfvalue_value_entry.c +0 -210
- libvslvm-20240301/libfvalue/libfvalue_value_entry.h +0 -65
- libvslvm-20240301/libfvalue/libfvalue_value_type.c +0 -1183
- libvslvm-20240301/libfvalue/libfvalue_value_type.h +0 -100
- libvslvm-20240301/libuna/Makefile.am +0 -91
- libvslvm-20240301/libuna/Makefile.in +0 -1206
- libvslvm-20240301/libuna/libuna_base16_stream.c +0 -1511
- libvslvm-20240301/libuna/libuna_base16_stream.h +0 -93
- libvslvm-20240301/libuna/libuna_base32_stream.c +0 -3035
- libvslvm-20240301/libuna/libuna_base32_stream.h +0 -131
- libvslvm-20240301/libuna/libuna_base64_stream.c +0 -2832
- libvslvm-20240301/libuna/libuna_base64_stream.h +0 -131
- libvslvm-20240301/libuna/libuna_byte_stream.c +0 -633
- libvslvm-20240301/libuna/libuna_byte_stream.h +0 -104
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_10.c +0 -73
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_10.h +0 -48
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_13.c +0 -81
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_13.h +0 -48
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_14.c +0 -66
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_14.h +0 -51
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_15.c +0 -46
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_15.h +0 -45
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_16.c +0 -78
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_16.h +0 -57
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_2.c +0 -82
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_2.h +0 -51
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_3.c +0 -79
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_3.h +0 -57
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_4.c +0 -80
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_4.h +0 -48
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_5.c +0 -62
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_5.h +0 -45
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_6.c +0 -58
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_6.h +0 -45
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_7.c +0 -66
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_7.h +0 -48
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_8.c +0 -61
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_8.h +0 -48
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_9.c +0 -50
- libvslvm-20240301/libuna/libuna_codepage_iso_8859_9.h +0 -45
- libvslvm-20240301/libuna/libuna_codepage_koi8_r.c +0 -392
- libvslvm-20240301/libuna/libuna_codepage_koi8_r.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_koi8_u.c +0 -424
- libvslvm-20240301/libuna/libuna_codepage_koi8_u.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_arabic.c +0 -352
- libvslvm-20240301/libuna/libuna_codepage_mac_arabic.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_celtic.c +0 -395
- libvslvm-20240301/libuna/libuna_codepage_mac_celtic.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
- libvslvm-20240301/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_croatian.c +0 -378
- libvslvm-20240301/libuna/libuna_codepage_mac_croatian.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_cyrillic.c +0 -325
- libvslvm-20240301/libuna/libuna_codepage_mac_cyrillic.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_dingbats.c +0 -347
- libvslvm-20240301/libuna/libuna_codepage_mac_dingbats.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_farsi.c +0 -372
- libvslvm-20240301/libuna/libuna_codepage_mac_farsi.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_gaelic.c +0 -437
- libvslvm-20240301/libuna/libuna_codepage_mac_gaelic.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_greek.c +0 -305
- libvslvm-20240301/libuna/libuna_codepage_mac_greek.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_icelandic.c +0 -381
- libvslvm-20240301/libuna/libuna_codepage_mac_icelandic.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_inuit.c +0 -380
- libvslvm-20240301/libuna/libuna_codepage_mac_inuit.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_roman.c +0 -387
- libvslvm-20240301/libuna/libuna_codepage_mac_roman.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_romanian.c +0 -396
- libvslvm-20240301/libuna/libuna_codepage_mac_romanian.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_russian.c +0 -317
- libvslvm-20240301/libuna/libuna_codepage_mac_russian.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_symbol.c +0 -537
- libvslvm-20240301/libuna/libuna_codepage_mac_symbol.h +0 -59
- libvslvm-20240301/libuna/libuna_codepage_mac_thai.c +0 -330
- libvslvm-20240301/libuna/libuna_codepage_mac_thai.h +0 -59
- libvslvm-20240301/libuna/libuna_codepage_mac_turkish.c +0 -397
- libvslvm-20240301/libuna/libuna_codepage_mac_turkish.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_mac_ukrainian.c +0 -321
- libvslvm-20240301/libuna/libuna_codepage_mac_ukrainian.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_1250.c +0 -313
- libvslvm-20240301/libuna/libuna_codepage_windows_1250.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_1251.c +0 -301
- libvslvm-20240301/libuna/libuna_codepage_windows_1251.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_1252.c +0 -287
- libvslvm-20240301/libuna/libuna_codepage_windows_1252.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_1253.c +0 -291
- libvslvm-20240301/libuna/libuna_codepage_windows_1253.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_1254.c +0 -348
- libvslvm-20240301/libuna/libuna_codepage_windows_1254.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_1255.c +0 -328
- libvslvm-20240301/libuna/libuna_codepage_windows_1255.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_1256.c +0 -372
- libvslvm-20240301/libuna/libuna_codepage_windows_1256.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_1257.c +0 -303
- libvslvm-20240301/libuna/libuna_codepage_windows_1257.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_1258.c +0 -349
- libvslvm-20240301/libuna/libuna_codepage_windows_1258.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_874.c +0 -274
- libvslvm-20240301/libuna/libuna_codepage_windows_874.h +0 -54
- libvslvm-20240301/libuna/libuna_codepage_windows_932.c +0 -4913
- libvslvm-20240301/libuna/libuna_codepage_windows_932.h +0 -59
- libvslvm-20240301/libuna/libuna_codepage_windows_936.c +0 -7371
- libvslvm-20240301/libuna/libuna_codepage_windows_936.h +0 -59
- libvslvm-20240301/libuna/libuna_codepage_windows_949.c +0 -8168
- libvslvm-20240301/libuna/libuna_codepage_windows_949.h +0 -59
- libvslvm-20240301/libuna/libuna_codepage_windows_950.c +0 -6390
- libvslvm-20240301/libuna/libuna_codepage_windows_950.h +0 -59
- libvslvm-20240301/libuna/libuna_definitions.h +0 -436
- libvslvm-20240301/libuna/libuna_error.c +0 -111
- libvslvm-20240301/libuna/libuna_error.h +0 -74
- libvslvm-20240301/libuna/libuna_extern.h +0 -46
- libvslvm-20240301/libuna/libuna_libcerror.h +0 -50
- libvslvm-20240301/libuna/libuna_scsu.c +0 -64
- libvslvm-20240301/libuna/libuna_scsu.h +0 -45
- libvslvm-20240301/libuna/libuna_support.c +0 -39
- libvslvm-20240301/libuna/libuna_support.h +0 -49
- libvslvm-20240301/libuna/libuna_types.h +0 -53
- libvslvm-20240301/libuna/libuna_unicode_character.c +0 -5784
- libvslvm-20240301/libuna/libuna_unicode_character.h +0 -260
- libvslvm-20240301/libuna/libuna_unused.h +0 -44
- libvslvm-20240301/libuna/libuna_url_stream.c +0 -584
- libvslvm-20240301/libuna/libuna_url_stream.h +0 -71
- libvslvm-20240301/libuna/libuna_utf16_stream.c +0 -815
- libvslvm-20240301/libuna/libuna_utf16_stream.h +0 -109
- libvslvm-20240301/libuna/libuna_utf16_string.c +0 -3950
- libvslvm-20240301/libuna/libuna_utf16_string.h +0 -325
- libvslvm-20240301/libuna/libuna_utf32_stream.c +0 -819
- libvslvm-20240301/libuna/libuna_utf32_stream.h +0 -109
- libvslvm-20240301/libuna/libuna_utf32_string.c +0 -3808
- libvslvm-20240301/libuna/libuna_utf32_string.h +0 -321
- libvslvm-20240301/libuna/libuna_utf7_stream.c +0 -628
- libvslvm-20240301/libuna/libuna_utf7_stream.h +0 -98
- libvslvm-20240301/libuna/libuna_utf8_stream.c +0 -748
- libvslvm-20240301/libuna/libuna_utf8_stream.h +0 -105
- libvslvm-20240301/libuna/libuna_utf8_string.c +0 -4092
- libvslvm-20240301/libuna/libuna_utf8_string.h +0 -329
- libvslvm-20240301/libvslvm/Makefile.am +0 -95
- libvslvm-20240301/libvslvm/Makefile.in +0 -1023
- libvslvm-20240301/libvslvm/libvslvm.c +0 -80
- libvslvm-20240301/libvslvm/libvslvm.rc +0 -38
- libvslvm-20240301/libvslvm/libvslvm.rc.in +0 -38
- libvslvm-20240301/libvslvm/libvslvm_checksum.c +0 -202
- libvslvm-20240301/libvslvm/libvslvm_checksum.h +0 -56
- libvslvm-20240301/libvslvm/libvslvm_chunk_data.c +0 -283
- libvslvm-20240301/libvslvm/libvslvm_chunk_data.h +0 -69
- libvslvm-20240301/libvslvm/libvslvm_data_area_descriptor.c +0 -231
- libvslvm-20240301/libvslvm/libvslvm_data_area_descriptor.h +0 -72
- libvslvm-20240301/libvslvm/libvslvm_debug.c +0 -109
- libvslvm-20240301/libvslvm/libvslvm_debug.h +0 -48
- libvslvm-20240301/libvslvm/libvslvm_definitions.h +0 -80
- libvslvm-20240301/libvslvm/libvslvm_definitions.h.in +0 -80
- libvslvm-20240301/libvslvm/libvslvm_error.c +0 -111
- libvslvm-20240301/libvslvm/libvslvm_error.h +0 -74
- libvslvm-20240301/libvslvm/libvslvm_extern.h +0 -46
- libvslvm-20240301/libvslvm/libvslvm_handle.c +0 -2291
- libvslvm-20240301/libvslvm/libvslvm_handle.h +0 -195
- libvslvm-20240301/libvslvm/libvslvm_io_handle.c +0 -172
- libvslvm-20240301/libvslvm/libvslvm_io_handle.h +0 -64
- libvslvm-20240301/libvslvm/libvslvm_libbfio.h +0 -58
- libvslvm-20240301/libvslvm/libvslvm_libcdata.h +0 -54
- libvslvm-20240301/libvslvm/libvslvm_libcerror.h +0 -50
- libvslvm-20240301/libvslvm/libvslvm_libclocale.h +0 -50
- libvslvm-20240301/libvslvm/libvslvm_libcnotify.h +0 -50
- libvslvm-20240301/libvslvm/libvslvm_libcsplit.h +0 -52
- libvslvm-20240301/libvslvm/libvslvm_libcthreads.h +0 -64
- libvslvm-20240301/libvslvm/libvslvm_libfcache.h +0 -50
- libvslvm-20240301/libvslvm/libvslvm_libfdata.h +0 -54
- libvslvm-20240301/libvslvm/libvslvm_libfvalue.h +0 -60
- libvslvm-20240301/libvslvm/libvslvm_logical_volume.c +0 -1632
- libvslvm-20240301/libvslvm/libvslvm_logical_volume.h +0 -198
- libvslvm-20240301/libvslvm/libvslvm_logical_volume_values.c +0 -717
- libvslvm-20240301/libvslvm/libvslvm_logical_volume_values.h +0 -124
- libvslvm-20240301/libvslvm/libvslvm_metadata.c +0 -3975
- libvslvm-20240301/libvslvm/libvslvm_metadata.h +0 -136
- libvslvm-20240301/libvslvm/libvslvm_metadata_area.c +0 -574
- libvslvm-20240301/libvslvm/libvslvm_metadata_area.h +0 -71
- libvslvm-20240301/libvslvm/libvslvm_notify.c +0 -120
- libvslvm-20240301/libvslvm/libvslvm_notify.h +0 -63
- libvslvm-20240301/libvslvm/libvslvm_physical_volume.c +0 -1926
- libvslvm-20240301/libvslvm/libvslvm_physical_volume.h +0 -219
- libvslvm-20240301/libvslvm/libvslvm_raw_location_descriptor.c +0 -261
- libvslvm-20240301/libvslvm/libvslvm_raw_location_descriptor.h +0 -84
- libvslvm-20240301/libvslvm/libvslvm_segment.c +0 -596
- libvslvm-20240301/libvslvm/libvslvm_segment.h +0 -123
- libvslvm-20240301/libvslvm/libvslvm_stripe.c +0 -454
- libvslvm-20240301/libvslvm/libvslvm_stripe.h +0 -101
- libvslvm-20240301/libvslvm/libvslvm_support.c +0 -443
- libvslvm-20240301/libvslvm/libvslvm_support.h +0 -88
- libvslvm-20240301/libvslvm/libvslvm_types.h +0 -57
- libvslvm-20240301/libvslvm/libvslvm_unused.h +0 -44
- libvslvm-20240301/libvslvm/libvslvm_volume_group.c +0 -1224
- libvslvm-20240301/libvslvm/libvslvm_volume_group.h +0 -212
- libvslvm-20240301/libvslvm/vslvm_metadata_area.h +0 -93
- libvslvm-20240301/libvslvm/vslvm_physical_volume_label.h +0 -99
- libvslvm-20240301/libvslvm.spec +0 -100
- libvslvm-20240301/ltmain.sh +0 -11429
- libvslvm-20240301/m4/common.m4 +0 -578
- libvslvm-20240301/m4/libbfio.m4 +0 -419
- libvslvm-20240301/m4/libcdata.m4 +0 -596
- libvslvm-20240301/m4/libcerror.m4 +0 -234
- libvslvm-20240301/m4/libcfile.m4 +0 -426
- libvslvm-20240301/m4/libclocale.m4 +0 -288
- libvslvm-20240301/m4/libcnotify.m4 +0 -206
- libvslvm-20240301/m4/libcpath.m4 +0 -341
- libvslvm-20240301/m4/libcsplit.m4 +0 -246
- libvslvm-20240301/m4/libcthreads.m4 +0 -383
- libvslvm-20240301/m4/libfcache.m4 +0 -263
- libvslvm-20240301/m4/libfdata.m4 +0 -552
- libvslvm-20240301/m4/libfuse.m4 +0 -202
- libvslvm-20240301/m4/libfvalue.m4 +0 -688
- libvslvm-20240301/m4/libtool.m4 +0 -8403
- libvslvm-20240301/m4/libuna.m4 +0 -1041
- libvslvm-20240301/m4/pthread.m4 +0 -183
- libvslvm-20240301/m4/python.m4 +0 -206
- libvslvm-20240301/m4/tests.m4 +0 -33
- libvslvm-20240301/m4/types.m4 +0 -133
- libvslvm-20240301/manuals/Makefile.am +0 -14
- libvslvm-20240301/manuals/Makefile.in +0 -793
- libvslvm-20240301/manuals/libvslvm.3 +0 -207
- libvslvm-20240301/manuals/vslvminfo.1 +0 -84
- libvslvm-20240301/msvscpp/Makefile.am +0 -48
- libvslvm-20240301/msvscpp/Makefile.in +0 -703
- libvslvm-20240301/msvscpp/libvslvm.sln +0 -445
- libvslvm-20240301/msvscpp/pyvslvm/pyvslvm.vcproj +0 -332
- libvslvm-20240301/ossfuzz/Makefile.am +0 -66
- libvslvm-20240301/ossfuzz/Makefile.in +0 -946
- libvslvm-20240301/ossfuzz/handle_fuzzer.cc +0 -151
- libvslvm-20240301/ossfuzz/logical_volume_fuzzer.cc +0 -184
- libvslvm-20240301/ossfuzz/ossfuzz_libbfio.h +0 -58
- libvslvm-20240301/ossfuzz/ossfuzz_libvslvm.h +0 -30
- libvslvm-20240301/po/Makevars +0 -45
- libvslvm-20240301/pyproject.toml +0 -4
- libvslvm-20240301/pyvslvm/Makefile.am +0 -61
- libvslvm-20240301/pyvslvm/Makefile.in +0 -1097
- libvslvm-20240301/pyvslvm/pyvslvm.c +0 -804
- libvslvm-20240301/pyvslvm/pyvslvm.h +0 -71
- libvslvm-20240301/pyvslvm/pyvslvm_error.c +0 -422
- libvslvm-20240301/pyvslvm/pyvslvm_error.h +0 -60
- libvslvm-20240301/pyvslvm/pyvslvm_file_object_io_handle.c +0 -1524
- libvslvm-20240301/pyvslvm/pyvslvm_file_object_io_handle.h +0 -141
- libvslvm-20240301/pyvslvm/pyvslvm_file_objects_io_pool.c +0 -217
- libvslvm-20240301/pyvslvm/pyvslvm_file_objects_io_pool.h +0 -47
- libvslvm-20240301/pyvslvm/pyvslvm_handle.c +0 -1421
- libvslvm-20240301/pyvslvm/pyvslvm_handle.h +0 -104
- libvslvm-20240301/pyvslvm/pyvslvm_integer.c +0 -399
- libvslvm-20240301/pyvslvm/pyvslvm_integer.h +0 -56
- libvslvm-20240301/pyvslvm/pyvslvm_libbfio.h +0 -54
- libvslvm-20240301/pyvslvm/pyvslvm_libcerror.h +0 -50
- libvslvm-20240301/pyvslvm/pyvslvm_libclocale.h +0 -50
- libvslvm-20240301/pyvslvm/pyvslvm_libvslvm.h +0 -30
- libvslvm-20240301/pyvslvm/pyvslvm_logical_volume.c +0 -1282
- libvslvm-20240301/pyvslvm/pyvslvm_logical_volume.h +0 -119
- libvslvm-20240301/pyvslvm/pyvslvm_logical_volumes.c +0 -452
- libvslvm-20240301/pyvslvm/pyvslvm_logical_volumes.h +0 -95
- libvslvm-20240301/pyvslvm/pyvslvm_physical_volume.c +0 -742
- libvslvm-20240301/pyvslvm/pyvslvm_physical_volume.h +0 -87
- libvslvm-20240301/pyvslvm/pyvslvm_physical_volumes.c +0 -452
- libvslvm-20240301/pyvslvm/pyvslvm_physical_volumes.h +0 -95
- libvslvm-20240301/pyvslvm/pyvslvm_python.h +0 -83
- libvslvm-20240301/pyvslvm/pyvslvm_segment.c +0 -297
- libvslvm-20240301/pyvslvm/pyvslvm_segment.h +0 -71
- libvslvm-20240301/pyvslvm/pyvslvm_segments.c +0 -452
- libvslvm-20240301/pyvslvm/pyvslvm_segments.h +0 -95
- libvslvm-20240301/pyvslvm/pyvslvm_stripe.c +0 -297
- libvslvm-20240301/pyvslvm/pyvslvm_stripe.h +0 -71
- libvslvm-20240301/pyvslvm/pyvslvm_stripes.c +0 -452
- libvslvm-20240301/pyvslvm/pyvslvm_stripes.h +0 -95
- libvslvm-20240301/pyvslvm/pyvslvm_unused.h +0 -44
- libvslvm-20240301/pyvslvm/pyvslvm_volume_group.c +0 -1058
- libvslvm-20240301/pyvslvm/pyvslvm_volume_group.h +0 -118
- libvslvm-20240301/setup.cfg +0 -16
- libvslvm-20240301/setup.cfg.in +0 -16
- libvslvm-20240301/setup.py +0 -293
- libvslvm-20240301/test-driver +0 -153
- libvslvm-20240301/tests/Makefile.am +0 -334
- libvslvm-20240301/tests/Makefile.in +0 -1819
- libvslvm-20240301/tests/pyvslvm_test_handle.py +0 -157
- libvslvm-20240301/tests/pyvslvm_test_support.py +0 -111
- libvslvm-20240301/tests/test_library.sh +0 -196
- libvslvm-20240301/tests/test_manpage.sh +0 -101
- libvslvm-20240301/tests/test_python_module.sh +0 -187
- libvslvm-20240301/tests/test_runner.sh +0 -1148
- libvslvm-20240301/tests/test_tools.sh +0 -196
- libvslvm-20240301/tests/test_vslvminfo.sh +0 -149
- libvslvm-20240301/tests/vslvm_test_chunk_data.c +0 -497
- libvslvm-20240301/tests/vslvm_test_data_area_descriptor.c +0 -311
- libvslvm-20240301/tests/vslvm_test_error.c +0 -150
- libvslvm-20240301/tests/vslvm_test_functions.c +0 -562
- libvslvm-20240301/tests/vslvm_test_functions.h +0 -66
- libvslvm-20240301/tests/vslvm_test_getopt.c +0 -190
- libvslvm-20240301/tests/vslvm_test_getopt.h +0 -68
- libvslvm-20240301/tests/vslvm_test_handle.c +0 -1574
- libvslvm-20240301/tests/vslvm_test_io_handle.c +0 -439
- libvslvm-20240301/tests/vslvm_test_libbfio.h +0 -58
- libvslvm-20240301/tests/vslvm_test_libcerror.h +0 -50
- libvslvm-20240301/tests/vslvm_test_libclocale.h +0 -50
- libvslvm-20240301/tests/vslvm_test_libcnotify.h +0 -50
- libvslvm-20240301/tests/vslvm_test_libuna.h +0 -60
- libvslvm-20240301/tests/vslvm_test_libvslvm.h +0 -30
- libvslvm-20240301/tests/vslvm_test_logical_volume.c +0 -136
- libvslvm-20240301/tests/vslvm_test_logical_volume_values.c +0 -700
- libvslvm-20240301/tests/vslvm_test_macros.h +0 -257
- libvslvm-20240301/tests/vslvm_test_memory.c +0 -177
- libvslvm-20240301/tests/vslvm_test_memory.h +0 -52
- libvslvm-20240301/tests/vslvm_test_metadata.c +0 -483
- libvslvm-20240301/tests/vslvm_test_metadata_area.c +0 -309
- libvslvm-20240301/tests/vslvm_test_notify.c +0 -229
- libvslvm-20240301/tests/vslvm_test_physical_volume.c +0 -1101
- libvslvm-20240301/tests/vslvm_test_raw_location_descriptor.c +0 -311
- libvslvm-20240301/tests/vslvm_test_segment.c +0 -704
- libvslvm-20240301/tests/vslvm_test_stripe.c +0 -575
- libvslvm-20240301/tests/vslvm_test_support.c +0 -773
- libvslvm-20240301/tests/vslvm_test_tools_info_handle.c +0 -299
- libvslvm-20240301/tests/vslvm_test_tools_output.c +0 -105
- libvslvm-20240301/tests/vslvm_test_tools_signal.c +0 -213
- libvslvm-20240301/tests/vslvm_test_unused.h +0 -50
- libvslvm-20240301/tests/vslvm_test_volume_group.c +0 -1097
- libvslvm-20240301/vslvmtools/Makefile.am +0 -95
- libvslvm-20240301/vslvmtools/Makefile.in +0 -981
- libvslvm-20240301/vslvmtools/byte_size_string.c +0 -420
- libvslvm-20240301/vslvmtools/byte_size_string.h +0 -58
- libvslvm-20240301/vslvmtools/info_handle.c +0 -1989
- libvslvm-20240301/vslvmtools/info_handle.h +0 -132
- libvslvm-20240301/vslvmtools/mount_dokan.c +0 -1609
- libvslvm-20240301/vslvmtools/mount_dokan.h +0 -171
- libvslvm-20240301/vslvmtools/mount_file_entry.c +0 -933
- libvslvm-20240301/vslvmtools/mount_file_entry.h +0 -137
- libvslvm-20240301/vslvmtools/mount_file_system.c +0 -770
- libvslvm-20240301/vslvmtools/mount_file_system.h +0 -110
- libvslvm-20240301/vslvmtools/mount_fuse.c +0 -1318
- libvslvm-20240301/vslvmtools/mount_fuse.h +0 -112
- libvslvm-20240301/vslvmtools/mount_handle.c +0 -1169
- libvslvm-20240301/vslvmtools/mount_handle.h +0 -139
- libvslvm-20240301/vslvmtools/vslvminfo.c +0 -317
- libvslvm-20240301/vslvmtools/vslvmmount.c +0 -623
- libvslvm-20240301/vslvmtools/vslvmtools_getopt.c +0 -190
- libvslvm-20240301/vslvmtools/vslvmtools_getopt.h +0 -68
- libvslvm-20240301/vslvmtools/vslvmtools_i18n.h +0 -48
- libvslvm-20240301/vslvmtools/vslvmtools_libbfio.h +0 -58
- libvslvm-20240301/vslvmtools/vslvmtools_libcdata.h +0 -54
- libvslvm-20240301/vslvmtools/vslvmtools_libcerror.h +0 -50
- libvslvm-20240301/vslvmtools/vslvmtools_libclocale.h +0 -50
- libvslvm-20240301/vslvmtools/vslvmtools_libcnotify.h +0 -50
- libvslvm-20240301/vslvmtools/vslvmtools_libcpath.h +0 -48
- libvslvm-20240301/vslvmtools/vslvmtools_libuna.h +0 -60
- libvslvm-20240301/vslvmtools/vslvmtools_libvslvm.h +0 -30
- libvslvm-20240301/vslvmtools/vslvmtools_output.c +0 -179
- libvslvm-20240301/vslvmtools/vslvmtools_output.h +0 -55
- libvslvm-20240301/vslvmtools/vslvmtools_signal.c +0 -262
- libvslvm-20240301/vslvmtools/vslvmtools_signal.h +0 -72
- libvslvm-20240301/vslvmtools/vslvmtools_unused.h +0 -50
- {libvslvm-20240301 → libvslvm_python-20260901}/ABOUT-NLS +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/COPYING +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/COPYING.LESSER +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/ChangeLog +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/NEWS +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/compile +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/config.rpath +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/depcomp +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/changelog.in +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/libvslvm-dev.install +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/libvslvm-python3.install +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/libvslvm-tools.install +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/libvslvm.install +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/source/format +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/install-sh +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/libvslvm.pc.in +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/libvslvm.spec.in +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/gettext.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/host-cpu-c-abi.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/iconv.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/intlmacosx.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/lib-ld.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/lib-link.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/lib-prefix.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/nls.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/po.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/m4/progtest.m4 +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/missing +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libbfio/libbfio.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcdata/libcdata.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcfile/libcfile.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libclocale/libclocale.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcpath/libcpath.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libfcache/libfcache.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libfdata/libfdata.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libfvalue/libfvalue.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libuna/libuna.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libvslvm/libvslvm.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_chunk_data/vslvm_test_chunk_data.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_data_area_descriptor/vslvm_test_data_area_descriptor.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_error/vslvm_test_error.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_handle/vslvm_test_handle.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_io_handle/vslvm_test_io_handle.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_logical_volume/vslvm_test_logical_volume.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_logical_volume_values/vslvm_test_logical_volume_values.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_metadata/vslvm_test_metadata.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_metadata_area/vslvm_test_metadata_area.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_notify/vslvm_test_notify.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_physical_volume/vslvm_test_physical_volume.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_raw_location_descriptor/vslvm_test_raw_location_descriptor.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_segment/vslvm_test_segment.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_stripe/vslvm_test_stripe.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_support/vslvm_test_support.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_tools_info_handle/vslvm_test_tools_info_handle.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_tools_output/vslvm_test_tools_output.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_tools_signal/vslvm_test_tools_signal.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_volume_group/vslvm_test_volume_group.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvminfo/vslvminfo.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvmmount/vslvmmount.vcproj +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/ChangeLog +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/Makefile.in.in +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/Makevars.in +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/POTFILES.in +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/Rules-quot +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/boldquot.sed +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/en@boldquot.header +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/en@quot.header +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/insert-header.sin +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/quot.sed +0 -0
- {libvslvm-20240301 → libvslvm_python-20260901}/po/remove-potcdate.sin +0 -0
|
File without changes
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
ACLOCAL_AMFLAGS = -I m4
|
|
2
|
+
|
|
3
|
+
SUBDIRS = \
|
|
4
|
+
include \
|
|
5
|
+
common \
|
|
6
|
+
libcerror \
|
|
7
|
+
libcthreads \
|
|
8
|
+
libcdata \
|
|
9
|
+
libclocale \
|
|
10
|
+
libcnotify \
|
|
11
|
+
libcsplit \
|
|
12
|
+
libuna \
|
|
13
|
+
libcfile \
|
|
14
|
+
libcpath \
|
|
15
|
+
libbfio \
|
|
16
|
+
libfcache \
|
|
17
|
+
libfdata \
|
|
18
|
+
libfvalue \
|
|
19
|
+
libvslvm \
|
|
20
|
+
vslvmtools \
|
|
21
|
+
pyvslvm \
|
|
22
|
+
po \
|
|
23
|
+
manuals \
|
|
24
|
+
tests \
|
|
25
|
+
ossfuzz \
|
|
26
|
+
msvscpp
|
|
27
|
+
|
|
28
|
+
DPKG_FILES = \
|
|
29
|
+
dpkg/changelog \
|
|
30
|
+
dpkg/changelog.in \
|
|
31
|
+
dpkg/compat \
|
|
32
|
+
dpkg/control \
|
|
33
|
+
dpkg/copyright \
|
|
34
|
+
dpkg/rules \
|
|
35
|
+
dpkg/libvslvm.install \
|
|
36
|
+
dpkg/libvslvm-dev.install \
|
|
37
|
+
dpkg/libvslvm-python3.install \
|
|
38
|
+
dpkg/libvslvm-tools.install \
|
|
39
|
+
dpkg/source/format
|
|
40
|
+
|
|
41
|
+
GETTEXT_FILES = \
|
|
42
|
+
config.rpath \
|
|
43
|
+
po/Makevars.in
|
|
44
|
+
|
|
45
|
+
PKGCONFIG_FILES = \
|
|
46
|
+
libvslvm.pc.in
|
|
47
|
+
|
|
48
|
+
SETUP_PY_FILES = \
|
|
49
|
+
_build.py \
|
|
50
|
+
pyproject.toml \
|
|
51
|
+
pyproject.toml.in
|
|
52
|
+
|
|
53
|
+
SPEC_FILES = \
|
|
54
|
+
libvslvm.spec \
|
|
55
|
+
libvslvm.spec.in
|
|
56
|
+
|
|
57
|
+
EXTRA_DIST = \
|
|
58
|
+
$(DPKG_FILES) \
|
|
59
|
+
$(GETTEXT_FILES) \
|
|
60
|
+
$(PKGCONFIG_FILES) \
|
|
61
|
+
$(SETUP_PY_FILES) \
|
|
62
|
+
$(SPEC_FILES)
|
|
63
|
+
|
|
64
|
+
DISTCLEANFILES = \
|
|
65
|
+
config.status \
|
|
66
|
+
config.cache \
|
|
67
|
+
config.log \
|
|
68
|
+
libvslvm.pc \
|
|
69
|
+
libvslvm.spec \
|
|
70
|
+
Makefile \
|
|
71
|
+
Makefile.in \
|
|
72
|
+
po/Makevars
|
|
73
|
+
|
|
74
|
+
pkgconfigdir = $(libdir)/pkgconfig
|
|
75
|
+
|
|
76
|
+
pkgconfig_DATA = \
|
|
77
|
+
libvslvm.pc
|
|
78
|
+
|
|
79
|
+
check-build: all
|
|
80
|
+
cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
|
|
81
|
+
|
|
82
|
+
libtool: @LIBTOOL_DEPS@
|
|
83
|
+
cd $(srcdir) && $(SHELL) ./config.status --recheck
|
|
84
|
+
|
|
85
|
+
lib: library
|
|
86
|
+
|
|
87
|
+
library:
|
|
88
|
+
(cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
|
|
89
|
+
(cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
|
|
90
|
+
(cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
|
|
91
|
+
(cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
92
|
+
(cd $(srcdir)/libclocale && $(MAKE) $(AM_MAKEFLAGS))
|
|
93
|
+
(cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
|
|
94
|
+
(cd $(srcdir)/libcsplit && $(MAKE) $(AM_MAKEFLAGS))
|
|
95
|
+
(cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
|
|
96
|
+
(cd $(srcdir)/libcfile && $(MAKE) $(AM_MAKEFLAGS))
|
|
97
|
+
(cd $(srcdir)/libcpath && $(MAKE) $(AM_MAKEFLAGS))
|
|
98
|
+
(cd $(srcdir)/libbfio && $(MAKE) $(AM_MAKEFLAGS))
|
|
99
|
+
(cd $(srcdir)/libfcache && $(MAKE) $(AM_MAKEFLAGS))
|
|
100
|
+
(cd $(srcdir)/libfdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
101
|
+
(cd $(srcdir)/libfvalue && $(MAKE) $(AM_MAKEFLAGS))
|
|
102
|
+
(cd $(srcdir)/libvslvm && $(MAKE) $(AM_MAKEFLAGS))
|
|
103
|
+
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
|
|
104
|
+
|