├── APPLE_LICENSE ├── CopyHFSMeta ├── CopyHFSMeta.entitlements ├── Data.h ├── DeviceWrapper.c ├── Gather.c ├── ScanExtents.c ├── Sparse.h ├── SparseBundle.c ├── dump.c ├── hfsmeta.h ├── main.c ├── misc.c └── util.c ├── Fuzzing.xcconfig ├── README ├── core ├── BTree.c ├── BTreeAllocate.c ├── BTreeMiscOps.c ├── BTreeNodeOps.c ├── BTreeNodeReserve.c ├── BTreeScanner.c ├── BTreeScanner.h ├── BTreeTreeOps.c ├── BTreeWrapper.c ├── BTreesInternal.h ├── BTreesPrivate.h ├── CatalogPrivate.h ├── CatalogUtilities.c ├── FileExtentMapping.c ├── FileIDsServices.c ├── FileMgrInternal.h ├── HFSUnicodeWrappers.h ├── MacOSStubs.c ├── UCStringCompareData.h ├── UnicodeWrappers.c ├── VolumeAllocation.c ├── hfs.h ├── hfs_alloc_trace.h ├── hfs_attrlist.c ├── hfs_attrlist.h ├── hfs_btreeio.c ├── hfs_btreeio.h ├── hfs_catalog.c ├── hfs_catalog.h ├── hfs_chash.c ├── hfs_cnode.c ├── hfs_cnode.h ├── hfs_cprotect.c ├── hfs_cprotect.h ├── hfs_dbg.h ├── hfs_endian.c ├── hfs_endian.h ├── hfs_extents.c ├── hfs_extents.h ├── hfs_format.h ├── hfs_fsctl.h ├── hfs_fsinfo.c ├── hfs_hotfiles.c ├── hfs_hotfiles.h ├── hfs_iokit.cpp ├── hfs_iokit.h ├── hfs_journal.c ├── hfs_journal.h ├── hfs_kdebug.h ├── hfs_link.c ├── hfs_lookup.c ├── hfs_macos_defs.h ├── hfs_mount.h ├── hfs_notification.c ├── hfs_quota.c ├── hfs_quota.h ├── hfs_readwrite.c ├── hfs_resize.c ├── hfs_search.c ├── hfs_unistr.h ├── hfs_vfsops.c ├── hfs_vfsutils.c ├── hfs_vnops.c ├── hfs_xattr.c ├── install ├── iphoneos-Info.plist ├── kext-config.h ├── kext.xcconfig ├── macosx-Info.plist ├── mk-root.sh ├── rangelist.c └── rangelist.h ├── fs ├── Info.plist └── en.lproj │ └── InfoPlist.strings ├── fsck_hfs ├── docs │ └── fsck_gui_interface_design.rtf ├── fsck_hfs.8 ├── fsck_hfs.c ├── fsck_hfs.h ├── fsck_hfs.ios.entitlements ├── fsck_hfs.osx.entitlements ├── fsck_keys.h ├── fsck_messages.c ├── fsck_messages.h └── utilities.c ├── fstyp_hfs ├── fstyp_hfs.8 ├── fstyp_hfs.c └── fstyp_hfs.entitlements ├── hfs-alloc-trace └── hfs-alloc-trace.c ├── hfs.xcconfig ├── hfs.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── All_MacOSX.xcscheme │ ├── All_iOS.xcscheme │ ├── CopyHFSMeta.xcscheme │ ├── fsck_hfs.xcscheme │ ├── fsck_makestrings.xcscheme │ ├── hfs.fs.xcscheme │ ├── hfs_util.xcscheme │ ├── kext-coverage.xcscheme │ ├── kext.xcscheme │ ├── livefiles_hfs.xcscheme │ ├── livefiles_hfs_tester.xcscheme │ ├── mount_hfs.xcscheme │ ├── newfs_hfs.xcscheme │ └── newfs_hfs_debug.xcscheme ├── hfs_appex ├── HFSFileSystem.entitlements ├── HFSFileSystem.h ├── HFSFileSystem.m └── Info.plist ├── hfs_encodings ├── HFSEncodings-Info.plist ├── hfs_encodinghint.c ├── hfs_encodings.c ├── hfs_encodings.h ├── hfs_encodings_internal.h └── hfs_encodings_kext.cpp ├── hfs_japanese ├── CustomInfo.xml ├── Makefile ├── Makefile.postamble ├── Makefile.preamble ├── PB.project └── hfs_japanese.kmodproj │ ├── CFStub.h │ ├── CustomInfo.xml │ ├── JapaneseConverter.c │ ├── Makefile │ ├── Makefile.postamble │ ├── Makefile.preamble │ ├── PB.project │ └── hfs_japanese.c ├── hfs_util ├── hfs.util.8 ├── hfs_CD.fs.tiff ├── hfs_CD.openfs.tiff ├── hfs_FD.fs.tiff ├── hfs_FD.openfs.tiff ├── hfs_HD.fs.tiff ├── hfs_HD.openfs.tiff ├── hfs_RHD.fs.tiff ├── hfs_RHD.openfs.tiff ├── hfs_util.ios.entitlements ├── hfs_util.osx.entitlements ├── hfsutil_fuzzmain.c ├── hfsutil_jnl.c └── hfsutil_main.c ├── hfs_xctests ├── hfs_testplan.xctestplan ├── hfs_xctests.entitlements ├── hfs_xctests.h ├── hfs_xctests.m ├── hfs_xctests_utilities.h └── hfs_xctests_utilities.m ├── lib_fsck_hfs ├── cache.c ├── cache.h ├── check.c ├── check.h ├── dfalib │ ├── BTree.c │ ├── BTree.h │ ├── BTreeAllocate.c │ ├── BTreeMiscOps.c │ ├── BTreeNodeOps.c │ ├── BTreePrivate.h │ ├── BTreeScanner.c │ ├── BTreeScanner.h │ ├── BTreeTreeOps.c │ ├── BlockCache.c │ ├── CaseFolding.h │ ├── CatalogCheck.c │ ├── CheckHFS.h │ ├── DecompData.h │ ├── DecompDataEnums.h │ ├── DecompMakeData.c │ ├── FixDecompsNotes.txt │ ├── HardLinkCheck.c │ ├── SAllocate.c │ ├── SBTree.c │ ├── SCatalog.c │ ├── SControl.c │ ├── SDevice.c │ ├── SExtents.c │ ├── SKeyCompare.c │ ├── SRebuildBTree.c │ ├── SRepair.c │ ├── SRuntime.h │ ├── SStubs.c │ ├── SUtils.c │ ├── SVerify1.c │ ├── SVerify2.c │ ├── Scavenger.h │ ├── VolumeBitmapCheck.c │ ├── dirhardlink.c │ ├── hfs_endian.c │ ├── hfs_endian.h │ └── uuid.c ├── fsck_debug.c ├── fsck_debug.h ├── fsck_hfs_msgnums.h ├── fsck_hfs_strings.c ├── fsck_journal.c ├── fsck_journal.h ├── fsck_msgnums.h ├── fsck_strings.c ├── lib_fsck_hfs.c └── lib_fsck_hfs.h ├── libhfs_metadata ├── iterate_hfs_metadata.c └── iterate_hfs_metadata.h ├── livefiles_cs_plugin ├── lf_cs.h ├── lf_cs_checksum.c ├── lf_cs_checksum.h ├── lf_cs_disk_format.h ├── lf_cs_logging.c ├── lf_cs_logging.h ├── lf_cs_vfsops.c ├── livefiles_cs_tester.c └── livefiles_cs_tester.entitlements ├── livefiles_hfs_plugin ├── lf_hfs.h ├── lf_hfs_attrlist.c ├── lf_hfs_attrlist.h ├── lf_hfs_btree.c ├── lf_hfs_btree.h ├── lf_hfs_btree_allocate.c ├── lf_hfs_btree_misc_ops.c ├── lf_hfs_btree_node_ops.c ├── lf_hfs_btree_node_reserve.c ├── lf_hfs_btree_tree_ops.c ├── lf_hfs_btrees_internal.h ├── lf_hfs_btrees_io.c ├── lf_hfs_btrees_io.h ├── lf_hfs_btrees_private.h ├── lf_hfs_catalog.c ├── lf_hfs_catalog.h ├── lf_hfs_chash.c ├── lf_hfs_chash.h ├── lf_hfs_cnode.c ├── lf_hfs_cnode.h ├── lf_hfs_common.h ├── lf_hfs_defs.h ├── lf_hfs_dirops_handler.c ├── lf_hfs_dirops_handler.h ├── lf_hfs_endian.c ├── lf_hfs_endian.h ├── lf_hfs_file_extent_mapping.c ├── lf_hfs_file_extent_mapping.h ├── lf_hfs_file_mgr_internal.h ├── lf_hfs_fileops_handler.c ├── lf_hfs_fileops_handler.h ├── lf_hfs_format.h ├── lf_hfs_fsops_handler.c ├── lf_hfs_fsops_handler.h ├── lf_hfs_generic_buf.c ├── lf_hfs_generic_buf.h ├── lf_hfs_journal.c ├── lf_hfs_journal.h ├── lf_hfs_link.c ├── lf_hfs_link.h ├── lf_hfs_locks.c ├── lf_hfs_locks.h ├── lf_hfs_logger.c ├── lf_hfs_logger.h ├── lf_hfs_lookup.c ├── lf_hfs_lookup.h ├── lf_hfs_mount.h ├── lf_hfs_rangelist.c ├── lf_hfs_rangelist.h ├── lf_hfs_raw_read_write.c ├── lf_hfs_raw_read_write.h ├── lf_hfs_readwrite_ops.c ├── lf_hfs_readwrite_ops.h ├── lf_hfs_sbunicode.c ├── lf_hfs_sbunicode.h ├── lf_hfs_ucs_string_cmp_data.h ├── lf_hfs_unicode_wrappers.c ├── lf_hfs_unicode_wrappers.h ├── lf_hfs_utfconvdata.h ├── lf_hfs_utils.c ├── lf_hfs_utils.h ├── lf_hfs_vfsops.c ├── lf_hfs_vfsops.h ├── lf_hfs_vfsutils.c ├── lf_hfs_vfsutils.h ├── lf_hfs_vnode.c ├── lf_hfs_vnode.h ├── lf_hfs_vnops.c ├── lf_hfs_vnops.h ├── lf_hfs_volume_allocation.c ├── lf_hfs_volume_allocation.h ├── lf_hfs_volume_identifiers.c ├── lf_hfs_volume_identifiers.h ├── lf_hfs_xattr.c ├── lf_hfs_xattr.h ├── livefiles_hfs_tester.c ├── livefiles_hfs_tester.entitlements ├── livefiles_hfs_tester.h └── scripts │ └── CreateRelease.py ├── mount_hfs ├── hfs_endian.h ├── mount_hfs.8 ├── mount_hfs.c ├── mount_hfs.ios.entitlements ├── mount_hfs.osx.entitlements ├── optical.c └── optical.h ├── newfs_hfs ├── hfs_endian.c ├── hfs_endian.h ├── makehfs.c ├── newfs_hfs.8 ├── newfs_hfs.c ├── newfs_hfs.entitlements └── newfs_hfs.h └── tests ├── cases ├── test-access.c ├── test-cas-bsdflags.c ├── test-chflags.c ├── test-class-roll.c ├── test-dateadded.c ├── test-deep-rm.c ├── test-defrag.c ├── test-dir-link.c ├── test-doc-tombstone.c ├── test-dprotect.c ├── test-external-jnl.c ├── test-file-too-big.m ├── test-fsctls.c ├── test-fsinfo-cprotect.c ├── test-fsinfo-sig.c ├── test-fsinfo.c ├── test-fsync.c ├── test-get-volume-create-time.c ├── test-getattrlist-dprotect.m ├── test-getattrlist.c ├── test-hard-links.m ├── test-invalid-ranges.m ├── test-journal-toggle.c ├── test-key-roll.c ├── test-lf-cs-plugin.c ├── test-list-ids.c ├── test-log2phys.m ├── test-map-private.m ├── test-mmap-mod-time.c ├── test-mod-time.c ├── test-move-data-extents.c ├── test-msync-16k.c ├── test-quotas.c ├── test-raw-dev-unaligned.c ├── test-readdir.c ├── test-renamex.c ├── test-resize.m ├── test-scan-range-size.c ├── test-secluded-rename.c ├── test-set-create-time.c ├── test-set-protection-class.c ├── test-sparse-dev.c ├── test-symlinks.c ├── test-throttled-io.c ├── test-transcode.m ├── test-uncached-io.c ├── test-unicode-file-names.c └── test_disklevel.c ├── disk-image.h ├── disk-image.m ├── gen-custom-dmg.sh ├── gen-dmg.sh ├── gen-test-plist.sh ├── generate-compressed-image.c ├── hfs-tests.entitlements ├── hfs-tests.h ├── hfs-tests.mm ├── hfs-tests.xcconfig ├── hfs_alloc_test.c ├── hfs_extents_test.c ├── hfs_extents_test.h ├── img-to-c.c ├── rangelist_test.c ├── systemx.c ├── systemx.h └── test-utils.h /APPLE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/APPLE_LICENSE -------------------------------------------------------------------------------- /CopyHFSMeta/CopyHFSMeta.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/CopyHFSMeta.entitlements -------------------------------------------------------------------------------- /CopyHFSMeta/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/Data.h -------------------------------------------------------------------------------- /CopyHFSMeta/DeviceWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/DeviceWrapper.c -------------------------------------------------------------------------------- /CopyHFSMeta/Gather.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/Gather.c -------------------------------------------------------------------------------- /CopyHFSMeta/ScanExtents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/ScanExtents.c -------------------------------------------------------------------------------- /CopyHFSMeta/Sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/Sparse.h -------------------------------------------------------------------------------- /CopyHFSMeta/SparseBundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/SparseBundle.c -------------------------------------------------------------------------------- /CopyHFSMeta/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/dump.c -------------------------------------------------------------------------------- /CopyHFSMeta/hfsmeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/hfsmeta.h -------------------------------------------------------------------------------- /CopyHFSMeta/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/main.c -------------------------------------------------------------------------------- /CopyHFSMeta/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/misc.c -------------------------------------------------------------------------------- /CopyHFSMeta/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/CopyHFSMeta/util.c -------------------------------------------------------------------------------- /Fuzzing.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/Fuzzing.xcconfig -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/README -------------------------------------------------------------------------------- /core/BTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTree.c -------------------------------------------------------------------------------- /core/BTreeAllocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTreeAllocate.c -------------------------------------------------------------------------------- /core/BTreeMiscOps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTreeMiscOps.c -------------------------------------------------------------------------------- /core/BTreeNodeOps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTreeNodeOps.c -------------------------------------------------------------------------------- /core/BTreeNodeReserve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTreeNodeReserve.c -------------------------------------------------------------------------------- /core/BTreeScanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTreeScanner.c -------------------------------------------------------------------------------- /core/BTreeScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTreeScanner.h -------------------------------------------------------------------------------- /core/BTreeTreeOps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTreeTreeOps.c -------------------------------------------------------------------------------- /core/BTreeWrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTreeWrapper.c -------------------------------------------------------------------------------- /core/BTreesInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTreesInternal.h -------------------------------------------------------------------------------- /core/BTreesPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/BTreesPrivate.h -------------------------------------------------------------------------------- /core/CatalogPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/CatalogPrivate.h -------------------------------------------------------------------------------- /core/CatalogUtilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/CatalogUtilities.c -------------------------------------------------------------------------------- /core/FileExtentMapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/FileExtentMapping.c -------------------------------------------------------------------------------- /core/FileIDsServices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/FileIDsServices.c -------------------------------------------------------------------------------- /core/FileMgrInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/FileMgrInternal.h -------------------------------------------------------------------------------- /core/HFSUnicodeWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/HFSUnicodeWrappers.h -------------------------------------------------------------------------------- /core/MacOSStubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/MacOSStubs.c -------------------------------------------------------------------------------- /core/UCStringCompareData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/UCStringCompareData.h -------------------------------------------------------------------------------- /core/UnicodeWrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/UnicodeWrappers.c -------------------------------------------------------------------------------- /core/VolumeAllocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/VolumeAllocation.c -------------------------------------------------------------------------------- /core/hfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs.h -------------------------------------------------------------------------------- /core/hfs_alloc_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_alloc_trace.h -------------------------------------------------------------------------------- /core/hfs_attrlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_attrlist.c -------------------------------------------------------------------------------- /core/hfs_attrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_attrlist.h -------------------------------------------------------------------------------- /core/hfs_btreeio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_btreeio.c -------------------------------------------------------------------------------- /core/hfs_btreeio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_btreeio.h -------------------------------------------------------------------------------- /core/hfs_catalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_catalog.c -------------------------------------------------------------------------------- /core/hfs_catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_catalog.h -------------------------------------------------------------------------------- /core/hfs_chash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_chash.c -------------------------------------------------------------------------------- /core/hfs_cnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_cnode.c -------------------------------------------------------------------------------- /core/hfs_cnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_cnode.h -------------------------------------------------------------------------------- /core/hfs_cprotect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_cprotect.c -------------------------------------------------------------------------------- /core/hfs_cprotect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_cprotect.h -------------------------------------------------------------------------------- /core/hfs_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_dbg.h -------------------------------------------------------------------------------- /core/hfs_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_endian.c -------------------------------------------------------------------------------- /core/hfs_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_endian.h -------------------------------------------------------------------------------- /core/hfs_extents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_extents.c -------------------------------------------------------------------------------- /core/hfs_extents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_extents.h -------------------------------------------------------------------------------- /core/hfs_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_format.h -------------------------------------------------------------------------------- /core/hfs_fsctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_fsctl.h -------------------------------------------------------------------------------- /core/hfs_fsinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_fsinfo.c -------------------------------------------------------------------------------- /core/hfs_hotfiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_hotfiles.c -------------------------------------------------------------------------------- /core/hfs_hotfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_hotfiles.h -------------------------------------------------------------------------------- /core/hfs_iokit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_iokit.cpp -------------------------------------------------------------------------------- /core/hfs_iokit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_iokit.h -------------------------------------------------------------------------------- /core/hfs_journal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_journal.c -------------------------------------------------------------------------------- /core/hfs_journal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_journal.h -------------------------------------------------------------------------------- /core/hfs_kdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_kdebug.h -------------------------------------------------------------------------------- /core/hfs_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_link.c -------------------------------------------------------------------------------- /core/hfs_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_lookup.c -------------------------------------------------------------------------------- /core/hfs_macos_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_macos_defs.h -------------------------------------------------------------------------------- /core/hfs_mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_mount.h -------------------------------------------------------------------------------- /core/hfs_notification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_notification.c -------------------------------------------------------------------------------- /core/hfs_quota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_quota.c -------------------------------------------------------------------------------- /core/hfs_quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_quota.h -------------------------------------------------------------------------------- /core/hfs_readwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_readwrite.c -------------------------------------------------------------------------------- /core/hfs_resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_resize.c -------------------------------------------------------------------------------- /core/hfs_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_search.c -------------------------------------------------------------------------------- /core/hfs_unistr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_unistr.h -------------------------------------------------------------------------------- /core/hfs_vfsops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_vfsops.c -------------------------------------------------------------------------------- /core/hfs_vfsutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_vfsutils.c -------------------------------------------------------------------------------- /core/hfs_vnops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_vnops.c -------------------------------------------------------------------------------- /core/hfs_xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/hfs_xattr.c -------------------------------------------------------------------------------- /core/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/install -------------------------------------------------------------------------------- /core/iphoneos-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/iphoneos-Info.plist -------------------------------------------------------------------------------- /core/kext-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/kext-config.h -------------------------------------------------------------------------------- /core/kext.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/kext.xcconfig -------------------------------------------------------------------------------- /core/macosx-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/macosx-Info.plist -------------------------------------------------------------------------------- /core/mk-root.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/mk-root.sh -------------------------------------------------------------------------------- /core/rangelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/rangelist.c -------------------------------------------------------------------------------- /core/rangelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/core/rangelist.h -------------------------------------------------------------------------------- /fs/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fs/Info.plist -------------------------------------------------------------------------------- /fs/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fs/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /fsck_hfs/docs/fsck_gui_interface_design.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fsck_hfs/docs/fsck_gui_interface_design.rtf -------------------------------------------------------------------------------- /fsck_hfs/fsck_hfs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fsck_hfs/fsck_hfs.8 -------------------------------------------------------------------------------- /fsck_hfs/fsck_hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fsck_hfs/fsck_hfs.c -------------------------------------------------------------------------------- /fsck_hfs/fsck_hfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fsck_hfs/fsck_hfs.h -------------------------------------------------------------------------------- /fsck_hfs/fsck_hfs.ios.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fsck_hfs/fsck_hfs.ios.entitlements -------------------------------------------------------------------------------- /fsck_hfs/fsck_hfs.osx.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fsck_hfs/fsck_hfs.osx.entitlements -------------------------------------------------------------------------------- /fsck_hfs/fsck_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fsck_hfs/fsck_keys.h -------------------------------------------------------------------------------- /fsck_hfs/fsck_messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fsck_hfs/fsck_messages.c -------------------------------------------------------------------------------- /fsck_hfs/fsck_messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fsck_hfs/fsck_messages.h -------------------------------------------------------------------------------- /fsck_hfs/utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fsck_hfs/utilities.c -------------------------------------------------------------------------------- /fstyp_hfs/fstyp_hfs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fstyp_hfs/fstyp_hfs.8 -------------------------------------------------------------------------------- /fstyp_hfs/fstyp_hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fstyp_hfs/fstyp_hfs.c -------------------------------------------------------------------------------- /fstyp_hfs/fstyp_hfs.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/fstyp_hfs/fstyp_hfs.entitlements -------------------------------------------------------------------------------- /hfs-alloc-trace/hfs-alloc-trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs-alloc-trace/hfs-alloc-trace.c -------------------------------------------------------------------------------- /hfs.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcconfig -------------------------------------------------------------------------------- /hfs.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /hfs.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /hfs.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/All_MacOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/All_MacOSX.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/All_iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/All_iOS.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/CopyHFSMeta.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/CopyHFSMeta.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/fsck_hfs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/fsck_hfs.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/fsck_makestrings.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/fsck_makestrings.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/hfs.fs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/hfs.fs.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/hfs_util.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/hfs_util.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/kext-coverage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/kext-coverage.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/kext.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/kext.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/livefiles_hfs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/livefiles_hfs.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/livefiles_hfs_tester.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/livefiles_hfs_tester.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/mount_hfs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/mount_hfs.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/newfs_hfs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/newfs_hfs.xcscheme -------------------------------------------------------------------------------- /hfs.xcodeproj/xcshareddata/xcschemes/newfs_hfs_debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs.xcodeproj/xcshareddata/xcschemes/newfs_hfs_debug.xcscheme -------------------------------------------------------------------------------- /hfs_appex/HFSFileSystem.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_appex/HFSFileSystem.entitlements -------------------------------------------------------------------------------- /hfs_appex/HFSFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_appex/HFSFileSystem.h -------------------------------------------------------------------------------- /hfs_appex/HFSFileSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_appex/HFSFileSystem.m -------------------------------------------------------------------------------- /hfs_appex/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_appex/Info.plist -------------------------------------------------------------------------------- /hfs_encodings/HFSEncodings-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_encodings/HFSEncodings-Info.plist -------------------------------------------------------------------------------- /hfs_encodings/hfs_encodinghint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_encodings/hfs_encodinghint.c -------------------------------------------------------------------------------- /hfs_encodings/hfs_encodings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_encodings/hfs_encodings.c -------------------------------------------------------------------------------- /hfs_encodings/hfs_encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_encodings/hfs_encodings.h -------------------------------------------------------------------------------- /hfs_encodings/hfs_encodings_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_encodings/hfs_encodings_internal.h -------------------------------------------------------------------------------- /hfs_encodings/hfs_encodings_kext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_encodings/hfs_encodings_kext.cpp -------------------------------------------------------------------------------- /hfs_japanese/CustomInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/CustomInfo.xml -------------------------------------------------------------------------------- /hfs_japanese/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/Makefile -------------------------------------------------------------------------------- /hfs_japanese/Makefile.postamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/Makefile.postamble -------------------------------------------------------------------------------- /hfs_japanese/Makefile.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/Makefile.preamble -------------------------------------------------------------------------------- /hfs_japanese/PB.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/PB.project -------------------------------------------------------------------------------- /hfs_japanese/hfs_japanese.kmodproj/CFStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/hfs_japanese.kmodproj/CFStub.h -------------------------------------------------------------------------------- /hfs_japanese/hfs_japanese.kmodproj/CustomInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/hfs_japanese.kmodproj/CustomInfo.xml -------------------------------------------------------------------------------- /hfs_japanese/hfs_japanese.kmodproj/JapaneseConverter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/hfs_japanese.kmodproj/JapaneseConverter.c -------------------------------------------------------------------------------- /hfs_japanese/hfs_japanese.kmodproj/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/hfs_japanese.kmodproj/Makefile -------------------------------------------------------------------------------- /hfs_japanese/hfs_japanese.kmodproj/Makefile.postamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/hfs_japanese.kmodproj/Makefile.postamble -------------------------------------------------------------------------------- /hfs_japanese/hfs_japanese.kmodproj/Makefile.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/hfs_japanese.kmodproj/Makefile.preamble -------------------------------------------------------------------------------- /hfs_japanese/hfs_japanese.kmodproj/PB.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/hfs_japanese.kmodproj/PB.project -------------------------------------------------------------------------------- /hfs_japanese/hfs_japanese.kmodproj/hfs_japanese.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_japanese/hfs_japanese.kmodproj/hfs_japanese.c -------------------------------------------------------------------------------- /hfs_util/hfs.util.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs.util.8 -------------------------------------------------------------------------------- /hfs_util/hfs_CD.fs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs_CD.fs.tiff -------------------------------------------------------------------------------- /hfs_util/hfs_CD.openfs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs_CD.openfs.tiff -------------------------------------------------------------------------------- /hfs_util/hfs_FD.fs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs_FD.fs.tiff -------------------------------------------------------------------------------- /hfs_util/hfs_FD.openfs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs_FD.openfs.tiff -------------------------------------------------------------------------------- /hfs_util/hfs_HD.fs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs_HD.fs.tiff -------------------------------------------------------------------------------- /hfs_util/hfs_HD.openfs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs_HD.openfs.tiff -------------------------------------------------------------------------------- /hfs_util/hfs_RHD.fs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs_RHD.fs.tiff -------------------------------------------------------------------------------- /hfs_util/hfs_RHD.openfs.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs_RHD.openfs.tiff -------------------------------------------------------------------------------- /hfs_util/hfs_util.ios.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs_util.ios.entitlements -------------------------------------------------------------------------------- /hfs_util/hfs_util.osx.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfs_util.osx.entitlements -------------------------------------------------------------------------------- /hfs_util/hfsutil_fuzzmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfsutil_fuzzmain.c -------------------------------------------------------------------------------- /hfs_util/hfsutil_jnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfsutil_jnl.c -------------------------------------------------------------------------------- /hfs_util/hfsutil_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_util/hfsutil_main.c -------------------------------------------------------------------------------- /hfs_xctests/hfs_testplan.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_xctests/hfs_testplan.xctestplan -------------------------------------------------------------------------------- /hfs_xctests/hfs_xctests.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_xctests/hfs_xctests.entitlements -------------------------------------------------------------------------------- /hfs_xctests/hfs_xctests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_xctests/hfs_xctests.h -------------------------------------------------------------------------------- /hfs_xctests/hfs_xctests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_xctests/hfs_xctests.m -------------------------------------------------------------------------------- /hfs_xctests/hfs_xctests_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_xctests/hfs_xctests_utilities.h -------------------------------------------------------------------------------- /hfs_xctests/hfs_xctests_utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/hfs_xctests/hfs_xctests_utilities.m -------------------------------------------------------------------------------- /lib_fsck_hfs/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/cache.c -------------------------------------------------------------------------------- /lib_fsck_hfs/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/cache.h -------------------------------------------------------------------------------- /lib_fsck_hfs/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/check.c -------------------------------------------------------------------------------- /lib_fsck_hfs/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/check.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/BTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/BTree.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/BTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/BTree.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/BTreeAllocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/BTreeAllocate.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/BTreeMiscOps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/BTreeMiscOps.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/BTreeNodeOps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/BTreeNodeOps.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/BTreePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/BTreePrivate.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/BTreeScanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/BTreeScanner.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/BTreeScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/BTreeScanner.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/BTreeTreeOps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/BTreeTreeOps.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/BlockCache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/BlockCache.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/CaseFolding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/CaseFolding.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/CatalogCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/CatalogCheck.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/CheckHFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/CheckHFS.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/DecompData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/DecompData.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/DecompDataEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/DecompDataEnums.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/DecompMakeData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/DecompMakeData.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/FixDecompsNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/FixDecompsNotes.txt -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/HardLinkCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/HardLinkCheck.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SAllocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SAllocate.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SBTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SBTree.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SCatalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SCatalog.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SControl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SControl.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SDevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SDevice.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SExtents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SExtents.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SKeyCompare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SKeyCompare.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SRebuildBTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SRebuildBTree.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SRepair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SRepair.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SRuntime.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SStubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SStubs.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SUtils.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SVerify1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SVerify1.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/SVerify2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/SVerify2.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/Scavenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/Scavenger.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/VolumeBitmapCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/VolumeBitmapCheck.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/dirhardlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/dirhardlink.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/hfs_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/hfs_endian.c -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/hfs_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/hfs_endian.h -------------------------------------------------------------------------------- /lib_fsck_hfs/dfalib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/dfalib/uuid.c -------------------------------------------------------------------------------- /lib_fsck_hfs/fsck_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/fsck_debug.c -------------------------------------------------------------------------------- /lib_fsck_hfs/fsck_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/fsck_debug.h -------------------------------------------------------------------------------- /lib_fsck_hfs/fsck_hfs_msgnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/fsck_hfs_msgnums.h -------------------------------------------------------------------------------- /lib_fsck_hfs/fsck_hfs_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/fsck_hfs_strings.c -------------------------------------------------------------------------------- /lib_fsck_hfs/fsck_journal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/fsck_journal.c -------------------------------------------------------------------------------- /lib_fsck_hfs/fsck_journal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/fsck_journal.h -------------------------------------------------------------------------------- /lib_fsck_hfs/fsck_msgnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/fsck_msgnums.h -------------------------------------------------------------------------------- /lib_fsck_hfs/fsck_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/fsck_strings.c -------------------------------------------------------------------------------- /lib_fsck_hfs/lib_fsck_hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/lib_fsck_hfs.c -------------------------------------------------------------------------------- /lib_fsck_hfs/lib_fsck_hfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/lib_fsck_hfs/lib_fsck_hfs.h -------------------------------------------------------------------------------- /libhfs_metadata/iterate_hfs_metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/libhfs_metadata/iterate_hfs_metadata.c -------------------------------------------------------------------------------- /libhfs_metadata/iterate_hfs_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/libhfs_metadata/iterate_hfs_metadata.h -------------------------------------------------------------------------------- /livefiles_cs_plugin/lf_cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_cs_plugin/lf_cs.h -------------------------------------------------------------------------------- /livefiles_cs_plugin/lf_cs_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_cs_plugin/lf_cs_checksum.c -------------------------------------------------------------------------------- /livefiles_cs_plugin/lf_cs_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_cs_plugin/lf_cs_checksum.h -------------------------------------------------------------------------------- /livefiles_cs_plugin/lf_cs_disk_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_cs_plugin/lf_cs_disk_format.h -------------------------------------------------------------------------------- /livefiles_cs_plugin/lf_cs_logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_cs_plugin/lf_cs_logging.c -------------------------------------------------------------------------------- /livefiles_cs_plugin/lf_cs_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_cs_plugin/lf_cs_logging.h -------------------------------------------------------------------------------- /livefiles_cs_plugin/lf_cs_vfsops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_cs_plugin/lf_cs_vfsops.c -------------------------------------------------------------------------------- /livefiles_cs_plugin/livefiles_cs_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_cs_plugin/livefiles_cs_tester.c -------------------------------------------------------------------------------- /livefiles_cs_plugin/livefiles_cs_tester.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_cs_plugin/livefiles_cs_tester.entitlements -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_attrlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_attrlist.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_attrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_attrlist.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btree.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btree.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btree_allocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btree_allocate.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btree_misc_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btree_misc_ops.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btree_node_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btree_node_ops.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btree_node_reserve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btree_node_reserve.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btree_tree_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btree_tree_ops.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btrees_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btrees_internal.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btrees_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btrees_io.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btrees_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btrees_io.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_btrees_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_btrees_private.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_catalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_catalog.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_catalog.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_chash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_chash.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_chash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_chash.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_cnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_cnode.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_cnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_cnode.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_common.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_defs.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_dirops_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_dirops_handler.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_dirops_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_dirops_handler.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_endian.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_endian.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_file_extent_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_file_extent_mapping.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_file_extent_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_file_extent_mapping.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_file_mgr_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_file_mgr_internal.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_fileops_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_fileops_handler.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_fileops_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_fileops_handler.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_format.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_fsops_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_fsops_handler.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_fsops_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_fsops_handler.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_generic_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_generic_buf.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_generic_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_generic_buf.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_journal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_journal.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_journal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_journal.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_link.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_link.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_locks.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_locks.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_logger.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_logger.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_lookup.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_lookup.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_mount.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_rangelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_rangelist.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_rangelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_rangelist.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_raw_read_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_raw_read_write.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_raw_read_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_raw_read_write.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_readwrite_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_readwrite_ops.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_readwrite_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_readwrite_ops.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_sbunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_sbunicode.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_sbunicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_sbunicode.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_ucs_string_cmp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_ucs_string_cmp_data.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_unicode_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_unicode_wrappers.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_unicode_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_unicode_wrappers.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_utfconvdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_utfconvdata.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_utils.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_utils.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_vfsops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_vfsops.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_vfsops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_vfsops.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_vfsutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_vfsutils.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_vfsutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_vfsutils.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_vnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_vnode.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_vnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_vnode.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_vnops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_vnops.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_vnops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_vnops.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_volume_allocation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_volume_allocation.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_volume_allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_volume_allocation.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_volume_identifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_volume_identifiers.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_volume_identifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_volume_identifiers.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_xattr.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/lf_hfs_xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/lf_hfs_xattr.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/livefiles_hfs_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/livefiles_hfs_tester.c -------------------------------------------------------------------------------- /livefiles_hfs_plugin/livefiles_hfs_tester.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/livefiles_hfs_tester.entitlements -------------------------------------------------------------------------------- /livefiles_hfs_plugin/livefiles_hfs_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/livefiles_hfs_tester.h -------------------------------------------------------------------------------- /livefiles_hfs_plugin/scripts/CreateRelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/livefiles_hfs_plugin/scripts/CreateRelease.py -------------------------------------------------------------------------------- /mount_hfs/hfs_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/mount_hfs/hfs_endian.h -------------------------------------------------------------------------------- /mount_hfs/mount_hfs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/mount_hfs/mount_hfs.8 -------------------------------------------------------------------------------- /mount_hfs/mount_hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/mount_hfs/mount_hfs.c -------------------------------------------------------------------------------- /mount_hfs/mount_hfs.ios.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/mount_hfs/mount_hfs.ios.entitlements -------------------------------------------------------------------------------- /mount_hfs/mount_hfs.osx.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/mount_hfs/mount_hfs.osx.entitlements -------------------------------------------------------------------------------- /mount_hfs/optical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/mount_hfs/optical.c -------------------------------------------------------------------------------- /mount_hfs/optical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/mount_hfs/optical.h -------------------------------------------------------------------------------- /newfs_hfs/hfs_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/newfs_hfs/hfs_endian.c -------------------------------------------------------------------------------- /newfs_hfs/hfs_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/newfs_hfs/hfs_endian.h -------------------------------------------------------------------------------- /newfs_hfs/makehfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/newfs_hfs/makehfs.c -------------------------------------------------------------------------------- /newfs_hfs/newfs_hfs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/newfs_hfs/newfs_hfs.8 -------------------------------------------------------------------------------- /newfs_hfs/newfs_hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/newfs_hfs/newfs_hfs.c -------------------------------------------------------------------------------- /newfs_hfs/newfs_hfs.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/newfs_hfs/newfs_hfs.entitlements -------------------------------------------------------------------------------- /newfs_hfs/newfs_hfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/newfs_hfs/newfs_hfs.h -------------------------------------------------------------------------------- /tests/cases/test-access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-access.c -------------------------------------------------------------------------------- /tests/cases/test-cas-bsdflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-cas-bsdflags.c -------------------------------------------------------------------------------- /tests/cases/test-chflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-chflags.c -------------------------------------------------------------------------------- /tests/cases/test-class-roll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-class-roll.c -------------------------------------------------------------------------------- /tests/cases/test-dateadded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-dateadded.c -------------------------------------------------------------------------------- /tests/cases/test-deep-rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-deep-rm.c -------------------------------------------------------------------------------- /tests/cases/test-defrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-defrag.c -------------------------------------------------------------------------------- /tests/cases/test-dir-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-dir-link.c -------------------------------------------------------------------------------- /tests/cases/test-doc-tombstone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-doc-tombstone.c -------------------------------------------------------------------------------- /tests/cases/test-dprotect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-dprotect.c -------------------------------------------------------------------------------- /tests/cases/test-external-jnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-external-jnl.c -------------------------------------------------------------------------------- /tests/cases/test-file-too-big.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-file-too-big.m -------------------------------------------------------------------------------- /tests/cases/test-fsctls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-fsctls.c -------------------------------------------------------------------------------- /tests/cases/test-fsinfo-cprotect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-fsinfo-cprotect.c -------------------------------------------------------------------------------- /tests/cases/test-fsinfo-sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-fsinfo-sig.c -------------------------------------------------------------------------------- /tests/cases/test-fsinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-fsinfo.c -------------------------------------------------------------------------------- /tests/cases/test-fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-fsync.c -------------------------------------------------------------------------------- /tests/cases/test-get-volume-create-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-get-volume-create-time.c -------------------------------------------------------------------------------- /tests/cases/test-getattrlist-dprotect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-getattrlist-dprotect.m -------------------------------------------------------------------------------- /tests/cases/test-getattrlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-getattrlist.c -------------------------------------------------------------------------------- /tests/cases/test-hard-links.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-hard-links.m -------------------------------------------------------------------------------- /tests/cases/test-invalid-ranges.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-invalid-ranges.m -------------------------------------------------------------------------------- /tests/cases/test-journal-toggle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-journal-toggle.c -------------------------------------------------------------------------------- /tests/cases/test-key-roll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-key-roll.c -------------------------------------------------------------------------------- /tests/cases/test-lf-cs-plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-lf-cs-plugin.c -------------------------------------------------------------------------------- /tests/cases/test-list-ids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-list-ids.c -------------------------------------------------------------------------------- /tests/cases/test-log2phys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-log2phys.m -------------------------------------------------------------------------------- /tests/cases/test-map-private.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-map-private.m -------------------------------------------------------------------------------- /tests/cases/test-mmap-mod-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-mmap-mod-time.c -------------------------------------------------------------------------------- /tests/cases/test-mod-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-mod-time.c -------------------------------------------------------------------------------- /tests/cases/test-move-data-extents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-move-data-extents.c -------------------------------------------------------------------------------- /tests/cases/test-msync-16k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-msync-16k.c -------------------------------------------------------------------------------- /tests/cases/test-quotas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-quotas.c -------------------------------------------------------------------------------- /tests/cases/test-raw-dev-unaligned.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-raw-dev-unaligned.c -------------------------------------------------------------------------------- /tests/cases/test-readdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-readdir.c -------------------------------------------------------------------------------- /tests/cases/test-renamex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-renamex.c -------------------------------------------------------------------------------- /tests/cases/test-resize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-resize.m -------------------------------------------------------------------------------- /tests/cases/test-scan-range-size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-scan-range-size.c -------------------------------------------------------------------------------- /tests/cases/test-secluded-rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-secluded-rename.c -------------------------------------------------------------------------------- /tests/cases/test-set-create-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-set-create-time.c -------------------------------------------------------------------------------- /tests/cases/test-set-protection-class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-set-protection-class.c -------------------------------------------------------------------------------- /tests/cases/test-sparse-dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-sparse-dev.c -------------------------------------------------------------------------------- /tests/cases/test-symlinks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-symlinks.c -------------------------------------------------------------------------------- /tests/cases/test-throttled-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-throttled-io.c -------------------------------------------------------------------------------- /tests/cases/test-transcode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-transcode.m -------------------------------------------------------------------------------- /tests/cases/test-uncached-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-uncached-io.c -------------------------------------------------------------------------------- /tests/cases/test-unicode-file-names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test-unicode-file-names.c -------------------------------------------------------------------------------- /tests/cases/test_disklevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/cases/test_disklevel.c -------------------------------------------------------------------------------- /tests/disk-image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/disk-image.h -------------------------------------------------------------------------------- /tests/disk-image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/disk-image.m -------------------------------------------------------------------------------- /tests/gen-custom-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/gen-custom-dmg.sh -------------------------------------------------------------------------------- /tests/gen-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/gen-dmg.sh -------------------------------------------------------------------------------- /tests/gen-test-plist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/gen-test-plist.sh -------------------------------------------------------------------------------- /tests/generate-compressed-image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/generate-compressed-image.c -------------------------------------------------------------------------------- /tests/hfs-tests.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/hfs-tests.entitlements -------------------------------------------------------------------------------- /tests/hfs-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/hfs-tests.h -------------------------------------------------------------------------------- /tests/hfs-tests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/hfs-tests.mm -------------------------------------------------------------------------------- /tests/hfs-tests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/hfs-tests.xcconfig -------------------------------------------------------------------------------- /tests/hfs_alloc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/hfs_alloc_test.c -------------------------------------------------------------------------------- /tests/hfs_extents_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/hfs_extents_test.c -------------------------------------------------------------------------------- /tests/hfs_extents_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/hfs_extents_test.h -------------------------------------------------------------------------------- /tests/img-to-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/img-to-c.c -------------------------------------------------------------------------------- /tests/rangelist_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/rangelist_test.c -------------------------------------------------------------------------------- /tests/systemx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/systemx.c -------------------------------------------------------------------------------- /tests/systemx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/systemx.h -------------------------------------------------------------------------------- /tests/test-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/hfs/HEAD/tests/test-utils.h --------------------------------------------------------------------------------