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.
Files changed (1460) hide show
  1. libvslvm_python-20260901/AUTHORS +4 -0
  2. {libvslvm-20240301 → libvslvm_python-20260901}/INSTALL +0 -0
  3. libvslvm_python-20260901/Makefile.am +104 -0
  4. libvslvm_python-20260901/Makefile.in +1209 -0
  5. libvslvm_python-20260901/PKG-INFO +36 -0
  6. libvslvm_python-20260901/README +19 -0
  7. libvslvm_python-20260901/_build.py +275 -0
  8. libvslvm_python-20260901/acinclude.m4 +36 -0
  9. libvslvm_python-20260901/aclocal.m4 +1547 -0
  10. libvslvm_python-20260901/common/Makefile.am +24 -0
  11. libvslvm_python-20260901/common/Makefile.in +776 -0
  12. libvslvm_python-20260901/common/byte_stream.h +312 -0
  13. libvslvm_python-20260901/common/common.h +43 -0
  14. libvslvm_python-20260901/common/config.h +614 -0
  15. libvslvm_python-20260901/common/config.h.in +613 -0
  16. libvslvm_python-20260901/common/config_borlandc.h +26 -0
  17. libvslvm_python-20260901/common/config_msc.h +34 -0
  18. libvslvm_python-20260901/common/config_winapi.h +97 -0
  19. libvslvm_python-20260901/common/file_stream.h +151 -0
  20. libvslvm_python-20260901/common/memory.h +129 -0
  21. libvslvm_python-20260901/common/narrow_string.h +187 -0
  22. libvslvm_python-20260901/common/system_string.h +154 -0
  23. libvslvm_python-20260901/common/types.h +392 -0
  24. libvslvm_python-20260901/common/types.h.in +392 -0
  25. libvslvm_python-20260901/common/wide_string.h +175 -0
  26. libvslvm_python-20260901/config.guess +1754 -0
  27. libvslvm_python-20260901/config.sub +1890 -0
  28. libvslvm_python-20260901/configure +60652 -0
  29. libvslvm_python-20260901/configure.ac +251 -0
  30. libvslvm_python-20260901/dpkg/changelog +5 -0
  31. libvslvm_python-20260901/dpkg/compat +1 -0
  32. libvslvm_python-20260901/dpkg/control +65 -0
  33. libvslvm_python-20260901/dpkg/copyright +25 -0
  34. libvslvm_python-20260901/dpkg/rules +31 -0
  35. libvslvm_python-20260901/include/Makefile.am +25 -0
  36. libvslvm_python-20260901/include/Makefile.in +838 -0
  37. libvslvm_python-20260901/include/libvslvm/codepage.h +122 -0
  38. libvslvm_python-20260901/include/libvslvm/definitions.h +62 -0
  39. libvslvm_python-20260901/include/libvslvm/definitions.h.in +62 -0
  40. libvslvm_python-20260901/include/libvslvm/error.h +291 -0
  41. libvslvm_python-20260901/include/libvslvm/extern.h +47 -0
  42. libvslvm_python-20260901/include/libvslvm/features.h +50 -0
  43. libvslvm_python-20260901/include/libvslvm/features.h.in +50 -0
  44. libvslvm_python-20260901/include/libvslvm/types.h +216 -0
  45. libvslvm_python-20260901/include/libvslvm/types.h.in +216 -0
  46. libvslvm_python-20260901/include/libvslvm.h +725 -0
  47. libvslvm_python-20260901/include/libvslvm.h.in +725 -0
  48. libvslvm_python-20260901/libbfio/Makefile.am +54 -0
  49. libvslvm_python-20260901/libbfio/Makefile.in +939 -0
  50. libvslvm_python-20260901/libbfio/libbfio_codepage.h +90 -0
  51. libvslvm_python-20260901/libbfio/libbfio_definitions.h +89 -0
  52. libvslvm_python-20260901/libbfio/libbfio_error.c +111 -0
  53. libvslvm_python-20260901/libbfio/libbfio_error.h +74 -0
  54. libvslvm_python-20260901/libbfio/libbfio_extern.h +53 -0
  55. libvslvm_python-20260901/libbfio/libbfio_file.c +444 -0
  56. libvslvm_python-20260901/libbfio/libbfio_file.h +90 -0
  57. libvslvm_python-20260901/libbfio/libbfio_file_io_handle.c +1198 -0
  58. libvslvm_python-20260901/libbfio/libbfio_file_io_handle.h +152 -0
  59. libvslvm_python-20260901/libbfio/libbfio_file_pool.c +494 -0
  60. libvslvm_python-20260901/libbfio/libbfio_file_pool.h +81 -0
  61. libvslvm_python-20260901/libbfio/libbfio_file_range.c +468 -0
  62. libvslvm_python-20260901/libbfio/libbfio_file_range.h +104 -0
  63. libvslvm_python-20260901/libbfio/libbfio_file_range_io_handle.c +1158 -0
  64. libvslvm_python-20260901/libbfio/libbfio_file_range_io_handle.h +160 -0
  65. libvslvm_python-20260901/libbfio/libbfio_handle.c +2708 -0
  66. libvslvm_python-20260901/libbfio/libbfio_handle.h +363 -0
  67. libvslvm_python-20260901/libbfio/libbfio_libcdata.h +54 -0
  68. libvslvm_python-20260901/libbfio/libbfio_libcerror.h +50 -0
  69. libvslvm_python-20260901/libbfio/libbfio_libcfile.h +50 -0
  70. libvslvm_python-20260901/libbfio/libbfio_libclocale.h +50 -0
  71. libvslvm_python-20260901/libbfio/libbfio_libcpath.h +48 -0
  72. libvslvm_python-20260901/libbfio/libbfio_libcthreads.h +64 -0
  73. libvslvm_python-20260901/libbfio/libbfio_libuna.h +60 -0
  74. libvslvm_python-20260901/libbfio/libbfio_memory_range.c +205 -0
  75. libvslvm_python-20260901/libbfio/libbfio_memory_range.h +60 -0
  76. libvslvm_python-20260901/libbfio/libbfio_memory_range_io_handle.c +871 -0
  77. libvslvm_python-20260901/libbfio/libbfio_memory_range_io_handle.h +129 -0
  78. libvslvm_python-20260901/libbfio/libbfio_pool.c +3523 -0
  79. libvslvm_python-20260901/libbfio/libbfio_pool.h +275 -0
  80. libvslvm_python-20260901/libbfio/libbfio_support.c +93 -0
  81. libvslvm_python-20260901/libbfio/libbfio_support.h +58 -0
  82. libvslvm_python-20260901/libbfio/libbfio_system_string.c +1017 -0
  83. libvslvm_python-20260901/libbfio/libbfio_system_string.h +95 -0
  84. libvslvm_python-20260901/libbfio/libbfio_types.h +49 -0
  85. libvslvm_python-20260901/libbfio/libbfio_unused.h +44 -0
  86. libvslvm_python-20260901/libcdata/Makefile.am +40 -0
  87. libvslvm_python-20260901/libcdata/Makefile.in +918 -0
  88. libvslvm_python-20260901/libcdata/libcdata_array.c +2015 -0
  89. libvslvm_python-20260901/libcdata/libcdata_array.h +200 -0
  90. libvslvm_python-20260901/libcdata/libcdata_btree.c +964 -0
  91. libvslvm_python-20260901/libcdata/libcdata_btree.h +141 -0
  92. libvslvm_python-20260901/libcdata/libcdata_btree_node.c +1607 -0
  93. libvslvm_python-20260901/libcdata/libcdata_btree_node.h +101 -0
  94. libvslvm_python-20260901/libcdata/libcdata_btree_values_list.c +217 -0
  95. libvslvm_python-20260901/libcdata/libcdata_btree_values_list.h +55 -0
  96. libvslvm_python-20260901/libcdata/libcdata_definitions.h +81 -0
  97. libvslvm_python-20260901/libcdata/libcdata_error.c +111 -0
  98. libvslvm_python-20260901/libcdata/libcdata_error.h +74 -0
  99. libvslvm_python-20260901/libcdata/libcdata_extern.h +53 -0
  100. libvslvm_python-20260901/libcdata/libcdata_libcerror.h +50 -0
  101. libvslvm_python-20260901/libcdata/libcdata_libcthreads.h +64 -0
  102. libvslvm_python-20260901/libcdata/libcdata_list.c +2906 -0
  103. libvslvm_python-20260901/libcdata/libcdata_list.h +235 -0
  104. libvslvm_python-20260901/libcdata/libcdata_list_element.c +926 -0
  105. libvslvm_python-20260901/libcdata/libcdata_list_element.h +142 -0
  106. libvslvm_python-20260901/libcdata/libcdata_range_list.c +4922 -0
  107. libvslvm_python-20260901/libcdata/libcdata_range_list.h +382 -0
  108. libvslvm_python-20260901/libcdata/libcdata_range_list_value.c +429 -0
  109. libvslvm_python-20260901/libcdata/libcdata_range_list_value.h +100 -0
  110. libvslvm_python-20260901/libcdata/libcdata_support.c +39 -0
  111. libvslvm_python-20260901/libcdata/libcdata_support.h +47 -0
  112. libvslvm_python-20260901/libcdata/libcdata_tree_node.c +4271 -0
  113. libvslvm_python-20260901/libcdata/libcdata_tree_node.h +308 -0
  114. libvslvm_python-20260901/libcdata/libcdata_types.h +57 -0
  115. libvslvm_python-20260901/libcdata/libcdata_unused.h +44 -0
  116. libvslvm_python-20260901/libcerror/Makefile.am +27 -0
  117. libvslvm_python-20260901/libcerror/Makefile.in +860 -0
  118. libvslvm_python-20260901/libcerror/libcerror_definitions.h +326 -0
  119. libvslvm_python-20260901/libcerror/libcerror_error.c +827 -0
  120. libvslvm_python-20260901/libcerror/libcerror_error.h +125 -0
  121. libvslvm_python-20260901/libcerror/libcerror_extern.h +53 -0
  122. libvslvm_python-20260901/libcerror/libcerror_support.c +39 -0
  123. libvslvm_python-20260901/libcerror/libcerror_support.h +47 -0
  124. libvslvm_python-20260901/libcerror/libcerror_system.c +569 -0
  125. libvslvm_python-20260901/libcerror/libcerror_system.h +78 -0
  126. libvslvm_python-20260901/libcerror/libcerror_types.h +51 -0
  127. libvslvm_python-20260901/libcerror/libcerror_unused.h +44 -0
  128. libvslvm_python-20260901/libcfile/Makefile.am +38 -0
  129. libvslvm_python-20260901/libcfile/Makefile.in +887 -0
  130. libvslvm_python-20260901/libcfile/libcfile_definitions.h +101 -0
  131. libvslvm_python-20260901/libcfile/libcfile_error.c +111 -0
  132. libvslvm_python-20260901/libcfile/libcfile_error.h +74 -0
  133. libvslvm_python-20260901/libcfile/libcfile_extern.h +53 -0
  134. libvslvm_python-20260901/libcfile/libcfile_file.c +5022 -0
  135. libvslvm_python-20260901/libcfile/libcfile_file.h +277 -0
  136. libvslvm_python-20260901/libcfile/libcfile_libcerror.h +50 -0
  137. libvslvm_python-20260901/libcfile/libcfile_libclocale.h +50 -0
  138. libvslvm_python-20260901/libcfile/libcfile_libcnotify.h +50 -0
  139. libvslvm_python-20260901/libcfile/libcfile_libuna.h +60 -0
  140. libvslvm_python-20260901/libcfile/libcfile_notify.c +120 -0
  141. libvslvm_python-20260901/libcfile/libcfile_notify.h +63 -0
  142. libvslvm_python-20260901/libcfile/libcfile_support.c +1171 -0
  143. libvslvm_python-20260901/libcfile/libcfile_support.h +98 -0
  144. libvslvm_python-20260901/libcfile/libcfile_system_string.c +1017 -0
  145. libvslvm_python-20260901/libcfile/libcfile_system_string.h +95 -0
  146. libvslvm_python-20260901/libcfile/libcfile_types.h +47 -0
  147. libvslvm_python-20260901/libcfile/libcfile_unused.h +44 -0
  148. libvslvm_python-20260901/libcfile/libcfile_winapi.c +815 -0
  149. libvslvm_python-20260901/libcfile/libcfile_winapi.h +122 -0
  150. libvslvm_python-20260901/libclocale/Makefile.am +30 -0
  151. libvslvm_python-20260901/libclocale/Makefile.in +870 -0
  152. libvslvm_python-20260901/libclocale/libclocale_codepage.c +950 -0
  153. libvslvm_python-20260901/libclocale/libclocale_codepage.h +73 -0
  154. libvslvm_python-20260901/libclocale/libclocale_definitions.h +106 -0
  155. libvslvm_python-20260901/libclocale/libclocale_extern.h +53 -0
  156. libvslvm_python-20260901/libclocale/libclocale_libcerror.h +50 -0
  157. libvslvm_python-20260901/libclocale/libclocale_locale.c +494 -0
  158. libvslvm_python-20260901/libclocale/libclocale_locale.h +66 -0
  159. libvslvm_python-20260901/libclocale/libclocale_support.c +130 -0
  160. libvslvm_python-20260901/libclocale/libclocale_support.h +55 -0
  161. libvslvm_python-20260901/libclocale/libclocale_unused.h +44 -0
  162. libvslvm_python-20260901/libclocale/libclocale_wide_string.c +69 -0
  163. libvslvm_python-20260901/libclocale/libclocale_wide_string.h +54 -0
  164. libvslvm_python-20260901/libcnotify/Makefile.am +29 -0
  165. libvslvm_python-20260901/libcnotify/Makefile.in +868 -0
  166. libvslvm_python-20260901/libcnotify/libcnotify_definitions.h +54 -0
  167. libvslvm_python-20260901/libcnotify/libcnotify_extern.h +53 -0
  168. libvslvm_python-20260901/libcnotify/libcnotify_libcerror.h +50 -0
  169. libvslvm_python-20260901/libcnotify/libcnotify_print.c +386 -0
  170. libvslvm_python-20260901/libcnotify/libcnotify_print.h +68 -0
  171. libvslvm_python-20260901/libcnotify/libcnotify_stream.c +182 -0
  172. libvslvm_python-20260901/libcnotify/libcnotify_stream.h +59 -0
  173. libvslvm_python-20260901/libcnotify/libcnotify_support.c +39 -0
  174. libvslvm_python-20260901/libcnotify/libcnotify_support.h +49 -0
  175. libvslvm_python-20260901/libcnotify/libcnotify_unused.h +44 -0
  176. libvslvm_python-20260901/libcnotify/libcnotify_verbose.c +38 -0
  177. libvslvm_python-20260901/libcnotify/libcnotify_verbose.h +46 -0
  178. libvslvm_python-20260901/libcpath/Makefile.am +35 -0
  179. libvslvm_python-20260901/libcpath/Makefile.in +872 -0
  180. libvslvm_python-20260901/libcpath/libcpath_definitions.h +79 -0
  181. libvslvm_python-20260901/libcpath/libcpath_error.c +111 -0
  182. libvslvm_python-20260901/libcpath/libcpath_error.h +74 -0
  183. libvslvm_python-20260901/libcpath/libcpath_extern.h +53 -0
  184. libvslvm_python-20260901/libcpath/libcpath_libcerror.h +50 -0
  185. libvslvm_python-20260901/libcpath/libcpath_libclocale.h +50 -0
  186. libvslvm_python-20260901/libcpath/libcpath_libcsplit.h +52 -0
  187. libvslvm_python-20260901/libcpath/libcpath_libuna.h +60 -0
  188. libvslvm_python-20260901/libcpath/libcpath_path.c +7508 -0
  189. libvslvm_python-20260901/libcpath/libcpath_path.h +293 -0
  190. libvslvm_python-20260901/libcpath/libcpath_support.c +93 -0
  191. libvslvm_python-20260901/libcpath/libcpath_support.h +58 -0
  192. libvslvm_python-20260901/libcpath/libcpath_system_string.c +1017 -0
  193. libvslvm_python-20260901/libcpath/libcpath_system_string.h +95 -0
  194. libvslvm_python-20260901/libcpath/libcpath_unused.h +44 -0
  195. libvslvm_python-20260901/libcsplit/Makefile.am +32 -0
  196. libvslvm_python-20260901/libcsplit/Makefile.in +885 -0
  197. libvslvm_python-20260901/libcsplit/libcsplit_definitions.h +47 -0
  198. libvslvm_python-20260901/libcsplit/libcsplit_error.c +111 -0
  199. libvslvm_python-20260901/libcsplit/libcsplit_error.h +74 -0
  200. libvslvm_python-20260901/libcsplit/libcsplit_extern.h +53 -0
  201. libvslvm_python-20260901/libcsplit/libcsplit_libcerror.h +50 -0
  202. libvslvm_python-20260901/libcsplit/libcsplit_narrow_split_string.c +547 -0
  203. libvslvm_python-20260901/libcsplit/libcsplit_narrow_split_string.h +107 -0
  204. libvslvm_python-20260901/libcsplit/libcsplit_narrow_string.c +288 -0
  205. libvslvm_python-20260901/libcsplit/libcsplit_narrow_string.h +49 -0
  206. libvslvm_python-20260901/libcsplit/libcsplit_support.c +39 -0
  207. libvslvm_python-20260901/libcsplit/libcsplit_support.h +47 -0
  208. libvslvm_python-20260901/libcsplit/libcsplit_types.h +49 -0
  209. libvslvm_python-20260901/libcsplit/libcsplit_unused.h +44 -0
  210. libvslvm_python-20260901/libcsplit/libcsplit_wide_split_string.c +551 -0
  211. libvslvm_python-20260901/libcsplit/libcsplit_wide_split_string.h +111 -0
  212. libvslvm_python-20260901/libcsplit/libcsplit_wide_string.c +292 -0
  213. libvslvm_python-20260901/libcsplit/libcsplit_wide_string.h +53 -0
  214. libvslvm_python-20260901/libcthreads/Makefile.am +38 -0
  215. libvslvm_python-20260901/libcthreads/Makefile.in +920 -0
  216. libvslvm_python-20260901/libcthreads/libcthreads_condition.c +735 -0
  217. libvslvm_python-20260901/libcthreads/libcthreads_condition.h +120 -0
  218. libvslvm_python-20260901/libcthreads/libcthreads_definitions.h +84 -0
  219. libvslvm_python-20260901/libcthreads/libcthreads_error.c +111 -0
  220. libvslvm_python-20260901/libcthreads/libcthreads_error.h +74 -0
  221. libvslvm_python-20260901/libcthreads/libcthreads_extern.h +53 -0
  222. libvslvm_python-20260901/libcthreads/libcthreads_libcerror.h +50 -0
  223. libvslvm_python-20260901/libcthreads/libcthreads_lock.c +391 -0
  224. libvslvm_python-20260901/libcthreads/libcthreads_lock.h +88 -0
  225. libvslvm_python-20260901/libcthreads/libcthreads_mutex.c +601 -0
  226. libvslvm_python-20260901/libcthreads/libcthreads_mutex.h +98 -0
  227. libvslvm_python-20260901/libcthreads/libcthreads_queue.c +1150 -0
  228. libvslvm_python-20260901/libcthreads/libcthreads_queue.h +136 -0
  229. libvslvm_python-20260901/libcthreads/libcthreads_read_write_lock.c +690 -0
  230. libvslvm_python-20260901/libcthreads/libcthreads_read_write_lock.h +119 -0
  231. libvslvm_python-20260901/libcthreads/libcthreads_repeating_thread.c +683 -0
  232. libvslvm_python-20260901/libcthreads/libcthreads_repeating_thread.h +123 -0
  233. libvslvm_python-20260901/libcthreads/libcthreads_support.c +39 -0
  234. libvslvm_python-20260901/libcthreads/libcthreads_support.h +47 -0
  235. libvslvm_python-20260901/libcthreads/libcthreads_thread.c +411 -0
  236. libvslvm_python-20260901/libcthreads/libcthreads_thread.h +95 -0
  237. libvslvm_python-20260901/libcthreads/libcthreads_thread_attributes.c +149 -0
  238. libvslvm_python-20260901/libcthreads/libcthreads_thread_attributes.h +78 -0
  239. libvslvm_python-20260901/libcthreads/libcthreads_thread_pool.c +1725 -0
  240. libvslvm_python-20260901/libcthreads/libcthreads_thread_pool.h +177 -0
  241. libvslvm_python-20260901/libcthreads/libcthreads_types.h +63 -0
  242. libvslvm_python-20260901/libcthreads/libcthreads_unused.h +44 -0
  243. libvslvm_python-20260901/libfcache/Makefile.am +35 -0
  244. libvslvm_python-20260901/libfcache/Makefile.in +881 -0
  245. libvslvm_python-20260901/libfcache/libfcache_cache.c +1118 -0
  246. libvslvm_python-20260901/libfcache/libfcache_cache.h +149 -0
  247. libvslvm_python-20260901/libfcache/libfcache_cache_value.c +502 -0
  248. libvslvm_python-20260901/libfcache/libfcache_cache_value.h +132 -0
  249. libvslvm_python-20260901/libfcache/libfcache_date_time.c +92 -0
  250. libvslvm_python-20260901/libfcache/libfcache_date_time.h +45 -0
  251. libvslvm_python-20260901/libfcache/libfcache_definitions.h +58 -0
  252. libvslvm_python-20260901/libfcache/libfcache_error.c +111 -0
  253. libvslvm_python-20260901/libfcache/libfcache_error.h +74 -0
  254. libvslvm_python-20260901/libfcache/libfcache_extern.h +40 -0
  255. libvslvm_python-20260901/libfcache/libfcache_libcdata.h +54 -0
  256. libvslvm_python-20260901/libfcache/libfcache_libcerror.h +50 -0
  257. libvslvm_python-20260901/libfcache/libfcache_support.c +41 -0
  258. libvslvm_python-20260901/libfcache/libfcache_support.h +47 -0
  259. libvslvm_python-20260901/libfcache/libfcache_types.h +49 -0
  260. libvslvm_python-20260901/libfcache/libfcache_unused.h +44 -0
  261. libvslvm_python-20260901/libfdata/Makefile.am +47 -0
  262. libvslvm_python-20260901/libfdata/Makefile.in +934 -0
  263. libvslvm_python-20260901/libfdata/libfdata_area.c +1482 -0
  264. libvslvm_python-20260901/libfdata/libfdata_area.h +278 -0
  265. libvslvm_python-20260901/libfdata/libfdata_cache.c +59 -0
  266. libvslvm_python-20260901/libfdata/libfdata_cache.h +56 -0
  267. libvslvm_python-20260901/libfdata/libfdata_definitions.h +249 -0
  268. libvslvm_python-20260901/libfdata/libfdata_error.c +111 -0
  269. libvslvm_python-20260901/libfdata/libfdata_error.h +74 -0
  270. libvslvm_python-20260901/libfdata/libfdata_extern.h +40 -0
  271. libvslvm_python-20260901/libfdata/libfdata_libcdata.h +54 -0
  272. libvslvm_python-20260901/libfdata/libfdata_libcerror.h +50 -0
  273. libvslvm_python-20260901/libfdata/libfdata_libcnotify.h +50 -0
  274. libvslvm_python-20260901/libfdata/libfdata_libfcache.h +50 -0
  275. libvslvm_python-20260901/libfdata/libfdata_list.c +4426 -0
  276. libvslvm_python-20260901/libfdata/libfdata_list.h +452 -0
  277. libvslvm_python-20260901/libfdata/libfdata_list_element.c +824 -0
  278. libvslvm_python-20260901/libfdata/libfdata_list_element.h +159 -0
  279. libvslvm_python-20260901/libfdata/libfdata_mapped_range.c +312 -0
  280. libvslvm_python-20260901/libfdata/libfdata_mapped_range.h +77 -0
  281. libvslvm_python-20260901/libfdata/libfdata_notify.c +120 -0
  282. libvslvm_python-20260901/libfdata/libfdata_notify.h +63 -0
  283. libvslvm_python-20260901/libfdata/libfdata_range.c +358 -0
  284. libvslvm_python-20260901/libfdata/libfdata_range.h +94 -0
  285. libvslvm_python-20260901/libfdata/libfdata_range_list.c +1196 -0
  286. libvslvm_python-20260901/libfdata/libfdata_range_list.h +214 -0
  287. libvslvm_python-20260901/libfdata/libfdata_segments_array.c +914 -0
  288. libvslvm_python-20260901/libfdata/libfdata_segments_array.h +94 -0
  289. libvslvm_python-20260901/libfdata/libfdata_stream.c +2582 -0
  290. libvslvm_python-20260901/libfdata/libfdata_stream.h +363 -0
  291. libvslvm_python-20260901/libfdata/libfdata_support.c +41 -0
  292. libvslvm_python-20260901/libfdata/libfdata_support.h +47 -0
  293. libvslvm_python-20260901/libfdata/libfdata_types.h +59 -0
  294. libvslvm_python-20260901/libfdata/libfdata_unused.h +44 -0
  295. libvslvm_python-20260901/libfdata/libfdata_vector.c +1932 -0
  296. libvslvm_python-20260901/libfdata/libfdata_vector.h +295 -0
  297. libvslvm_python-20260901/libfvalue/Makefile.am +54 -0
  298. libvslvm_python-20260901/libfvalue/Makefile.in +968 -0
  299. libvslvm_python-20260901/libfvalue/libfvalue_binary_data.c +1390 -0
  300. libvslvm_python-20260901/libfvalue/libfvalue_binary_data.h +114 -0
  301. libvslvm_python-20260901/libfvalue/libfvalue_codepage.h +103 -0
  302. libvslvm_python-20260901/libfvalue/libfvalue_data_handle.c +1661 -0
  303. libvslvm_python-20260901/libfvalue/libfvalue_data_handle.h +195 -0
  304. libvslvm_python-20260901/libfvalue/libfvalue_definitions.h +350 -0
  305. libvslvm_python-20260901/libfvalue/libfvalue_error.c +111 -0
  306. libvslvm_python-20260901/libfvalue/libfvalue_error.h +74 -0
  307. libvslvm_python-20260901/libfvalue/libfvalue_extern.h +40 -0
  308. libvslvm_python-20260901/libfvalue/libfvalue_filetime.c +113 -0
  309. libvslvm_python-20260901/libfvalue/libfvalue_filetime.h +56 -0
  310. libvslvm_python-20260901/libfvalue/libfvalue_floating_point.c +3472 -0
  311. libvslvm_python-20260901/libfvalue/libfvalue_floating_point.h +246 -0
  312. libvslvm_python-20260901/libfvalue/libfvalue_integer.c +2908 -0
  313. libvslvm_python-20260901/libfvalue/libfvalue_integer.h +261 -0
  314. libvslvm_python-20260901/libfvalue/libfvalue_libcdata.h +54 -0
  315. libvslvm_python-20260901/libfvalue/libfvalue_libcerror.h +50 -0
  316. libvslvm_python-20260901/libfvalue/libfvalue_libcnotify.h +50 -0
  317. libvslvm_python-20260901/libfvalue/libfvalue_libfdatetime.h +58 -0
  318. libvslvm_python-20260901/libfvalue/libfvalue_libfguid.h +51 -0
  319. libvslvm_python-20260901/libfvalue/libfvalue_libfwnt.h +57 -0
  320. libvslvm_python-20260901/libfvalue/libfvalue_libuna.h +60 -0
  321. libvslvm_python-20260901/libfvalue/libfvalue_split_utf16_string.c +546 -0
  322. libvslvm_python-20260901/libfvalue/libfvalue_split_utf16_string.h +114 -0
  323. libvslvm_python-20260901/libfvalue/libfvalue_split_utf8_string.c +535 -0
  324. libvslvm_python-20260901/libfvalue/libfvalue_split_utf8_string.h +114 -0
  325. libvslvm_python-20260901/libfvalue/libfvalue_string.c +3070 -0
  326. libvslvm_python-20260901/libfvalue/libfvalue_string.h +165 -0
  327. libvslvm_python-20260901/libfvalue/libfvalue_support.c +41 -0
  328. libvslvm_python-20260901/libfvalue/libfvalue_support.h +47 -0
  329. libvslvm_python-20260901/libfvalue/libfvalue_table.c +1357 -0
  330. libvslvm_python-20260901/libfvalue/libfvalue_table.h +136 -0
  331. libvslvm_python-20260901/libfvalue/libfvalue_types.h +55 -0
  332. libvslvm_python-20260901/libfvalue/libfvalue_unused.h +44 -0
  333. libvslvm_python-20260901/libfvalue/libfvalue_utf16_string.c +300 -0
  334. libvslvm_python-20260901/libfvalue/libfvalue_utf16_string.h +50 -0
  335. libvslvm_python-20260901/libfvalue/libfvalue_utf8_string.c +300 -0
  336. libvslvm_python-20260901/libfvalue/libfvalue_utf8_string.h +50 -0
  337. libvslvm_python-20260901/libfvalue/libfvalue_value.c +5244 -0
  338. libvslvm_python-20260901/libfvalue/libfvalue_value.h +753 -0
  339. libvslvm_python-20260901/libfvalue/libfvalue_value_entry.c +210 -0
  340. libvslvm_python-20260901/libfvalue/libfvalue_value_entry.h +65 -0
  341. libvslvm_python-20260901/libfvalue/libfvalue_value_type.c +1183 -0
  342. libvslvm_python-20260901/libfvalue/libfvalue_value_type.h +100 -0
  343. libvslvm_python-20260901/libuna/Makefile.am +89 -0
  344. libvslvm_python-20260901/libuna/Makefile.in +1281 -0
  345. libvslvm_python-20260901/libuna/libuna_base16_stream.c +1511 -0
  346. libvslvm_python-20260901/libuna/libuna_base16_stream.h +93 -0
  347. libvslvm_python-20260901/libuna/libuna_base32_stream.c +3035 -0
  348. libvslvm_python-20260901/libuna/libuna_base32_stream.h +131 -0
  349. libvslvm_python-20260901/libuna/libuna_base64_stream.c +2832 -0
  350. libvslvm_python-20260901/libuna/libuna_base64_stream.h +131 -0
  351. libvslvm_python-20260901/libuna/libuna_byte_stream.c +633 -0
  352. libvslvm_python-20260901/libuna/libuna_byte_stream.h +104 -0
  353. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_10.c +73 -0
  354. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_10.h +48 -0
  355. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_13.c +82 -0
  356. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_13.h +48 -0
  357. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_14.c +66 -0
  358. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_14.h +51 -0
  359. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_15.c +46 -0
  360. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_15.h +45 -0
  361. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_16.c +78 -0
  362. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_16.h +57 -0
  363. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_2.c +82 -0
  364. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_2.h +51 -0
  365. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_3.c +79 -0
  366. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_3.h +57 -0
  367. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_4.c +80 -0
  368. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_4.h +48 -0
  369. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_5.c +62 -0
  370. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_5.h +45 -0
  371. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_6.c +58 -0
  372. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_6.h +45 -0
  373. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_7.c +66 -0
  374. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_7.h +48 -0
  375. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_8.c +61 -0
  376. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_8.h +48 -0
  377. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_9.c +50 -0
  378. libvslvm_python-20260901/libuna/libuna_codepage_iso_8859_9.h +45 -0
  379. libvslvm_python-20260901/libuna/libuna_codepage_koi8_r.c +392 -0
  380. libvslvm_python-20260901/libuna/libuna_codepage_koi8_r.h +54 -0
  381. libvslvm_python-20260901/libuna/libuna_codepage_koi8_u.c +424 -0
  382. libvslvm_python-20260901/libuna/libuna_codepage_koi8_u.h +54 -0
  383. libvslvm_python-20260901/libuna/libuna_codepage_mac_arabic.c +352 -0
  384. libvslvm_python-20260901/libuna/libuna_codepage_mac_arabic.h +54 -0
  385. libvslvm_python-20260901/libuna/libuna_codepage_mac_celtic.c +395 -0
  386. libvslvm_python-20260901/libuna/libuna_codepage_mac_celtic.h +54 -0
  387. libvslvm_python-20260901/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
  388. libvslvm_python-20260901/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
  389. libvslvm_python-20260901/libuna/libuna_codepage_mac_croatian.c +378 -0
  390. libvslvm_python-20260901/libuna/libuna_codepage_mac_croatian.h +54 -0
  391. libvslvm_python-20260901/libuna/libuna_codepage_mac_cyrillic.c +325 -0
  392. libvslvm_python-20260901/libuna/libuna_codepage_mac_cyrillic.h +54 -0
  393. libvslvm_python-20260901/libuna/libuna_codepage_mac_dingbats.c +347 -0
  394. libvslvm_python-20260901/libuna/libuna_codepage_mac_dingbats.h +54 -0
  395. libvslvm_python-20260901/libuna/libuna_codepage_mac_farsi.c +372 -0
  396. libvslvm_python-20260901/libuna/libuna_codepage_mac_farsi.h +54 -0
  397. libvslvm_python-20260901/libuna/libuna_codepage_mac_gaelic.c +437 -0
  398. libvslvm_python-20260901/libuna/libuna_codepage_mac_gaelic.h +54 -0
  399. libvslvm_python-20260901/libuna/libuna_codepage_mac_greek.c +305 -0
  400. libvslvm_python-20260901/libuna/libuna_codepage_mac_greek.h +54 -0
  401. libvslvm_python-20260901/libuna/libuna_codepage_mac_icelandic.c +381 -0
  402. libvslvm_python-20260901/libuna/libuna_codepage_mac_icelandic.h +54 -0
  403. libvslvm_python-20260901/libuna/libuna_codepage_mac_inuit.c +380 -0
  404. libvslvm_python-20260901/libuna/libuna_codepage_mac_inuit.h +54 -0
  405. libvslvm_python-20260901/libuna/libuna_codepage_mac_roman.c +387 -0
  406. libvslvm_python-20260901/libuna/libuna_codepage_mac_roman.h +54 -0
  407. libvslvm_python-20260901/libuna/libuna_codepage_mac_romanian.c +396 -0
  408. libvslvm_python-20260901/libuna/libuna_codepage_mac_romanian.h +54 -0
  409. libvslvm_python-20260901/libuna/libuna_codepage_mac_russian.c +317 -0
  410. libvslvm_python-20260901/libuna/libuna_codepage_mac_russian.h +54 -0
  411. libvslvm_python-20260901/libuna/libuna_codepage_mac_symbol.c +537 -0
  412. libvslvm_python-20260901/libuna/libuna_codepage_mac_symbol.h +59 -0
  413. libvslvm_python-20260901/libuna/libuna_codepage_mac_thai.c +330 -0
  414. libvslvm_python-20260901/libuna/libuna_codepage_mac_thai.h +59 -0
  415. libvslvm_python-20260901/libuna/libuna_codepage_mac_turkish.c +397 -0
  416. libvslvm_python-20260901/libuna/libuna_codepage_mac_turkish.h +54 -0
  417. libvslvm_python-20260901/libuna/libuna_codepage_mac_ukrainian.c +321 -0
  418. libvslvm_python-20260901/libuna/libuna_codepage_mac_ukrainian.h +54 -0
  419. libvslvm_python-20260901/libuna/libuna_codepage_windows_1250.c +313 -0
  420. libvslvm_python-20260901/libuna/libuna_codepage_windows_1250.h +54 -0
  421. libvslvm_python-20260901/libuna/libuna_codepage_windows_1251.c +301 -0
  422. libvslvm_python-20260901/libuna/libuna_codepage_windows_1251.h +54 -0
  423. libvslvm_python-20260901/libuna/libuna_codepage_windows_1252.c +287 -0
  424. libvslvm_python-20260901/libuna/libuna_codepage_windows_1252.h +54 -0
  425. libvslvm_python-20260901/libuna/libuna_codepage_windows_1253.c +291 -0
  426. libvslvm_python-20260901/libuna/libuna_codepage_windows_1253.h +54 -0
  427. libvslvm_python-20260901/libuna/libuna_codepage_windows_1254.c +348 -0
  428. libvslvm_python-20260901/libuna/libuna_codepage_windows_1254.h +54 -0
  429. libvslvm_python-20260901/libuna/libuna_codepage_windows_1255.c +328 -0
  430. libvslvm_python-20260901/libuna/libuna_codepage_windows_1255.h +54 -0
  431. libvslvm_python-20260901/libuna/libuna_codepage_windows_1256.c +372 -0
  432. libvslvm_python-20260901/libuna/libuna_codepage_windows_1256.h +54 -0
  433. libvslvm_python-20260901/libuna/libuna_codepage_windows_1257.c +303 -0
  434. libvslvm_python-20260901/libuna/libuna_codepage_windows_1257.h +54 -0
  435. libvslvm_python-20260901/libuna/libuna_codepage_windows_1258.c +349 -0
  436. libvslvm_python-20260901/libuna/libuna_codepage_windows_1258.h +54 -0
  437. libvslvm_python-20260901/libuna/libuna_codepage_windows_874.c +274 -0
  438. libvslvm_python-20260901/libuna/libuna_codepage_windows_874.h +54 -0
  439. libvslvm_python-20260901/libuna/libuna_codepage_windows_932.c +4913 -0
  440. libvslvm_python-20260901/libuna/libuna_codepage_windows_932.h +59 -0
  441. libvslvm_python-20260901/libuna/libuna_codepage_windows_936.c +7371 -0
  442. libvslvm_python-20260901/libuna/libuna_codepage_windows_936.h +59 -0
  443. libvslvm_python-20260901/libuna/libuna_codepage_windows_949.c +8163 -0
  444. libvslvm_python-20260901/libuna/libuna_codepage_windows_949.h +59 -0
  445. libvslvm_python-20260901/libuna/libuna_codepage_windows_950.c +6390 -0
  446. libvslvm_python-20260901/libuna/libuna_codepage_windows_950.h +59 -0
  447. libvslvm_python-20260901/libuna/libuna_definitions.h +436 -0
  448. libvslvm_python-20260901/libuna/libuna_error.c +111 -0
  449. libvslvm_python-20260901/libuna/libuna_error.h +74 -0
  450. libvslvm_python-20260901/libuna/libuna_extern.h +53 -0
  451. libvslvm_python-20260901/libuna/libuna_libcerror.h +50 -0
  452. libvslvm_python-20260901/libuna/libuna_scsu.c +64 -0
  453. libvslvm_python-20260901/libuna/libuna_scsu.h +45 -0
  454. libvslvm_python-20260901/libuna/libuna_support.c +39 -0
  455. libvslvm_python-20260901/libuna/libuna_support.h +49 -0
  456. libvslvm_python-20260901/libuna/libuna_types.h +53 -0
  457. libvslvm_python-20260901/libuna/libuna_unicode_character.c +5828 -0
  458. libvslvm_python-20260901/libuna/libuna_unicode_character.h +260 -0
  459. libvslvm_python-20260901/libuna/libuna_unused.h +44 -0
  460. libvslvm_python-20260901/libuna/libuna_url_stream.c +584 -0
  461. libvslvm_python-20260901/libuna/libuna_url_stream.h +71 -0
  462. libvslvm_python-20260901/libuna/libuna_utf16_stream.c +815 -0
  463. libvslvm_python-20260901/libuna/libuna_utf16_stream.h +109 -0
  464. libvslvm_python-20260901/libuna/libuna_utf16_string.c +3950 -0
  465. libvslvm_python-20260901/libuna/libuna_utf16_string.h +325 -0
  466. libvslvm_python-20260901/libuna/libuna_utf32_stream.c +819 -0
  467. libvslvm_python-20260901/libuna/libuna_utf32_stream.h +109 -0
  468. libvslvm_python-20260901/libuna/libuna_utf32_string.c +3808 -0
  469. libvslvm_python-20260901/libuna/libuna_utf32_string.h +321 -0
  470. libvslvm_python-20260901/libuna/libuna_utf7_stream.c +628 -0
  471. libvslvm_python-20260901/libuna/libuna_utf7_stream.h +98 -0
  472. libvslvm_python-20260901/libuna/libuna_utf8_stream.c +748 -0
  473. libvslvm_python-20260901/libuna/libuna_utf8_stream.h +105 -0
  474. libvslvm_python-20260901/libuna/libuna_utf8_string.c +4092 -0
  475. libvslvm_python-20260901/libuna/libuna_utf8_string.h +329 -0
  476. libvslvm_python-20260901/libvslvm/Makefile.am +93 -0
  477. libvslvm_python-20260901/libvslvm/Makefile.in +1054 -0
  478. libvslvm_python-20260901/libvslvm/libvslvm.c +84 -0
  479. libvslvm_python-20260901/libvslvm/libvslvm.rc +38 -0
  480. libvslvm_python-20260901/libvslvm/libvslvm.rc.in +38 -0
  481. libvslvm_python-20260901/libvslvm/libvslvm_checksum.c +204 -0
  482. libvslvm_python-20260901/libvslvm/libvslvm_checksum.h +63 -0
  483. libvslvm_python-20260901/libvslvm/libvslvm_chunk_data.c +283 -0
  484. libvslvm_python-20260901/libvslvm/libvslvm_chunk_data.h +69 -0
  485. libvslvm_python-20260901/libvslvm/libvslvm_data_area_descriptor.c +231 -0
  486. libvslvm_python-20260901/libvslvm/libvslvm_data_area_descriptor.h +72 -0
  487. libvslvm_python-20260901/libvslvm/libvslvm_debug.c +109 -0
  488. libvslvm_python-20260901/libvslvm/libvslvm_debug.h +48 -0
  489. libvslvm_python-20260901/libvslvm/libvslvm_definitions.h +80 -0
  490. libvslvm_python-20260901/libvslvm/libvslvm_definitions.h.in +80 -0
  491. libvslvm_python-20260901/libvslvm/libvslvm_error.c +111 -0
  492. libvslvm_python-20260901/libvslvm/libvslvm_error.h +74 -0
  493. libvslvm_python-20260901/libvslvm/libvslvm_extern.h +53 -0
  494. libvslvm_python-20260901/libvslvm/libvslvm_handle.c +2291 -0
  495. libvslvm_python-20260901/libvslvm/libvslvm_handle.h +195 -0
  496. libvslvm_python-20260901/libvslvm/libvslvm_io_handle.c +172 -0
  497. libvslvm_python-20260901/libvslvm/libvslvm_io_handle.h +64 -0
  498. libvslvm_python-20260901/libvslvm/libvslvm_libbfio.h +58 -0
  499. libvslvm_python-20260901/libvslvm/libvslvm_libcdata.h +54 -0
  500. libvslvm_python-20260901/libvslvm/libvslvm_libcerror.h +50 -0
  501. libvslvm_python-20260901/libvslvm/libvslvm_libclocale.h +50 -0
  502. libvslvm_python-20260901/libvslvm/libvslvm_libcnotify.h +50 -0
  503. libvslvm_python-20260901/libvslvm/libvslvm_libcsplit.h +52 -0
  504. libvslvm_python-20260901/libvslvm/libvslvm_libcthreads.h +64 -0
  505. libvslvm_python-20260901/libvslvm/libvslvm_libfcache.h +50 -0
  506. libvslvm_python-20260901/libvslvm/libvslvm_libfdata.h +54 -0
  507. libvslvm_python-20260901/libvslvm/libvslvm_libfvalue.h +60 -0
  508. libvslvm_python-20260901/libvslvm/libvslvm_logical_volume.c +1632 -0
  509. libvslvm_python-20260901/libvslvm/libvslvm_logical_volume.h +198 -0
  510. libvslvm_python-20260901/libvslvm/libvslvm_logical_volume_values.c +717 -0
  511. libvslvm_python-20260901/libvslvm/libvslvm_logical_volume_values.h +124 -0
  512. libvslvm_python-20260901/libvslvm/libvslvm_metadata.c +3975 -0
  513. libvslvm_python-20260901/libvslvm/libvslvm_metadata.h +136 -0
  514. libvslvm_python-20260901/libvslvm/libvslvm_metadata_area.c +574 -0
  515. libvslvm_python-20260901/libvslvm/libvslvm_metadata_area.h +71 -0
  516. libvslvm_python-20260901/libvslvm/libvslvm_notify.c +120 -0
  517. libvslvm_python-20260901/libvslvm/libvslvm_notify.h +63 -0
  518. libvslvm_python-20260901/libvslvm/libvslvm_physical_volume.c +1928 -0
  519. libvslvm_python-20260901/libvslvm/libvslvm_physical_volume.h +219 -0
  520. libvslvm_python-20260901/libvslvm/libvslvm_raw_location_descriptor.c +261 -0
  521. libvslvm_python-20260901/libvslvm/libvslvm_raw_location_descriptor.h +84 -0
  522. libvslvm_python-20260901/libvslvm/libvslvm_segment.c +596 -0
  523. libvslvm_python-20260901/libvslvm/libvslvm_segment.h +123 -0
  524. libvslvm_python-20260901/libvslvm/libvslvm_stripe.c +454 -0
  525. libvslvm_python-20260901/libvslvm/libvslvm_stripe.h +101 -0
  526. libvslvm_python-20260901/libvslvm/libvslvm_support.c +443 -0
  527. libvslvm_python-20260901/libvslvm/libvslvm_support.h +88 -0
  528. libvslvm_python-20260901/libvslvm/libvslvm_types.h +57 -0
  529. libvslvm_python-20260901/libvslvm/libvslvm_unused.h +44 -0
  530. libvslvm_python-20260901/libvslvm/libvslvm_volume_group.c +1224 -0
  531. libvslvm_python-20260901/libvslvm/libvslvm_volume_group.h +212 -0
  532. libvslvm_python-20260901/libvslvm/vslvm_metadata_area.h +93 -0
  533. libvslvm_python-20260901/libvslvm/vslvm_physical_volume_label.h +99 -0
  534. libvslvm_python-20260901/libvslvm.spec +100 -0
  535. libvslvm_python-20260901/ltmain.sh +11436 -0
  536. libvslvm_python-20260901/m4/common.m4 +656 -0
  537. libvslvm_python-20260901/m4/libbfio.m4 +215 -0
  538. libvslvm_python-20260901/m4/libcdata.m4 +227 -0
  539. libvslvm_python-20260901/m4/libcerror.m4 +186 -0
  540. libvslvm_python-20260901/m4/libcfile.m4 +307 -0
  541. libvslvm_python-20260901/m4/libclocale.m4 +242 -0
  542. libvslvm_python-20260901/m4/libcnotify.m4 +160 -0
  543. libvslvm_python-20260901/m4/libcpath.m4 +274 -0
  544. libvslvm_python-20260901/m4/libcsplit.m4 +183 -0
  545. libvslvm_python-20260901/m4/libcthreads.m4 +214 -0
  546. libvslvm_python-20260901/m4/libfcache.m4 +173 -0
  547. libvslvm_python-20260901/m4/libfdata.m4 +241 -0
  548. libvslvm_python-20260901/m4/libfuse.m4 +262 -0
  549. libvslvm_python-20260901/m4/libfvalue.m4 +240 -0
  550. libvslvm_python-20260901/m4/libtool.m4 +8427 -0
  551. libvslvm_python-20260901/m4/libuna.m4 +311 -0
  552. {libvslvm-20240301 → libvslvm_python-20260901}/m4/ltoptions.m4 +0 -0
  553. {libvslvm-20240301 → libvslvm_python-20260901}/m4/ltsugar.m4 +0 -0
  554. {libvslvm-20240301 → libvslvm_python-20260901}/m4/ltversion.m4 +0 -0
  555. {libvslvm-20240301 → libvslvm_python-20260901}/m4/lt~obsolete.m4 +0 -0
  556. libvslvm_python-20260901/m4/pthread.m4 +126 -0
  557. libvslvm_python-20260901/m4/python.m4 +222 -0
  558. libvslvm_python-20260901/m4/tests.m4 +319 -0
  559. libvslvm_python-20260901/m4/types.m4 +133 -0
  560. libvslvm_python-20260901/m4/yaltools.m4 +98 -0
  561. libvslvm_python-20260901/manuals/Makefile.am +12 -0
  562. libvslvm_python-20260901/manuals/Makefile.in +805 -0
  563. libvslvm_python-20260901/manuals/libvslvm.3 +619 -0
  564. libvslvm_python-20260901/manuals/vslvminfo.1 +93 -0
  565. libvslvm_python-20260901/manuals/vslvmmount.1 +70 -0
  566. libvslvm_python-20260901/msvscpp/Makefile.am +47 -0
  567. libvslvm_python-20260901/msvscpp/Makefile.in +716 -0
  568. libvslvm_python-20260901/msvscpp/libvslvm.sln +455 -0
  569. libvslvm_python-20260901/msvscpp/pyvslvm/pyvslvm.vcproj +332 -0
  570. libvslvm_python-20260901/msvscpp/vslvm_test_checksum/vslvm_test_checksum.vcproj +210 -0
  571. libvslvm_python-20260901/ossfuzz/Makefile.am +85 -0
  572. libvslvm_python-20260901/ossfuzz/Makefile.in +998 -0
  573. libvslvm_python-20260901/ossfuzz/handle_fuzzer.cc +151 -0
  574. libvslvm_python-20260901/ossfuzz/logical_volume_fuzzer.cc +257 -0
  575. libvslvm_python-20260901/ossfuzz/ossfuzz_libbfio.h +58 -0
  576. libvslvm_python-20260901/ossfuzz/ossfuzz_libvslvm.h +30 -0
  577. libvslvm_python-20260901/ossfuzz/volume_group_fuzzer.cc +226 -0
  578. libvslvm_python-20260901/po/Makevars +45 -0
  579. libvslvm_python-20260901/pyproject.toml +35 -0
  580. libvslvm_python-20260901/pyproject.toml.in +35 -0
  581. libvslvm_python-20260901/pyvslvm/Makefile.am +59 -0
  582. libvslvm_python-20260901/pyvslvm/Makefile.in +1124 -0
  583. libvslvm_python-20260901/pyvslvm/pyvslvm.c +804 -0
  584. libvslvm_python-20260901/pyvslvm/pyvslvm.h +71 -0
  585. libvslvm_python-20260901/pyvslvm/pyvslvm_error.c +422 -0
  586. libvslvm_python-20260901/pyvslvm/pyvslvm_error.h +60 -0
  587. libvslvm_python-20260901/pyvslvm/pyvslvm_file_object_io_handle.c +1524 -0
  588. libvslvm_python-20260901/pyvslvm/pyvslvm_file_object_io_handle.h +141 -0
  589. libvslvm_python-20260901/pyvslvm/pyvslvm_file_objects_io_pool.c +217 -0
  590. libvslvm_python-20260901/pyvslvm/pyvslvm_file_objects_io_pool.h +47 -0
  591. libvslvm_python-20260901/pyvslvm/pyvslvm_handle.c +1423 -0
  592. libvslvm_python-20260901/pyvslvm/pyvslvm_handle.h +104 -0
  593. libvslvm_python-20260901/pyvslvm/pyvslvm_integer.c +399 -0
  594. libvslvm_python-20260901/pyvslvm/pyvslvm_integer.h +56 -0
  595. libvslvm_python-20260901/pyvslvm/pyvslvm_libbfio.h +54 -0
  596. libvslvm_python-20260901/pyvslvm/pyvslvm_libcerror.h +50 -0
  597. libvslvm_python-20260901/pyvslvm/pyvslvm_libclocale.h +50 -0
  598. libvslvm_python-20260901/pyvslvm/pyvslvm_libvslvm.h +30 -0
  599. libvslvm_python-20260901/pyvslvm/pyvslvm_logical_volume.c +1282 -0
  600. libvslvm_python-20260901/pyvslvm/pyvslvm_logical_volume.h +119 -0
  601. libvslvm_python-20260901/pyvslvm/pyvslvm_logical_volumes.c +452 -0
  602. libvslvm_python-20260901/pyvslvm/pyvslvm_logical_volumes.h +95 -0
  603. libvslvm_python-20260901/pyvslvm/pyvslvm_physical_volume.c +742 -0
  604. libvslvm_python-20260901/pyvslvm/pyvslvm_physical_volume.h +87 -0
  605. libvslvm_python-20260901/pyvslvm/pyvslvm_physical_volumes.c +452 -0
  606. libvslvm_python-20260901/pyvslvm/pyvslvm_physical_volumes.h +95 -0
  607. libvslvm_python-20260901/pyvslvm/pyvslvm_python.h +83 -0
  608. libvslvm_python-20260901/pyvslvm/pyvslvm_segment.c +297 -0
  609. libvslvm_python-20260901/pyvslvm/pyvslvm_segment.h +71 -0
  610. libvslvm_python-20260901/pyvslvm/pyvslvm_segments.c +452 -0
  611. libvslvm_python-20260901/pyvslvm/pyvslvm_segments.h +95 -0
  612. libvslvm_python-20260901/pyvslvm/pyvslvm_stripe.c +297 -0
  613. libvslvm_python-20260901/pyvslvm/pyvslvm_stripe.h +71 -0
  614. libvslvm_python-20260901/pyvslvm/pyvslvm_stripes.c +452 -0
  615. libvslvm_python-20260901/pyvslvm/pyvslvm_stripes.h +95 -0
  616. libvslvm_python-20260901/pyvslvm/pyvslvm_unused.h +44 -0
  617. libvslvm_python-20260901/pyvslvm/pyvslvm_volume_group.c +1058 -0
  618. libvslvm_python-20260901/pyvslvm/pyvslvm_volume_group.h +118 -0
  619. libvslvm_python-20260901/tests/Makefile.am +423 -0
  620. libvslvm_python-20260901/tests/Makefile.in +1572 -0
  621. libvslvm_python-20260901/tests/atlocal.in +29 -0
  622. libvslvm_python-20260901/tests/generate_test_inputs.sh +301 -0
  623. libvslvm_python-20260901/tests/package.m4 +5 -0
  624. libvslvm_python-20260901/tests/pyvslvm_test_handle.py +157 -0
  625. libvslvm_python-20260901/tests/pyvslvm_test_support.py +111 -0
  626. libvslvm_python-20260901/tests/test_library.at +41 -0
  627. libvslvm_python-20260901/tests/test_macros.at +188 -0
  628. libvslvm_python-20260901/tests/test_manpages.at +73 -0
  629. libvslvm_python-20260901/tests/test_python_module.at +145 -0
  630. libvslvm_python-20260901/tests/test_tools.at +249 -0
  631. libvslvm_python-20260901/tests/vslvm_test_checksum.c +311 -0
  632. libvslvm_python-20260901/tests/vslvm_test_chunk_data.c +495 -0
  633. libvslvm_python-20260901/tests/vslvm_test_data_area_descriptor.c +311 -0
  634. libvslvm_python-20260901/tests/vslvm_test_error.c +150 -0
  635. libvslvm_python-20260901/tests/vslvm_test_functions.c +562 -0
  636. libvslvm_python-20260901/tests/vslvm_test_functions.h +66 -0
  637. libvslvm_python-20260901/tests/vslvm_test_getopt.c +190 -0
  638. libvslvm_python-20260901/tests/vslvm_test_getopt.h +68 -0
  639. libvslvm_python-20260901/tests/vslvm_test_handle.c +1574 -0
  640. libvslvm_python-20260901/tests/vslvm_test_io_handle.c +439 -0
  641. libvslvm_python-20260901/tests/vslvm_test_libbfio.h +58 -0
  642. libvslvm_python-20260901/tests/vslvm_test_libcerror.h +50 -0
  643. libvslvm_python-20260901/tests/vslvm_test_libclocale.h +50 -0
  644. libvslvm_python-20260901/tests/vslvm_test_libcnotify.h +50 -0
  645. libvslvm_python-20260901/tests/vslvm_test_libuna.h +60 -0
  646. libvslvm_python-20260901/tests/vslvm_test_libvslvm.h +30 -0
  647. libvslvm_python-20260901/tests/vslvm_test_logical_volume.c +136 -0
  648. libvslvm_python-20260901/tests/vslvm_test_logical_volume_values.c +700 -0
  649. libvslvm_python-20260901/tests/vslvm_test_macros.h +257 -0
  650. libvslvm_python-20260901/tests/vslvm_test_memory.c +199 -0
  651. libvslvm_python-20260901/tests/vslvm_test_memory.h +66 -0
  652. libvslvm_python-20260901/tests/vslvm_test_metadata.c +483 -0
  653. libvslvm_python-20260901/tests/vslvm_test_metadata_area.c +309 -0
  654. libvslvm_python-20260901/tests/vslvm_test_notify.c +229 -0
  655. libvslvm_python-20260901/tests/vslvm_test_physical_volume.c +1101 -0
  656. libvslvm_python-20260901/tests/vslvm_test_raw_location_descriptor.c +311 -0
  657. libvslvm_python-20260901/tests/vslvm_test_segment.c +704 -0
  658. libvslvm_python-20260901/tests/vslvm_test_stripe.c +575 -0
  659. libvslvm_python-20260901/tests/vslvm_test_support.c +773 -0
  660. libvslvm_python-20260901/tests/vslvm_test_tools_info_handle.c +299 -0
  661. libvslvm_python-20260901/tests/vslvm_test_tools_output.c +105 -0
  662. libvslvm_python-20260901/tests/vslvm_test_tools_signal.c +213 -0
  663. libvslvm_python-20260901/tests/vslvm_test_unused.h +50 -0
  664. libvslvm_python-20260901/tests/vslvm_test_volume_group.c +1097 -0
  665. libvslvm_python-20260901/vslvmtools/Makefile.am +96 -0
  666. libvslvm_python-20260901/vslvmtools/Makefile.in +1009 -0
  667. libvslvm_python-20260901/vslvmtools/byte_size_string.c +424 -0
  668. libvslvm_python-20260901/vslvmtools/byte_size_string.h +58 -0
  669. libvslvm_python-20260901/vslvmtools/info_handle.c +1989 -0
  670. libvslvm_python-20260901/vslvmtools/info_handle.h +132 -0
  671. libvslvm_python-20260901/vslvmtools/mount_dokan.c +1615 -0
  672. libvslvm_python-20260901/vslvmtools/mount_dokan.h +181 -0
  673. libvslvm_python-20260901/vslvmtools/mount_file_entry.c +933 -0
  674. libvslvm_python-20260901/vslvmtools/mount_file_entry.h +137 -0
  675. libvslvm_python-20260901/vslvmtools/mount_file_system.c +775 -0
  676. libvslvm_python-20260901/vslvmtools/mount_file_system.h +110 -0
  677. libvslvm_python-20260901/vslvmtools/mount_fuse.c +1406 -0
  678. libvslvm_python-20260901/vslvmtools/mount_fuse.h +155 -0
  679. libvslvm_python-20260901/vslvmtools/mount_handle.c +1169 -0
  680. libvslvm_python-20260901/vslvmtools/mount_handle.h +139 -0
  681. libvslvm_python-20260901/vslvmtools/vslvminfo.c +341 -0
  682. libvslvm_python-20260901/vslvmtools/vslvmmount.c +720 -0
  683. libvslvm_python-20260901/vslvmtools/vslvmtools_getopt.c +572 -0
  684. libvslvm_python-20260901/vslvmtools/vslvmtools_getopt.h +106 -0
  685. libvslvm_python-20260901/vslvmtools/vslvmtools_i18n.h +48 -0
  686. libvslvm_python-20260901/vslvmtools/vslvmtools_libbfio.h +58 -0
  687. libvslvm_python-20260901/vslvmtools/vslvmtools_libcdata.h +54 -0
  688. libvslvm_python-20260901/vslvmtools/vslvmtools_libcerror.h +50 -0
  689. libvslvm_python-20260901/vslvmtools/vslvmtools_libclocale.h +50 -0
  690. libvslvm_python-20260901/vslvmtools/vslvmtools_libcnotify.h +50 -0
  691. libvslvm_python-20260901/vslvmtools/vslvmtools_libcpath.h +48 -0
  692. libvslvm_python-20260901/vslvmtools/vslvmtools_libuna.h +60 -0
  693. libvslvm_python-20260901/vslvmtools/vslvmtools_libvslvm.h +30 -0
  694. libvslvm_python-20260901/vslvmtools/vslvmtools_output.c +172 -0
  695. libvslvm_python-20260901/vslvmtools/vslvmtools_output.h +55 -0
  696. libvslvm_python-20260901/vslvmtools/vslvmtools_signal.c +262 -0
  697. libvslvm_python-20260901/vslvmtools/vslvmtools_signal.h +72 -0
  698. libvslvm_python-20260901/vslvmtools/vslvmtools_unused.h +50 -0
  699. libvslvm-20240301/AUTHORS +0 -4
  700. libvslvm-20240301/Makefile.am +0 -107
  701. libvslvm-20240301/Makefile.in +0 -1197
  702. libvslvm-20240301/PKG-INFO +0 -13
  703. libvslvm-20240301/README +0 -19
  704. libvslvm-20240301/acinclude.m4 +0 -59
  705. libvslvm-20240301/aclocal.m4 +0 -1546
  706. libvslvm-20240301/common/Makefile.am +0 -25
  707. libvslvm-20240301/common/Makefile.in +0 -762
  708. libvslvm-20240301/common/byte_stream.h +0 -257
  709. libvslvm-20240301/common/common.h +0 -43
  710. libvslvm-20240301/common/config.h +0 -599
  711. libvslvm-20240301/common/config.h.in +0 -598
  712. libvslvm-20240301/common/config_borlandc.h +0 -26
  713. libvslvm-20240301/common/config_msc.h +0 -34
  714. libvslvm-20240301/common/config_winapi.h +0 -95
  715. libvslvm-20240301/common/file_stream.h +0 -151
  716. libvslvm-20240301/common/memory.h +0 -129
  717. libvslvm-20240301/common/narrow_string.h +0 -187
  718. libvslvm-20240301/common/system_string.h +0 -154
  719. libvslvm-20240301/common/types.h +0 -392
  720. libvslvm-20240301/common/types.h.in +0 -392
  721. libvslvm-20240301/common/wide_string.h +0 -175
  722. libvslvm-20240301/config.guess +0 -1774
  723. libvslvm-20240301/config.sub +0 -1907
  724. libvslvm-20240301/configure +0 -58562
  725. libvslvm-20240301/configure.ac +0 -239
  726. libvslvm-20240301/dpkg/changelog +0 -5
  727. libvslvm-20240301/dpkg/compat +0 -1
  728. libvslvm-20240301/dpkg/control +0 -65
  729. libvslvm-20240301/dpkg/copyright +0 -25
  730. libvslvm-20240301/dpkg/rules +0 -31
  731. libvslvm-20240301/include/Makefile.am +0 -27
  732. libvslvm-20240301/include/Makefile.in +0 -826
  733. libvslvm-20240301/include/libvslvm/codepage.h +0 -122
  734. libvslvm-20240301/include/libvslvm/definitions.h +0 -62
  735. libvslvm-20240301/include/libvslvm/definitions.h.in +0 -62
  736. libvslvm-20240301/include/libvslvm/error.h +0 -291
  737. libvslvm-20240301/include/libvslvm/extern.h +0 -44
  738. libvslvm-20240301/include/libvslvm/features.h +0 -50
  739. libvslvm-20240301/include/libvslvm/features.h.in +0 -50
  740. libvslvm-20240301/include/libvslvm/types.h +0 -216
  741. libvslvm-20240301/include/libvslvm/types.h.in +0 -216
  742. libvslvm-20240301/include/libvslvm.h +0 -725
  743. libvslvm-20240301/include/libvslvm.h.in +0 -725
  744. libvslvm-20240301/libbfio/Makefile.am +0 -54
  745. libvslvm-20240301/libbfio/Makefile.in +0 -911
  746. libvslvm-20240301/libbfio/libbfio_codepage.h +0 -90
  747. libvslvm-20240301/libbfio/libbfio_definitions.h +0 -89
  748. libvslvm-20240301/libbfio/libbfio_error.c +0 -111
  749. libvslvm-20240301/libbfio/libbfio_error.h +0 -74
  750. libvslvm-20240301/libbfio/libbfio_extern.h +0 -46
  751. libvslvm-20240301/libbfio/libbfio_file.c +0 -444
  752. libvslvm-20240301/libbfio/libbfio_file.h +0 -90
  753. libvslvm-20240301/libbfio/libbfio_file_io_handle.c +0 -1198
  754. libvslvm-20240301/libbfio/libbfio_file_io_handle.h +0 -152
  755. libvslvm-20240301/libbfio/libbfio_file_pool.c +0 -494
  756. libvslvm-20240301/libbfio/libbfio_file_pool.h +0 -81
  757. libvslvm-20240301/libbfio/libbfio_file_range.c +0 -468
  758. libvslvm-20240301/libbfio/libbfio_file_range.h +0 -104
  759. libvslvm-20240301/libbfio/libbfio_file_range_io_handle.c +0 -1158
  760. libvslvm-20240301/libbfio/libbfio_file_range_io_handle.h +0 -160
  761. libvslvm-20240301/libbfio/libbfio_handle.c +0 -2708
  762. libvslvm-20240301/libbfio/libbfio_handle.h +0 -363
  763. libvslvm-20240301/libbfio/libbfio_libcdata.h +0 -54
  764. libvslvm-20240301/libbfio/libbfio_libcerror.h +0 -50
  765. libvslvm-20240301/libbfio/libbfio_libcfile.h +0 -50
  766. libvslvm-20240301/libbfio/libbfio_libclocale.h +0 -50
  767. libvslvm-20240301/libbfio/libbfio_libcpath.h +0 -48
  768. libvslvm-20240301/libbfio/libbfio_libcthreads.h +0 -64
  769. libvslvm-20240301/libbfio/libbfio_libuna.h +0 -60
  770. libvslvm-20240301/libbfio/libbfio_memory_range.c +0 -205
  771. libvslvm-20240301/libbfio/libbfio_memory_range.h +0 -60
  772. libvslvm-20240301/libbfio/libbfio_memory_range_io_handle.c +0 -871
  773. libvslvm-20240301/libbfio/libbfio_memory_range_io_handle.h +0 -129
  774. libvslvm-20240301/libbfio/libbfio_pool.c +0 -3521
  775. libvslvm-20240301/libbfio/libbfio_pool.h +0 -275
  776. libvslvm-20240301/libbfio/libbfio_support.c +0 -93
  777. libvslvm-20240301/libbfio/libbfio_support.h +0 -58
  778. libvslvm-20240301/libbfio/libbfio_system_string.c +0 -1017
  779. libvslvm-20240301/libbfio/libbfio_system_string.h +0 -95
  780. libvslvm-20240301/libbfio/libbfio_types.h +0 -49
  781. libvslvm-20240301/libbfio/libbfio_unused.h +0 -44
  782. libvslvm-20240301/libcdata/Makefile.am +0 -42
  783. libvslvm-20240301/libcdata/Makefile.in +0 -895
  784. libvslvm-20240301/libcdata/libcdata_array.c +0 -2015
  785. libvslvm-20240301/libcdata/libcdata_array.h +0 -200
  786. libvslvm-20240301/libcdata/libcdata_btree.c +0 -964
  787. libvslvm-20240301/libcdata/libcdata_btree.h +0 -141
  788. libvslvm-20240301/libcdata/libcdata_btree_node.c +0 -1607
  789. libvslvm-20240301/libcdata/libcdata_btree_node.h +0 -101
  790. libvslvm-20240301/libcdata/libcdata_btree_values_list.c +0 -217
  791. libvslvm-20240301/libcdata/libcdata_btree_values_list.h +0 -55
  792. libvslvm-20240301/libcdata/libcdata_definitions.h +0 -81
  793. libvslvm-20240301/libcdata/libcdata_error.c +0 -111
  794. libvslvm-20240301/libcdata/libcdata_error.h +0 -74
  795. libvslvm-20240301/libcdata/libcdata_extern.h +0 -46
  796. libvslvm-20240301/libcdata/libcdata_libcerror.h +0 -50
  797. libvslvm-20240301/libcdata/libcdata_libcthreads.h +0 -64
  798. libvslvm-20240301/libcdata/libcdata_list.c +0 -2906
  799. libvslvm-20240301/libcdata/libcdata_list.h +0 -235
  800. libvslvm-20240301/libcdata/libcdata_list_element.c +0 -926
  801. libvslvm-20240301/libcdata/libcdata_list_element.h +0 -142
  802. libvslvm-20240301/libcdata/libcdata_range_list.c +0 -4922
  803. libvslvm-20240301/libcdata/libcdata_range_list.h +0 -382
  804. libvslvm-20240301/libcdata/libcdata_range_list_value.c +0 -429
  805. libvslvm-20240301/libcdata/libcdata_range_list_value.h +0 -100
  806. libvslvm-20240301/libcdata/libcdata_support.c +0 -39
  807. libvslvm-20240301/libcdata/libcdata_support.h +0 -47
  808. libvslvm-20240301/libcdata/libcdata_tree_node.c +0 -4216
  809. libvslvm-20240301/libcdata/libcdata_tree_node.h +0 -301
  810. libvslvm-20240301/libcdata/libcdata_types.h +0 -57
  811. libvslvm-20240301/libcdata/libcdata_unused.h +0 -44
  812. libvslvm-20240301/libcerror/Makefile.am +0 -29
  813. libvslvm-20240301/libcerror/Makefile.in +0 -845
  814. libvslvm-20240301/libcerror/libcerror_definitions.h +0 -326
  815. libvslvm-20240301/libcerror/libcerror_error.c +0 -827
  816. libvslvm-20240301/libcerror/libcerror_error.h +0 -125
  817. libvslvm-20240301/libcerror/libcerror_extern.h +0 -46
  818. libvslvm-20240301/libcerror/libcerror_support.c +0 -39
  819. libvslvm-20240301/libcerror/libcerror_support.h +0 -47
  820. libvslvm-20240301/libcerror/libcerror_system.c +0 -587
  821. libvslvm-20240301/libcerror/libcerror_system.h +0 -78
  822. libvslvm-20240301/libcerror/libcerror_types.h +0 -51
  823. libvslvm-20240301/libcerror/libcerror_unused.h +0 -44
  824. libvslvm-20240301/libcfile/Makefile.am +0 -40
  825. libvslvm-20240301/libcfile/Makefile.in +0 -869
  826. libvslvm-20240301/libcfile/libcfile_definitions.h +0 -101
  827. libvslvm-20240301/libcfile/libcfile_error.c +0 -111
  828. libvslvm-20240301/libcfile/libcfile_error.h +0 -74
  829. libvslvm-20240301/libcfile/libcfile_extern.h +0 -46
  830. libvslvm-20240301/libcfile/libcfile_file.c +0 -4570
  831. libvslvm-20240301/libcfile/libcfile_file.h +0 -273
  832. libvslvm-20240301/libcfile/libcfile_libcerror.h +0 -50
  833. libvslvm-20240301/libcfile/libcfile_libclocale.h +0 -50
  834. libvslvm-20240301/libcfile/libcfile_libcnotify.h +0 -50
  835. libvslvm-20240301/libcfile/libcfile_libuna.h +0 -60
  836. libvslvm-20240301/libcfile/libcfile_notify.c +0 -120
  837. libvslvm-20240301/libcfile/libcfile_notify.h +0 -63
  838. libvslvm-20240301/libcfile/libcfile_support.c +0 -1171
  839. libvslvm-20240301/libcfile/libcfile_support.h +0 -98
  840. libvslvm-20240301/libcfile/libcfile_system_string.c +0 -1017
  841. libvslvm-20240301/libcfile/libcfile_system_string.h +0 -95
  842. libvslvm-20240301/libcfile/libcfile_types.h +0 -47
  843. libvslvm-20240301/libcfile/libcfile_unused.h +0 -44
  844. libvslvm-20240301/libcfile/libcfile_winapi.c +0 -815
  845. libvslvm-20240301/libcfile/libcfile_winapi.h +0 -122
  846. libvslvm-20240301/libclocale/Makefile.am +0 -32
  847. libvslvm-20240301/libclocale/Makefile.in +0 -854
  848. libvslvm-20240301/libclocale/libclocale_codepage.c +0 -920
  849. libvslvm-20240301/libclocale/libclocale_codepage.h +0 -77
  850. libvslvm-20240301/libclocale/libclocale_definitions.h +0 -106
  851. libvslvm-20240301/libclocale/libclocale_extern.h +0 -46
  852. libvslvm-20240301/libclocale/libclocale_libcerror.h +0 -50
  853. libvslvm-20240301/libclocale/libclocale_locale.c +0 -494
  854. libvslvm-20240301/libclocale/libclocale_locale.h +0 -66
  855. libvslvm-20240301/libclocale/libclocale_support.c +0 -130
  856. libvslvm-20240301/libclocale/libclocale_support.h +0 -55
  857. libvslvm-20240301/libclocale/libclocale_unused.h +0 -44
  858. libvslvm-20240301/libclocale/libclocale_wide_string.c +0 -69
  859. libvslvm-20240301/libclocale/libclocale_wide_string.h +0 -54
  860. libvslvm-20240301/libcnotify/Makefile.am +0 -31
  861. libvslvm-20240301/libcnotify/Makefile.in +0 -852
  862. libvslvm-20240301/libcnotify/libcnotify_definitions.h +0 -54
  863. libvslvm-20240301/libcnotify/libcnotify_extern.h +0 -46
  864. libvslvm-20240301/libcnotify/libcnotify_libcerror.h +0 -50
  865. libvslvm-20240301/libcnotify/libcnotify_print.c +0 -400
  866. libvslvm-20240301/libcnotify/libcnotify_print.h +0 -68
  867. libvslvm-20240301/libcnotify/libcnotify_stream.c +0 -182
  868. libvslvm-20240301/libcnotify/libcnotify_stream.h +0 -56
  869. libvslvm-20240301/libcnotify/libcnotify_support.c +0 -39
  870. libvslvm-20240301/libcnotify/libcnotify_support.h +0 -49
  871. libvslvm-20240301/libcnotify/libcnotify_unused.h +0 -44
  872. libvslvm-20240301/libcnotify/libcnotify_verbose.c +0 -38
  873. libvslvm-20240301/libcnotify/libcnotify_verbose.h +0 -50
  874. libvslvm-20240301/libcpath/Makefile.am +0 -37
  875. libvslvm-20240301/libcpath/Makefile.in +0 -856
  876. libvslvm-20240301/libcpath/libcpath_definitions.h +0 -83
  877. libvslvm-20240301/libcpath/libcpath_error.c +0 -111
  878. libvslvm-20240301/libcpath/libcpath_error.h +0 -74
  879. libvslvm-20240301/libcpath/libcpath_extern.h +0 -46
  880. libvslvm-20240301/libcpath/libcpath_libcerror.h +0 -50
  881. libvslvm-20240301/libcpath/libcpath_libclocale.h +0 -50
  882. libvslvm-20240301/libcpath/libcpath_libcsplit.h +0 -52
  883. libvslvm-20240301/libcpath/libcpath_libuna.h +0 -60
  884. libvslvm-20240301/libcpath/libcpath_path.c +0 -7174
  885. libvslvm-20240301/libcpath/libcpath_path.h +0 -273
  886. libvslvm-20240301/libcpath/libcpath_support.c +0 -93
  887. libvslvm-20240301/libcpath/libcpath_support.h +0 -58
  888. libvslvm-20240301/libcpath/libcpath_system_string.c +0 -1017
  889. libvslvm-20240301/libcpath/libcpath_system_string.h +0 -95
  890. libvslvm-20240301/libcpath/libcpath_unused.h +0 -44
  891. libvslvm-20240301/libcsplit/Makefile.am +0 -34
  892. libvslvm-20240301/libcsplit/Makefile.in +0 -867
  893. libvslvm-20240301/libcsplit/libcsplit_definitions.h +0 -47
  894. libvslvm-20240301/libcsplit/libcsplit_error.c +0 -111
  895. libvslvm-20240301/libcsplit/libcsplit_error.h +0 -74
  896. libvslvm-20240301/libcsplit/libcsplit_extern.h +0 -46
  897. libvslvm-20240301/libcsplit/libcsplit_libcerror.h +0 -50
  898. libvslvm-20240301/libcsplit/libcsplit_narrow_split_string.c +0 -547
  899. libvslvm-20240301/libcsplit/libcsplit_narrow_split_string.h +0 -107
  900. libvslvm-20240301/libcsplit/libcsplit_narrow_string.c +0 -288
  901. libvslvm-20240301/libcsplit/libcsplit_narrow_string.h +0 -49
  902. libvslvm-20240301/libcsplit/libcsplit_support.c +0 -39
  903. libvslvm-20240301/libcsplit/libcsplit_support.h +0 -47
  904. libvslvm-20240301/libcsplit/libcsplit_types.h +0 -49
  905. libvslvm-20240301/libcsplit/libcsplit_unused.h +0 -44
  906. libvslvm-20240301/libcsplit/libcsplit_wide_split_string.c +0 -551
  907. libvslvm-20240301/libcsplit/libcsplit_wide_split_string.h +0 -111
  908. libvslvm-20240301/libcsplit/libcsplit_wide_string.c +0 -292
  909. libvslvm-20240301/libcsplit/libcsplit_wide_string.h +0 -53
  910. libvslvm-20240301/libcthreads/Makefile.am +0 -40
  911. libvslvm-20240301/libcthreads/Makefile.in +0 -897
  912. libvslvm-20240301/libcthreads/libcthreads_condition.c +0 -735
  913. libvslvm-20240301/libcthreads/libcthreads_condition.h +0 -120
  914. libvslvm-20240301/libcthreads/libcthreads_definitions.h +0 -84
  915. libvslvm-20240301/libcthreads/libcthreads_error.c +0 -111
  916. libvslvm-20240301/libcthreads/libcthreads_error.h +0 -74
  917. libvslvm-20240301/libcthreads/libcthreads_extern.h +0 -46
  918. libvslvm-20240301/libcthreads/libcthreads_libcerror.h +0 -50
  919. libvslvm-20240301/libcthreads/libcthreads_lock.c +0 -391
  920. libvslvm-20240301/libcthreads/libcthreads_lock.h +0 -88
  921. libvslvm-20240301/libcthreads/libcthreads_mutex.c +0 -601
  922. libvslvm-20240301/libcthreads/libcthreads_mutex.h +0 -98
  923. libvslvm-20240301/libcthreads/libcthreads_queue.c +0 -1150
  924. libvslvm-20240301/libcthreads/libcthreads_queue.h +0 -136
  925. libvslvm-20240301/libcthreads/libcthreads_read_write_lock.c +0 -690
  926. libvslvm-20240301/libcthreads/libcthreads_read_write_lock.h +0 -119
  927. libvslvm-20240301/libcthreads/libcthreads_repeating_thread.c +0 -644
  928. libvslvm-20240301/libcthreads/libcthreads_repeating_thread.h +0 -115
  929. libvslvm-20240301/libcthreads/libcthreads_support.c +0 -39
  930. libvslvm-20240301/libcthreads/libcthreads_support.h +0 -47
  931. libvslvm-20240301/libcthreads/libcthreads_thread.c +0 -405
  932. libvslvm-20240301/libcthreads/libcthreads_thread.h +0 -95
  933. libvslvm-20240301/libcthreads/libcthreads_thread_attributes.c +0 -149
  934. libvslvm-20240301/libcthreads/libcthreads_thread_attributes.h +0 -78
  935. libvslvm-20240301/libcthreads/libcthreads_thread_pool.c +0 -1721
  936. libvslvm-20240301/libcthreads/libcthreads_thread_pool.h +0 -177
  937. libvslvm-20240301/libcthreads/libcthreads_types.h +0 -63
  938. libvslvm-20240301/libcthreads/libcthreads_unused.h +0 -44
  939. libvslvm-20240301/libfcache/Makefile.am +0 -37
  940. libvslvm-20240301/libfcache/Makefile.in +0 -864
  941. libvslvm-20240301/libfcache/libfcache_cache.c +0 -1118
  942. libvslvm-20240301/libfcache/libfcache_cache.h +0 -149
  943. libvslvm-20240301/libfcache/libfcache_cache_value.c +0 -502
  944. libvslvm-20240301/libfcache/libfcache_cache_value.h +0 -132
  945. libvslvm-20240301/libfcache/libfcache_date_time.c +0 -92
  946. libvslvm-20240301/libfcache/libfcache_date_time.h +0 -45
  947. libvslvm-20240301/libfcache/libfcache_definitions.h +0 -58
  948. libvslvm-20240301/libfcache/libfcache_error.c +0 -111
  949. libvslvm-20240301/libfcache/libfcache_error.h +0 -74
  950. libvslvm-20240301/libfcache/libfcache_extern.h +0 -46
  951. libvslvm-20240301/libfcache/libfcache_libcdata.h +0 -54
  952. libvslvm-20240301/libfcache/libfcache_libcerror.h +0 -50
  953. libvslvm-20240301/libfcache/libfcache_support.c +0 -41
  954. libvslvm-20240301/libfcache/libfcache_support.h +0 -47
  955. libvslvm-20240301/libfcache/libfcache_types.h +0 -49
  956. libvslvm-20240301/libfcache/libfcache_unused.h +0 -44
  957. libvslvm-20240301/libfdata/Makefile.am +0 -49
  958. libvslvm-20240301/libfdata/Makefile.in +0 -909
  959. libvslvm-20240301/libfdata/libfdata_area.c +0 -1482
  960. libvslvm-20240301/libfdata/libfdata_area.h +0 -278
  961. libvslvm-20240301/libfdata/libfdata_cache.c +0 -59
  962. libvslvm-20240301/libfdata/libfdata_cache.h +0 -56
  963. libvslvm-20240301/libfdata/libfdata_definitions.h +0 -249
  964. libvslvm-20240301/libfdata/libfdata_error.c +0 -111
  965. libvslvm-20240301/libfdata/libfdata_error.h +0 -74
  966. libvslvm-20240301/libfdata/libfdata_extern.h +0 -46
  967. libvslvm-20240301/libfdata/libfdata_libcdata.h +0 -54
  968. libvslvm-20240301/libfdata/libfdata_libcerror.h +0 -50
  969. libvslvm-20240301/libfdata/libfdata_libcnotify.h +0 -50
  970. libvslvm-20240301/libfdata/libfdata_libfcache.h +0 -50
  971. libvslvm-20240301/libfdata/libfdata_list.c +0 -4426
  972. libvslvm-20240301/libfdata/libfdata_list.h +0 -452
  973. libvslvm-20240301/libfdata/libfdata_list_element.c +0 -824
  974. libvslvm-20240301/libfdata/libfdata_list_element.h +0 -159
  975. libvslvm-20240301/libfdata/libfdata_mapped_range.c +0 -312
  976. libvslvm-20240301/libfdata/libfdata_mapped_range.h +0 -77
  977. libvslvm-20240301/libfdata/libfdata_notify.c +0 -120
  978. libvslvm-20240301/libfdata/libfdata_notify.h +0 -63
  979. libvslvm-20240301/libfdata/libfdata_range.c +0 -358
  980. libvslvm-20240301/libfdata/libfdata_range.h +0 -94
  981. libvslvm-20240301/libfdata/libfdata_range_list.c +0 -1196
  982. libvslvm-20240301/libfdata/libfdata_range_list.h +0 -214
  983. libvslvm-20240301/libfdata/libfdata_segments_array.c +0 -914
  984. libvslvm-20240301/libfdata/libfdata_segments_array.h +0 -94
  985. libvslvm-20240301/libfdata/libfdata_stream.c +0 -2582
  986. libvslvm-20240301/libfdata/libfdata_stream.h +0 -363
  987. libvslvm-20240301/libfdata/libfdata_support.c +0 -41
  988. libvslvm-20240301/libfdata/libfdata_support.h +0 -47
  989. libvslvm-20240301/libfdata/libfdata_types.h +0 -59
  990. libvslvm-20240301/libfdata/libfdata_unused.h +0 -44
  991. libvslvm-20240301/libfdata/libfdata_vector.c +0 -1932
  992. libvslvm-20240301/libfdata/libfdata_vector.h +0 -295
  993. libvslvm-20240301/libfvalue/Makefile.am +0 -56
  994. libvslvm-20240301/libfvalue/Makefile.in +0 -940
  995. libvslvm-20240301/libfvalue/libfvalue_binary_data.c +0 -1546
  996. libvslvm-20240301/libfvalue/libfvalue_binary_data.h +0 -114
  997. libvslvm-20240301/libfvalue/libfvalue_codepage.h +0 -103
  998. libvslvm-20240301/libfvalue/libfvalue_data_handle.c +0 -1661
  999. libvslvm-20240301/libfvalue/libfvalue_data_handle.h +0 -195
  1000. libvslvm-20240301/libfvalue/libfvalue_definitions.h +0 -350
  1001. libvslvm-20240301/libfvalue/libfvalue_error.c +0 -111
  1002. libvslvm-20240301/libfvalue/libfvalue_error.h +0 -74
  1003. libvslvm-20240301/libfvalue/libfvalue_extern.h +0 -46
  1004. libvslvm-20240301/libfvalue/libfvalue_filetime.c +0 -113
  1005. libvslvm-20240301/libfvalue/libfvalue_filetime.h +0 -56
  1006. libvslvm-20240301/libfvalue/libfvalue_floating_point.c +0 -3456
  1007. libvslvm-20240301/libfvalue/libfvalue_floating_point.h +0 -246
  1008. libvslvm-20240301/libfvalue/libfvalue_integer.c +0 -2886
  1009. libvslvm-20240301/libfvalue/libfvalue_integer.h +0 -261
  1010. libvslvm-20240301/libfvalue/libfvalue_libcdata.h +0 -54
  1011. libvslvm-20240301/libfvalue/libfvalue_libcerror.h +0 -50
  1012. libvslvm-20240301/libfvalue/libfvalue_libcnotify.h +0 -50
  1013. libvslvm-20240301/libfvalue/libfvalue_libfdatetime.h +0 -58
  1014. libvslvm-20240301/libfvalue/libfvalue_libfguid.h +0 -51
  1015. libvslvm-20240301/libfvalue/libfvalue_libfwnt.h +0 -57
  1016. libvslvm-20240301/libfvalue/libfvalue_libuna.h +0 -60
  1017. libvslvm-20240301/libfvalue/libfvalue_split_utf16_string.c +0 -546
  1018. libvslvm-20240301/libfvalue/libfvalue_split_utf16_string.h +0 -114
  1019. libvslvm-20240301/libfvalue/libfvalue_split_utf8_string.c +0 -535
  1020. libvslvm-20240301/libfvalue/libfvalue_split_utf8_string.h +0 -114
  1021. libvslvm-20240301/libfvalue/libfvalue_string.c +0 -3070
  1022. libvslvm-20240301/libfvalue/libfvalue_string.h +0 -165
  1023. libvslvm-20240301/libfvalue/libfvalue_support.c +0 -41
  1024. libvslvm-20240301/libfvalue/libfvalue_support.h +0 -47
  1025. libvslvm-20240301/libfvalue/libfvalue_table.c +0 -1357
  1026. libvslvm-20240301/libfvalue/libfvalue_table.h +0 -136
  1027. libvslvm-20240301/libfvalue/libfvalue_types.h +0 -55
  1028. libvslvm-20240301/libfvalue/libfvalue_unused.h +0 -44
  1029. libvslvm-20240301/libfvalue/libfvalue_utf16_string.c +0 -300
  1030. libvslvm-20240301/libfvalue/libfvalue_utf16_string.h +0 -50
  1031. libvslvm-20240301/libfvalue/libfvalue_utf8_string.c +0 -300
  1032. libvslvm-20240301/libfvalue/libfvalue_utf8_string.h +0 -50
  1033. libvslvm-20240301/libfvalue/libfvalue_value.c +0 -5241
  1034. libvslvm-20240301/libfvalue/libfvalue_value.h +0 -753
  1035. libvslvm-20240301/libfvalue/libfvalue_value_entry.c +0 -210
  1036. libvslvm-20240301/libfvalue/libfvalue_value_entry.h +0 -65
  1037. libvslvm-20240301/libfvalue/libfvalue_value_type.c +0 -1183
  1038. libvslvm-20240301/libfvalue/libfvalue_value_type.h +0 -100
  1039. libvslvm-20240301/libuna/Makefile.am +0 -91
  1040. libvslvm-20240301/libuna/Makefile.in +0 -1206
  1041. libvslvm-20240301/libuna/libuna_base16_stream.c +0 -1511
  1042. libvslvm-20240301/libuna/libuna_base16_stream.h +0 -93
  1043. libvslvm-20240301/libuna/libuna_base32_stream.c +0 -3035
  1044. libvslvm-20240301/libuna/libuna_base32_stream.h +0 -131
  1045. libvslvm-20240301/libuna/libuna_base64_stream.c +0 -2832
  1046. libvslvm-20240301/libuna/libuna_base64_stream.h +0 -131
  1047. libvslvm-20240301/libuna/libuna_byte_stream.c +0 -633
  1048. libvslvm-20240301/libuna/libuna_byte_stream.h +0 -104
  1049. libvslvm-20240301/libuna/libuna_codepage_iso_8859_10.c +0 -73
  1050. libvslvm-20240301/libuna/libuna_codepage_iso_8859_10.h +0 -48
  1051. libvslvm-20240301/libuna/libuna_codepage_iso_8859_13.c +0 -81
  1052. libvslvm-20240301/libuna/libuna_codepage_iso_8859_13.h +0 -48
  1053. libvslvm-20240301/libuna/libuna_codepage_iso_8859_14.c +0 -66
  1054. libvslvm-20240301/libuna/libuna_codepage_iso_8859_14.h +0 -51
  1055. libvslvm-20240301/libuna/libuna_codepage_iso_8859_15.c +0 -46
  1056. libvslvm-20240301/libuna/libuna_codepage_iso_8859_15.h +0 -45
  1057. libvslvm-20240301/libuna/libuna_codepage_iso_8859_16.c +0 -78
  1058. libvslvm-20240301/libuna/libuna_codepage_iso_8859_16.h +0 -57
  1059. libvslvm-20240301/libuna/libuna_codepage_iso_8859_2.c +0 -82
  1060. libvslvm-20240301/libuna/libuna_codepage_iso_8859_2.h +0 -51
  1061. libvslvm-20240301/libuna/libuna_codepage_iso_8859_3.c +0 -79
  1062. libvslvm-20240301/libuna/libuna_codepage_iso_8859_3.h +0 -57
  1063. libvslvm-20240301/libuna/libuna_codepage_iso_8859_4.c +0 -80
  1064. libvslvm-20240301/libuna/libuna_codepage_iso_8859_4.h +0 -48
  1065. libvslvm-20240301/libuna/libuna_codepage_iso_8859_5.c +0 -62
  1066. libvslvm-20240301/libuna/libuna_codepage_iso_8859_5.h +0 -45
  1067. libvslvm-20240301/libuna/libuna_codepage_iso_8859_6.c +0 -58
  1068. libvslvm-20240301/libuna/libuna_codepage_iso_8859_6.h +0 -45
  1069. libvslvm-20240301/libuna/libuna_codepage_iso_8859_7.c +0 -66
  1070. libvslvm-20240301/libuna/libuna_codepage_iso_8859_7.h +0 -48
  1071. libvslvm-20240301/libuna/libuna_codepage_iso_8859_8.c +0 -61
  1072. libvslvm-20240301/libuna/libuna_codepage_iso_8859_8.h +0 -48
  1073. libvslvm-20240301/libuna/libuna_codepage_iso_8859_9.c +0 -50
  1074. libvslvm-20240301/libuna/libuna_codepage_iso_8859_9.h +0 -45
  1075. libvslvm-20240301/libuna/libuna_codepage_koi8_r.c +0 -392
  1076. libvslvm-20240301/libuna/libuna_codepage_koi8_r.h +0 -54
  1077. libvslvm-20240301/libuna/libuna_codepage_koi8_u.c +0 -424
  1078. libvslvm-20240301/libuna/libuna_codepage_koi8_u.h +0 -54
  1079. libvslvm-20240301/libuna/libuna_codepage_mac_arabic.c +0 -352
  1080. libvslvm-20240301/libuna/libuna_codepage_mac_arabic.h +0 -54
  1081. libvslvm-20240301/libuna/libuna_codepage_mac_celtic.c +0 -395
  1082. libvslvm-20240301/libuna/libuna_codepage_mac_celtic.h +0 -54
  1083. libvslvm-20240301/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
  1084. libvslvm-20240301/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
  1085. libvslvm-20240301/libuna/libuna_codepage_mac_croatian.c +0 -378
  1086. libvslvm-20240301/libuna/libuna_codepage_mac_croatian.h +0 -54
  1087. libvslvm-20240301/libuna/libuna_codepage_mac_cyrillic.c +0 -325
  1088. libvslvm-20240301/libuna/libuna_codepage_mac_cyrillic.h +0 -54
  1089. libvslvm-20240301/libuna/libuna_codepage_mac_dingbats.c +0 -347
  1090. libvslvm-20240301/libuna/libuna_codepage_mac_dingbats.h +0 -54
  1091. libvslvm-20240301/libuna/libuna_codepage_mac_farsi.c +0 -372
  1092. libvslvm-20240301/libuna/libuna_codepage_mac_farsi.h +0 -54
  1093. libvslvm-20240301/libuna/libuna_codepage_mac_gaelic.c +0 -437
  1094. libvslvm-20240301/libuna/libuna_codepage_mac_gaelic.h +0 -54
  1095. libvslvm-20240301/libuna/libuna_codepage_mac_greek.c +0 -305
  1096. libvslvm-20240301/libuna/libuna_codepage_mac_greek.h +0 -54
  1097. libvslvm-20240301/libuna/libuna_codepage_mac_icelandic.c +0 -381
  1098. libvslvm-20240301/libuna/libuna_codepage_mac_icelandic.h +0 -54
  1099. libvslvm-20240301/libuna/libuna_codepage_mac_inuit.c +0 -380
  1100. libvslvm-20240301/libuna/libuna_codepage_mac_inuit.h +0 -54
  1101. libvslvm-20240301/libuna/libuna_codepage_mac_roman.c +0 -387
  1102. libvslvm-20240301/libuna/libuna_codepage_mac_roman.h +0 -54
  1103. libvslvm-20240301/libuna/libuna_codepage_mac_romanian.c +0 -396
  1104. libvslvm-20240301/libuna/libuna_codepage_mac_romanian.h +0 -54
  1105. libvslvm-20240301/libuna/libuna_codepage_mac_russian.c +0 -317
  1106. libvslvm-20240301/libuna/libuna_codepage_mac_russian.h +0 -54
  1107. libvslvm-20240301/libuna/libuna_codepage_mac_symbol.c +0 -537
  1108. libvslvm-20240301/libuna/libuna_codepage_mac_symbol.h +0 -59
  1109. libvslvm-20240301/libuna/libuna_codepage_mac_thai.c +0 -330
  1110. libvslvm-20240301/libuna/libuna_codepage_mac_thai.h +0 -59
  1111. libvslvm-20240301/libuna/libuna_codepage_mac_turkish.c +0 -397
  1112. libvslvm-20240301/libuna/libuna_codepage_mac_turkish.h +0 -54
  1113. libvslvm-20240301/libuna/libuna_codepage_mac_ukrainian.c +0 -321
  1114. libvslvm-20240301/libuna/libuna_codepage_mac_ukrainian.h +0 -54
  1115. libvslvm-20240301/libuna/libuna_codepage_windows_1250.c +0 -313
  1116. libvslvm-20240301/libuna/libuna_codepage_windows_1250.h +0 -54
  1117. libvslvm-20240301/libuna/libuna_codepage_windows_1251.c +0 -301
  1118. libvslvm-20240301/libuna/libuna_codepage_windows_1251.h +0 -54
  1119. libvslvm-20240301/libuna/libuna_codepage_windows_1252.c +0 -287
  1120. libvslvm-20240301/libuna/libuna_codepage_windows_1252.h +0 -54
  1121. libvslvm-20240301/libuna/libuna_codepage_windows_1253.c +0 -291
  1122. libvslvm-20240301/libuna/libuna_codepage_windows_1253.h +0 -54
  1123. libvslvm-20240301/libuna/libuna_codepage_windows_1254.c +0 -348
  1124. libvslvm-20240301/libuna/libuna_codepage_windows_1254.h +0 -54
  1125. libvslvm-20240301/libuna/libuna_codepage_windows_1255.c +0 -328
  1126. libvslvm-20240301/libuna/libuna_codepage_windows_1255.h +0 -54
  1127. libvslvm-20240301/libuna/libuna_codepage_windows_1256.c +0 -372
  1128. libvslvm-20240301/libuna/libuna_codepage_windows_1256.h +0 -54
  1129. libvslvm-20240301/libuna/libuna_codepage_windows_1257.c +0 -303
  1130. libvslvm-20240301/libuna/libuna_codepage_windows_1257.h +0 -54
  1131. libvslvm-20240301/libuna/libuna_codepage_windows_1258.c +0 -349
  1132. libvslvm-20240301/libuna/libuna_codepage_windows_1258.h +0 -54
  1133. libvslvm-20240301/libuna/libuna_codepage_windows_874.c +0 -274
  1134. libvslvm-20240301/libuna/libuna_codepage_windows_874.h +0 -54
  1135. libvslvm-20240301/libuna/libuna_codepage_windows_932.c +0 -4913
  1136. libvslvm-20240301/libuna/libuna_codepage_windows_932.h +0 -59
  1137. libvslvm-20240301/libuna/libuna_codepage_windows_936.c +0 -7371
  1138. libvslvm-20240301/libuna/libuna_codepage_windows_936.h +0 -59
  1139. libvslvm-20240301/libuna/libuna_codepage_windows_949.c +0 -8168
  1140. libvslvm-20240301/libuna/libuna_codepage_windows_949.h +0 -59
  1141. libvslvm-20240301/libuna/libuna_codepage_windows_950.c +0 -6390
  1142. libvslvm-20240301/libuna/libuna_codepage_windows_950.h +0 -59
  1143. libvslvm-20240301/libuna/libuna_definitions.h +0 -436
  1144. libvslvm-20240301/libuna/libuna_error.c +0 -111
  1145. libvslvm-20240301/libuna/libuna_error.h +0 -74
  1146. libvslvm-20240301/libuna/libuna_extern.h +0 -46
  1147. libvslvm-20240301/libuna/libuna_libcerror.h +0 -50
  1148. libvslvm-20240301/libuna/libuna_scsu.c +0 -64
  1149. libvslvm-20240301/libuna/libuna_scsu.h +0 -45
  1150. libvslvm-20240301/libuna/libuna_support.c +0 -39
  1151. libvslvm-20240301/libuna/libuna_support.h +0 -49
  1152. libvslvm-20240301/libuna/libuna_types.h +0 -53
  1153. libvslvm-20240301/libuna/libuna_unicode_character.c +0 -5784
  1154. libvslvm-20240301/libuna/libuna_unicode_character.h +0 -260
  1155. libvslvm-20240301/libuna/libuna_unused.h +0 -44
  1156. libvslvm-20240301/libuna/libuna_url_stream.c +0 -584
  1157. libvslvm-20240301/libuna/libuna_url_stream.h +0 -71
  1158. libvslvm-20240301/libuna/libuna_utf16_stream.c +0 -815
  1159. libvslvm-20240301/libuna/libuna_utf16_stream.h +0 -109
  1160. libvslvm-20240301/libuna/libuna_utf16_string.c +0 -3950
  1161. libvslvm-20240301/libuna/libuna_utf16_string.h +0 -325
  1162. libvslvm-20240301/libuna/libuna_utf32_stream.c +0 -819
  1163. libvslvm-20240301/libuna/libuna_utf32_stream.h +0 -109
  1164. libvslvm-20240301/libuna/libuna_utf32_string.c +0 -3808
  1165. libvslvm-20240301/libuna/libuna_utf32_string.h +0 -321
  1166. libvslvm-20240301/libuna/libuna_utf7_stream.c +0 -628
  1167. libvslvm-20240301/libuna/libuna_utf7_stream.h +0 -98
  1168. libvslvm-20240301/libuna/libuna_utf8_stream.c +0 -748
  1169. libvslvm-20240301/libuna/libuna_utf8_stream.h +0 -105
  1170. libvslvm-20240301/libuna/libuna_utf8_string.c +0 -4092
  1171. libvslvm-20240301/libuna/libuna_utf8_string.h +0 -329
  1172. libvslvm-20240301/libvslvm/Makefile.am +0 -95
  1173. libvslvm-20240301/libvslvm/Makefile.in +0 -1023
  1174. libvslvm-20240301/libvslvm/libvslvm.c +0 -80
  1175. libvslvm-20240301/libvslvm/libvslvm.rc +0 -38
  1176. libvslvm-20240301/libvslvm/libvslvm.rc.in +0 -38
  1177. libvslvm-20240301/libvslvm/libvslvm_checksum.c +0 -202
  1178. libvslvm-20240301/libvslvm/libvslvm_checksum.h +0 -56
  1179. libvslvm-20240301/libvslvm/libvslvm_chunk_data.c +0 -283
  1180. libvslvm-20240301/libvslvm/libvslvm_chunk_data.h +0 -69
  1181. libvslvm-20240301/libvslvm/libvslvm_data_area_descriptor.c +0 -231
  1182. libvslvm-20240301/libvslvm/libvslvm_data_area_descriptor.h +0 -72
  1183. libvslvm-20240301/libvslvm/libvslvm_debug.c +0 -109
  1184. libvslvm-20240301/libvslvm/libvslvm_debug.h +0 -48
  1185. libvslvm-20240301/libvslvm/libvslvm_definitions.h +0 -80
  1186. libvslvm-20240301/libvslvm/libvslvm_definitions.h.in +0 -80
  1187. libvslvm-20240301/libvslvm/libvslvm_error.c +0 -111
  1188. libvslvm-20240301/libvslvm/libvslvm_error.h +0 -74
  1189. libvslvm-20240301/libvslvm/libvslvm_extern.h +0 -46
  1190. libvslvm-20240301/libvslvm/libvslvm_handle.c +0 -2291
  1191. libvslvm-20240301/libvslvm/libvslvm_handle.h +0 -195
  1192. libvslvm-20240301/libvslvm/libvslvm_io_handle.c +0 -172
  1193. libvslvm-20240301/libvslvm/libvslvm_io_handle.h +0 -64
  1194. libvslvm-20240301/libvslvm/libvslvm_libbfio.h +0 -58
  1195. libvslvm-20240301/libvslvm/libvslvm_libcdata.h +0 -54
  1196. libvslvm-20240301/libvslvm/libvslvm_libcerror.h +0 -50
  1197. libvslvm-20240301/libvslvm/libvslvm_libclocale.h +0 -50
  1198. libvslvm-20240301/libvslvm/libvslvm_libcnotify.h +0 -50
  1199. libvslvm-20240301/libvslvm/libvslvm_libcsplit.h +0 -52
  1200. libvslvm-20240301/libvslvm/libvslvm_libcthreads.h +0 -64
  1201. libvslvm-20240301/libvslvm/libvslvm_libfcache.h +0 -50
  1202. libvslvm-20240301/libvslvm/libvslvm_libfdata.h +0 -54
  1203. libvslvm-20240301/libvslvm/libvslvm_libfvalue.h +0 -60
  1204. libvslvm-20240301/libvslvm/libvslvm_logical_volume.c +0 -1632
  1205. libvslvm-20240301/libvslvm/libvslvm_logical_volume.h +0 -198
  1206. libvslvm-20240301/libvslvm/libvslvm_logical_volume_values.c +0 -717
  1207. libvslvm-20240301/libvslvm/libvslvm_logical_volume_values.h +0 -124
  1208. libvslvm-20240301/libvslvm/libvslvm_metadata.c +0 -3975
  1209. libvslvm-20240301/libvslvm/libvslvm_metadata.h +0 -136
  1210. libvslvm-20240301/libvslvm/libvslvm_metadata_area.c +0 -574
  1211. libvslvm-20240301/libvslvm/libvslvm_metadata_area.h +0 -71
  1212. libvslvm-20240301/libvslvm/libvslvm_notify.c +0 -120
  1213. libvslvm-20240301/libvslvm/libvslvm_notify.h +0 -63
  1214. libvslvm-20240301/libvslvm/libvslvm_physical_volume.c +0 -1926
  1215. libvslvm-20240301/libvslvm/libvslvm_physical_volume.h +0 -219
  1216. libvslvm-20240301/libvslvm/libvslvm_raw_location_descriptor.c +0 -261
  1217. libvslvm-20240301/libvslvm/libvslvm_raw_location_descriptor.h +0 -84
  1218. libvslvm-20240301/libvslvm/libvslvm_segment.c +0 -596
  1219. libvslvm-20240301/libvslvm/libvslvm_segment.h +0 -123
  1220. libvslvm-20240301/libvslvm/libvslvm_stripe.c +0 -454
  1221. libvslvm-20240301/libvslvm/libvslvm_stripe.h +0 -101
  1222. libvslvm-20240301/libvslvm/libvslvm_support.c +0 -443
  1223. libvslvm-20240301/libvslvm/libvslvm_support.h +0 -88
  1224. libvslvm-20240301/libvslvm/libvslvm_types.h +0 -57
  1225. libvslvm-20240301/libvslvm/libvslvm_unused.h +0 -44
  1226. libvslvm-20240301/libvslvm/libvslvm_volume_group.c +0 -1224
  1227. libvslvm-20240301/libvslvm/libvslvm_volume_group.h +0 -212
  1228. libvslvm-20240301/libvslvm/vslvm_metadata_area.h +0 -93
  1229. libvslvm-20240301/libvslvm/vslvm_physical_volume_label.h +0 -99
  1230. libvslvm-20240301/libvslvm.spec +0 -100
  1231. libvslvm-20240301/ltmain.sh +0 -11429
  1232. libvslvm-20240301/m4/common.m4 +0 -578
  1233. libvslvm-20240301/m4/libbfio.m4 +0 -419
  1234. libvslvm-20240301/m4/libcdata.m4 +0 -596
  1235. libvslvm-20240301/m4/libcerror.m4 +0 -234
  1236. libvslvm-20240301/m4/libcfile.m4 +0 -426
  1237. libvslvm-20240301/m4/libclocale.m4 +0 -288
  1238. libvslvm-20240301/m4/libcnotify.m4 +0 -206
  1239. libvslvm-20240301/m4/libcpath.m4 +0 -341
  1240. libvslvm-20240301/m4/libcsplit.m4 +0 -246
  1241. libvslvm-20240301/m4/libcthreads.m4 +0 -383
  1242. libvslvm-20240301/m4/libfcache.m4 +0 -263
  1243. libvslvm-20240301/m4/libfdata.m4 +0 -552
  1244. libvslvm-20240301/m4/libfuse.m4 +0 -202
  1245. libvslvm-20240301/m4/libfvalue.m4 +0 -688
  1246. libvslvm-20240301/m4/libtool.m4 +0 -8403
  1247. libvslvm-20240301/m4/libuna.m4 +0 -1041
  1248. libvslvm-20240301/m4/pthread.m4 +0 -183
  1249. libvslvm-20240301/m4/python.m4 +0 -206
  1250. libvslvm-20240301/m4/tests.m4 +0 -33
  1251. libvslvm-20240301/m4/types.m4 +0 -133
  1252. libvslvm-20240301/manuals/Makefile.am +0 -14
  1253. libvslvm-20240301/manuals/Makefile.in +0 -793
  1254. libvslvm-20240301/manuals/libvslvm.3 +0 -207
  1255. libvslvm-20240301/manuals/vslvminfo.1 +0 -84
  1256. libvslvm-20240301/msvscpp/Makefile.am +0 -48
  1257. libvslvm-20240301/msvscpp/Makefile.in +0 -703
  1258. libvslvm-20240301/msvscpp/libvslvm.sln +0 -445
  1259. libvslvm-20240301/msvscpp/pyvslvm/pyvslvm.vcproj +0 -332
  1260. libvslvm-20240301/ossfuzz/Makefile.am +0 -66
  1261. libvslvm-20240301/ossfuzz/Makefile.in +0 -946
  1262. libvslvm-20240301/ossfuzz/handle_fuzzer.cc +0 -151
  1263. libvslvm-20240301/ossfuzz/logical_volume_fuzzer.cc +0 -184
  1264. libvslvm-20240301/ossfuzz/ossfuzz_libbfio.h +0 -58
  1265. libvslvm-20240301/ossfuzz/ossfuzz_libvslvm.h +0 -30
  1266. libvslvm-20240301/po/Makevars +0 -45
  1267. libvslvm-20240301/pyproject.toml +0 -4
  1268. libvslvm-20240301/pyvslvm/Makefile.am +0 -61
  1269. libvslvm-20240301/pyvslvm/Makefile.in +0 -1097
  1270. libvslvm-20240301/pyvslvm/pyvslvm.c +0 -804
  1271. libvslvm-20240301/pyvslvm/pyvslvm.h +0 -71
  1272. libvslvm-20240301/pyvslvm/pyvslvm_error.c +0 -422
  1273. libvslvm-20240301/pyvslvm/pyvslvm_error.h +0 -60
  1274. libvslvm-20240301/pyvslvm/pyvslvm_file_object_io_handle.c +0 -1524
  1275. libvslvm-20240301/pyvslvm/pyvslvm_file_object_io_handle.h +0 -141
  1276. libvslvm-20240301/pyvslvm/pyvslvm_file_objects_io_pool.c +0 -217
  1277. libvslvm-20240301/pyvslvm/pyvslvm_file_objects_io_pool.h +0 -47
  1278. libvslvm-20240301/pyvslvm/pyvslvm_handle.c +0 -1421
  1279. libvslvm-20240301/pyvslvm/pyvslvm_handle.h +0 -104
  1280. libvslvm-20240301/pyvslvm/pyvslvm_integer.c +0 -399
  1281. libvslvm-20240301/pyvslvm/pyvslvm_integer.h +0 -56
  1282. libvslvm-20240301/pyvslvm/pyvslvm_libbfio.h +0 -54
  1283. libvslvm-20240301/pyvslvm/pyvslvm_libcerror.h +0 -50
  1284. libvslvm-20240301/pyvslvm/pyvslvm_libclocale.h +0 -50
  1285. libvslvm-20240301/pyvslvm/pyvslvm_libvslvm.h +0 -30
  1286. libvslvm-20240301/pyvslvm/pyvslvm_logical_volume.c +0 -1282
  1287. libvslvm-20240301/pyvslvm/pyvslvm_logical_volume.h +0 -119
  1288. libvslvm-20240301/pyvslvm/pyvslvm_logical_volumes.c +0 -452
  1289. libvslvm-20240301/pyvslvm/pyvslvm_logical_volumes.h +0 -95
  1290. libvslvm-20240301/pyvslvm/pyvslvm_physical_volume.c +0 -742
  1291. libvslvm-20240301/pyvslvm/pyvslvm_physical_volume.h +0 -87
  1292. libvslvm-20240301/pyvslvm/pyvslvm_physical_volumes.c +0 -452
  1293. libvslvm-20240301/pyvslvm/pyvslvm_physical_volumes.h +0 -95
  1294. libvslvm-20240301/pyvslvm/pyvslvm_python.h +0 -83
  1295. libvslvm-20240301/pyvslvm/pyvslvm_segment.c +0 -297
  1296. libvslvm-20240301/pyvslvm/pyvslvm_segment.h +0 -71
  1297. libvslvm-20240301/pyvslvm/pyvslvm_segments.c +0 -452
  1298. libvslvm-20240301/pyvslvm/pyvslvm_segments.h +0 -95
  1299. libvslvm-20240301/pyvslvm/pyvslvm_stripe.c +0 -297
  1300. libvslvm-20240301/pyvslvm/pyvslvm_stripe.h +0 -71
  1301. libvslvm-20240301/pyvslvm/pyvslvm_stripes.c +0 -452
  1302. libvslvm-20240301/pyvslvm/pyvslvm_stripes.h +0 -95
  1303. libvslvm-20240301/pyvslvm/pyvslvm_unused.h +0 -44
  1304. libvslvm-20240301/pyvslvm/pyvslvm_volume_group.c +0 -1058
  1305. libvslvm-20240301/pyvslvm/pyvslvm_volume_group.h +0 -118
  1306. libvslvm-20240301/setup.cfg +0 -16
  1307. libvslvm-20240301/setup.cfg.in +0 -16
  1308. libvslvm-20240301/setup.py +0 -293
  1309. libvslvm-20240301/test-driver +0 -153
  1310. libvslvm-20240301/tests/Makefile.am +0 -334
  1311. libvslvm-20240301/tests/Makefile.in +0 -1819
  1312. libvslvm-20240301/tests/pyvslvm_test_handle.py +0 -157
  1313. libvslvm-20240301/tests/pyvslvm_test_support.py +0 -111
  1314. libvslvm-20240301/tests/test_library.sh +0 -196
  1315. libvslvm-20240301/tests/test_manpage.sh +0 -101
  1316. libvslvm-20240301/tests/test_python_module.sh +0 -187
  1317. libvslvm-20240301/tests/test_runner.sh +0 -1148
  1318. libvslvm-20240301/tests/test_tools.sh +0 -196
  1319. libvslvm-20240301/tests/test_vslvminfo.sh +0 -149
  1320. libvslvm-20240301/tests/vslvm_test_chunk_data.c +0 -497
  1321. libvslvm-20240301/tests/vslvm_test_data_area_descriptor.c +0 -311
  1322. libvslvm-20240301/tests/vslvm_test_error.c +0 -150
  1323. libvslvm-20240301/tests/vslvm_test_functions.c +0 -562
  1324. libvslvm-20240301/tests/vslvm_test_functions.h +0 -66
  1325. libvslvm-20240301/tests/vslvm_test_getopt.c +0 -190
  1326. libvslvm-20240301/tests/vslvm_test_getopt.h +0 -68
  1327. libvslvm-20240301/tests/vslvm_test_handle.c +0 -1574
  1328. libvslvm-20240301/tests/vslvm_test_io_handle.c +0 -439
  1329. libvslvm-20240301/tests/vslvm_test_libbfio.h +0 -58
  1330. libvslvm-20240301/tests/vslvm_test_libcerror.h +0 -50
  1331. libvslvm-20240301/tests/vslvm_test_libclocale.h +0 -50
  1332. libvslvm-20240301/tests/vslvm_test_libcnotify.h +0 -50
  1333. libvslvm-20240301/tests/vslvm_test_libuna.h +0 -60
  1334. libvslvm-20240301/tests/vslvm_test_libvslvm.h +0 -30
  1335. libvslvm-20240301/tests/vslvm_test_logical_volume.c +0 -136
  1336. libvslvm-20240301/tests/vslvm_test_logical_volume_values.c +0 -700
  1337. libvslvm-20240301/tests/vslvm_test_macros.h +0 -257
  1338. libvslvm-20240301/tests/vslvm_test_memory.c +0 -177
  1339. libvslvm-20240301/tests/vslvm_test_memory.h +0 -52
  1340. libvslvm-20240301/tests/vslvm_test_metadata.c +0 -483
  1341. libvslvm-20240301/tests/vslvm_test_metadata_area.c +0 -309
  1342. libvslvm-20240301/tests/vslvm_test_notify.c +0 -229
  1343. libvslvm-20240301/tests/vslvm_test_physical_volume.c +0 -1101
  1344. libvslvm-20240301/tests/vslvm_test_raw_location_descriptor.c +0 -311
  1345. libvslvm-20240301/tests/vslvm_test_segment.c +0 -704
  1346. libvslvm-20240301/tests/vslvm_test_stripe.c +0 -575
  1347. libvslvm-20240301/tests/vslvm_test_support.c +0 -773
  1348. libvslvm-20240301/tests/vslvm_test_tools_info_handle.c +0 -299
  1349. libvslvm-20240301/tests/vslvm_test_tools_output.c +0 -105
  1350. libvslvm-20240301/tests/vslvm_test_tools_signal.c +0 -213
  1351. libvslvm-20240301/tests/vslvm_test_unused.h +0 -50
  1352. libvslvm-20240301/tests/vslvm_test_volume_group.c +0 -1097
  1353. libvslvm-20240301/vslvmtools/Makefile.am +0 -95
  1354. libvslvm-20240301/vslvmtools/Makefile.in +0 -981
  1355. libvslvm-20240301/vslvmtools/byte_size_string.c +0 -420
  1356. libvslvm-20240301/vslvmtools/byte_size_string.h +0 -58
  1357. libvslvm-20240301/vslvmtools/info_handle.c +0 -1989
  1358. libvslvm-20240301/vslvmtools/info_handle.h +0 -132
  1359. libvslvm-20240301/vslvmtools/mount_dokan.c +0 -1609
  1360. libvslvm-20240301/vslvmtools/mount_dokan.h +0 -171
  1361. libvslvm-20240301/vslvmtools/mount_file_entry.c +0 -933
  1362. libvslvm-20240301/vslvmtools/mount_file_entry.h +0 -137
  1363. libvslvm-20240301/vslvmtools/mount_file_system.c +0 -770
  1364. libvslvm-20240301/vslvmtools/mount_file_system.h +0 -110
  1365. libvslvm-20240301/vslvmtools/mount_fuse.c +0 -1318
  1366. libvslvm-20240301/vslvmtools/mount_fuse.h +0 -112
  1367. libvslvm-20240301/vslvmtools/mount_handle.c +0 -1169
  1368. libvslvm-20240301/vslvmtools/mount_handle.h +0 -139
  1369. libvslvm-20240301/vslvmtools/vslvminfo.c +0 -317
  1370. libvslvm-20240301/vslvmtools/vslvmmount.c +0 -623
  1371. libvslvm-20240301/vslvmtools/vslvmtools_getopt.c +0 -190
  1372. libvslvm-20240301/vslvmtools/vslvmtools_getopt.h +0 -68
  1373. libvslvm-20240301/vslvmtools/vslvmtools_i18n.h +0 -48
  1374. libvslvm-20240301/vslvmtools/vslvmtools_libbfio.h +0 -58
  1375. libvslvm-20240301/vslvmtools/vslvmtools_libcdata.h +0 -54
  1376. libvslvm-20240301/vslvmtools/vslvmtools_libcerror.h +0 -50
  1377. libvslvm-20240301/vslvmtools/vslvmtools_libclocale.h +0 -50
  1378. libvslvm-20240301/vslvmtools/vslvmtools_libcnotify.h +0 -50
  1379. libvslvm-20240301/vslvmtools/vslvmtools_libcpath.h +0 -48
  1380. libvslvm-20240301/vslvmtools/vslvmtools_libuna.h +0 -60
  1381. libvslvm-20240301/vslvmtools/vslvmtools_libvslvm.h +0 -30
  1382. libvslvm-20240301/vslvmtools/vslvmtools_output.c +0 -179
  1383. libvslvm-20240301/vslvmtools/vslvmtools_output.h +0 -55
  1384. libvslvm-20240301/vslvmtools/vslvmtools_signal.c +0 -262
  1385. libvslvm-20240301/vslvmtools/vslvmtools_signal.h +0 -72
  1386. libvslvm-20240301/vslvmtools/vslvmtools_unused.h +0 -50
  1387. {libvslvm-20240301 → libvslvm_python-20260901}/ABOUT-NLS +0 -0
  1388. {libvslvm-20240301 → libvslvm_python-20260901}/COPYING +0 -0
  1389. {libvslvm-20240301 → libvslvm_python-20260901}/COPYING.LESSER +0 -0
  1390. {libvslvm-20240301 → libvslvm_python-20260901}/ChangeLog +0 -0
  1391. {libvslvm-20240301 → libvslvm_python-20260901}/NEWS +0 -0
  1392. {libvslvm-20240301 → libvslvm_python-20260901}/compile +0 -0
  1393. {libvslvm-20240301 → libvslvm_python-20260901}/config.rpath +0 -0
  1394. {libvslvm-20240301 → libvslvm_python-20260901}/depcomp +0 -0
  1395. {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/changelog.in +0 -0
  1396. {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/libvslvm-dev.install +0 -0
  1397. {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/libvslvm-python3.install +0 -0
  1398. {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/libvslvm-tools.install +0 -0
  1399. {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/libvslvm.install +0 -0
  1400. {libvslvm-20240301 → libvslvm_python-20260901}/dpkg/source/format +0 -0
  1401. {libvslvm-20240301 → libvslvm_python-20260901}/install-sh +0 -0
  1402. {libvslvm-20240301 → libvslvm_python-20260901}/libvslvm.pc.in +0 -0
  1403. {libvslvm-20240301 → libvslvm_python-20260901}/libvslvm.spec.in +0 -0
  1404. {libvslvm-20240301 → libvslvm_python-20260901}/m4/gettext.m4 +0 -0
  1405. {libvslvm-20240301 → libvslvm_python-20260901}/m4/host-cpu-c-abi.m4 +0 -0
  1406. {libvslvm-20240301 → libvslvm_python-20260901}/m4/iconv.m4 +0 -0
  1407. {libvslvm-20240301 → libvslvm_python-20260901}/m4/intlmacosx.m4 +0 -0
  1408. {libvslvm-20240301 → libvslvm_python-20260901}/m4/lib-ld.m4 +0 -0
  1409. {libvslvm-20240301 → libvslvm_python-20260901}/m4/lib-link.m4 +0 -0
  1410. {libvslvm-20240301 → libvslvm_python-20260901}/m4/lib-prefix.m4 +0 -0
  1411. {libvslvm-20240301 → libvslvm_python-20260901}/m4/nls.m4 +0 -0
  1412. {libvslvm-20240301 → libvslvm_python-20260901}/m4/po.m4 +0 -0
  1413. {libvslvm-20240301 → libvslvm_python-20260901}/m4/progtest.m4 +0 -0
  1414. {libvslvm-20240301 → libvslvm_python-20260901}/missing +0 -0
  1415. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libbfio/libbfio.vcproj +0 -0
  1416. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcdata/libcdata.vcproj +0 -0
  1417. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcerror/libcerror.vcproj +0 -0
  1418. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcfile/libcfile.vcproj +0 -0
  1419. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libclocale/libclocale.vcproj +0 -0
  1420. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
  1421. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcpath/libcpath.vcproj +0 -0
  1422. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
  1423. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
  1424. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libfcache/libfcache.vcproj +0 -0
  1425. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libfdata/libfdata.vcproj +0 -0
  1426. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libfvalue/libfvalue.vcproj +0 -0
  1427. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libuna/libuna.vcproj +0 -0
  1428. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/libvslvm/libvslvm.vcproj +0 -0
  1429. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_chunk_data/vslvm_test_chunk_data.vcproj +0 -0
  1430. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_data_area_descriptor/vslvm_test_data_area_descriptor.vcproj +0 -0
  1431. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_error/vslvm_test_error.vcproj +0 -0
  1432. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_handle/vslvm_test_handle.vcproj +0 -0
  1433. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_io_handle/vslvm_test_io_handle.vcproj +0 -0
  1434. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_logical_volume/vslvm_test_logical_volume.vcproj +0 -0
  1435. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_logical_volume_values/vslvm_test_logical_volume_values.vcproj +0 -0
  1436. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_metadata/vslvm_test_metadata.vcproj +0 -0
  1437. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_metadata_area/vslvm_test_metadata_area.vcproj +0 -0
  1438. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_notify/vslvm_test_notify.vcproj +0 -0
  1439. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_physical_volume/vslvm_test_physical_volume.vcproj +0 -0
  1440. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_raw_location_descriptor/vslvm_test_raw_location_descriptor.vcproj +0 -0
  1441. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_segment/vslvm_test_segment.vcproj +0 -0
  1442. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_stripe/vslvm_test_stripe.vcproj +0 -0
  1443. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_support/vslvm_test_support.vcproj +0 -0
  1444. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_tools_info_handle/vslvm_test_tools_info_handle.vcproj +0 -0
  1445. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_tools_output/vslvm_test_tools_output.vcproj +0 -0
  1446. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_tools_signal/vslvm_test_tools_signal.vcproj +0 -0
  1447. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvm_test_volume_group/vslvm_test_volume_group.vcproj +0 -0
  1448. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvminfo/vslvminfo.vcproj +0 -0
  1449. {libvslvm-20240301 → libvslvm_python-20260901}/msvscpp/vslvmmount/vslvmmount.vcproj +0 -0
  1450. {libvslvm-20240301 → libvslvm_python-20260901}/po/ChangeLog +0 -0
  1451. {libvslvm-20240301 → libvslvm_python-20260901}/po/Makefile.in.in +0 -0
  1452. {libvslvm-20240301 → libvslvm_python-20260901}/po/Makevars.in +0 -0
  1453. {libvslvm-20240301 → libvslvm_python-20260901}/po/POTFILES.in +0 -0
  1454. {libvslvm-20240301 → libvslvm_python-20260901}/po/Rules-quot +0 -0
  1455. {libvslvm-20240301 → libvslvm_python-20260901}/po/boldquot.sed +0 -0
  1456. {libvslvm-20240301 → libvslvm_python-20260901}/po/en@boldquot.header +0 -0
  1457. {libvslvm-20240301 → libvslvm_python-20260901}/po/en@quot.header +0 -0
  1458. {libvslvm-20240301 → libvslvm_python-20260901}/po/insert-header.sin +0 -0
  1459. {libvslvm-20240301 → libvslvm_python-20260901}/po/quot.sed +0 -0
  1460. {libvslvm-20240301 → libvslvm_python-20260901}/po/remove-potcdate.sin +0 -0
@@ -0,0 +1,4 @@
1
+ Acknowledgements: libvslvm
2
+
3
+ Copyright (C) 2014-2026, Joachim Metz <joachim.metz@gmail.com>
4
+
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
+