gitextract_g2azv67f/ ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitmodules ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENCE ├── README.md ├── btrfs-dump.pl ├── mingw-amd64.cmake ├── mingw-x86.cmake ├── msvc-aarch64.cmake ├── msvc-amd64.cmake ├── msvc-armv7.cmake ├── msvc-x86.cmake ├── send-dump.pl └── src/ ├── balance.c ├── blake2-impl.h ├── blake2b-ref.c ├── boot.c ├── btrfs-vol.inf ├── btrfs.c ├── btrfs.cdf ├── btrfs.h ├── btrfs.inf ├── btrfs.rc.in ├── btrfs_drv.h ├── btrfsioctl.h ├── cache.c ├── calcthread.c ├── compress.c ├── crc32c-aarch64.asm ├── crc32c-gas.S ├── crc32c-masm.asm ├── crc32c.c ├── crc32c.h ├── create.c ├── devctrl.c ├── dirctrl.c ├── extent-tree.c ├── fastio.c ├── fileinfo.c ├── flushthread.c ├── free-space.c ├── fsctl.c ├── fsrtl.c ├── galois.c ├── mkbtrfs/ │ ├── mkbtrfs.c │ ├── mkbtrfs.rc.in │ └── resource.h ├── pnp.c ├── read.c ├── registry.c ├── reparse.c ├── resource.h ├── scrub.c ├── search.c ├── security.c ├── send.c ├── sha256.c ├── shellext/ │ ├── balance.cpp │ ├── balance.h │ ├── contextmenu.cpp │ ├── contextmenu.h │ ├── devices.cpp │ ├── devices.h │ ├── factory.cpp │ ├── factory.h │ ├── iconoverlay.cpp │ ├── iconoverlay.h │ ├── main.cpp │ ├── mappings.cpp │ ├── mountmgr.cpp │ ├── mountmgr.h │ ├── propsheet.cpp │ ├── propsheet.h │ ├── recv.cpp │ ├── recv.h │ ├── resource.h │ ├── scrub.cpp │ ├── scrub.h │ ├── send.cpp │ ├── send.h │ ├── shellbtrfs.def │ ├── shellbtrfs.manifest │ ├── shellbtrfs.rc.in │ ├── shellext.h │ ├── volpropsheet.cpp │ └── volpropsheet.h ├── tests/ │ ├── create.cpp │ ├── cs.cpp │ ├── delete.cpp │ ├── ea.cpp │ ├── fileinfo.cpp │ ├── io.cpp │ ├── links.cpp │ ├── manifest.xml │ ├── mmap.cpp │ ├── oplock.cpp │ ├── overwrite.cpp │ ├── rename.cpp │ ├── reparse.cpp │ ├── security.cpp │ ├── streams.cpp │ ├── supersede.cpp │ ├── test.cpp │ ├── test.h │ └── test.rc.in ├── treefuncs.c ├── ubtrfs/ │ ├── resource.h │ ├── ubtrfs.c │ ├── ubtrfs.def │ └── ubtrfs.rc.in ├── volume.c ├── worker-thread.c ├── write.c ├── xor-gas.S ├── xor-masm.asm └── zstd-shim.h