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