├── Files.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── jakejames.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── jakejames.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Files ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── 120-1.png │ │ ├── 120.png │ │ ├── 152.png │ │ ├── 167.png │ │ ├── 180.png │ │ ├── 29.png │ │ ├── 40.png │ │ ├── 58-1.png │ │ ├── 58.png │ │ ├── 76.png │ │ ├── 80-1.png │ │ ├── 80-2.png │ │ ├── 80.png │ │ ├── 87.png │ │ └── Contents.json │ ├── Contents.json │ ├── Document.imageset │ │ ├── Contents.json │ │ ├── DocumentBase-48.png │ │ ├── DocumentBase-48@2x.png │ │ └── DocumentBase-48@3x.png │ ├── Folder.imageset │ │ ├── Contents.json │ │ └── Folder-50.pdf │ └── Picture.imageset │ │ ├── Contents.json │ │ ├── Image48.png │ │ ├── Image48@2x.png │ │ └── Image48@3x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── FBColumnNavigationController.h ├── FBColumnNavigationController.m ├── FBColumnViewController.h ├── FBColumnViewController.m ├── FBCustomPreviewController.h ├── FBCustomPreviewController.m ├── FBFilesTableViewController.h ├── FBFilesTableViewController.m ├── FBQLPreviewController.h ├── FBQLPreviewController.m ├── Info.plist ├── arm64_state.h ├── async_wake.c ├── async_wake.h ├── early_kalloc.c ├── early_kalloc.h ├── find_port.c ├── find_port.h ├── kcall.c ├── kcall.h ├── kdbg.c ├── kdbg.h ├── kmem.c ├── kmem.h ├── kutils.c ├── kutils.h ├── libproc.h ├── main.m ├── net │ └── route.h ├── symbols.c ├── symbols.h ├── sys │ ├── kern_control.h │ └── proc_info.h └── the_fun_part │ ├── fun.h │ ├── fun.m │ ├── patchfinder64.c │ └── patchfinder64.h ├── FilesDocumentProvider ├── Base.lproj │ └── MainInterface.storyboard ├── DocumentPickerViewController.h ├── DocumentPickerViewController.m ├── FilesDocumentProvider.entitlements └── Info.plist ├── FilesDocumentProviderFileProvider ├── FileProvider.h ├── FileProvider.m ├── FilesDocumentProviderFileProvider.entitlements └── Info.plist └── README.md /Files.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Files.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Files.xcodeproj/project.xcworkspace/xcuserdata/jakejames.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files.xcodeproj/project.xcworkspace/xcuserdata/jakejames.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Files.xcodeproj/xcuserdata/jakejames.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files.xcodeproj/xcuserdata/jakejames.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Files/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/AppDelegate.h -------------------------------------------------------------------------------- /Files/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/AppDelegate.m -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/58-1.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/80-1.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/80-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/80-2.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Files/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Files/Assets.xcassets/Document.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Document.imageset/Contents.json -------------------------------------------------------------------------------- /Files/Assets.xcassets/Document.imageset/DocumentBase-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Document.imageset/DocumentBase-48.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/Document.imageset/DocumentBase-48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Document.imageset/DocumentBase-48@2x.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/Document.imageset/DocumentBase-48@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Document.imageset/DocumentBase-48@3x.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/Folder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Folder.imageset/Contents.json -------------------------------------------------------------------------------- /Files/Assets.xcassets/Folder.imageset/Folder-50.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Folder.imageset/Folder-50.pdf -------------------------------------------------------------------------------- /Files/Assets.xcassets/Picture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Picture.imageset/Contents.json -------------------------------------------------------------------------------- /Files/Assets.xcassets/Picture.imageset/Image48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Picture.imageset/Image48.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/Picture.imageset/Image48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Picture.imageset/Image48@2x.png -------------------------------------------------------------------------------- /Files/Assets.xcassets/Picture.imageset/Image48@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Assets.xcassets/Picture.imageset/Image48@3x.png -------------------------------------------------------------------------------- /Files/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Files/FBColumnNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/FBColumnNavigationController.h -------------------------------------------------------------------------------- /Files/FBColumnNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/FBColumnNavigationController.m -------------------------------------------------------------------------------- /Files/FBColumnViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/FBColumnViewController.h -------------------------------------------------------------------------------- /Files/FBColumnViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/FBColumnViewController.m -------------------------------------------------------------------------------- /Files/FBCustomPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/FBCustomPreviewController.h -------------------------------------------------------------------------------- /Files/FBCustomPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/FBCustomPreviewController.m -------------------------------------------------------------------------------- /Files/FBFilesTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/FBFilesTableViewController.h -------------------------------------------------------------------------------- /Files/FBFilesTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/FBFilesTableViewController.m -------------------------------------------------------------------------------- /Files/FBQLPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/FBQLPreviewController.h -------------------------------------------------------------------------------- /Files/FBQLPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/FBQLPreviewController.m -------------------------------------------------------------------------------- /Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/Info.plist -------------------------------------------------------------------------------- /Files/arm64_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/arm64_state.h -------------------------------------------------------------------------------- /Files/async_wake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/async_wake.c -------------------------------------------------------------------------------- /Files/async_wake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/async_wake.h -------------------------------------------------------------------------------- /Files/early_kalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/early_kalloc.c -------------------------------------------------------------------------------- /Files/early_kalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/early_kalloc.h -------------------------------------------------------------------------------- /Files/find_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/find_port.c -------------------------------------------------------------------------------- /Files/find_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/find_port.h -------------------------------------------------------------------------------- /Files/kcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/kcall.c -------------------------------------------------------------------------------- /Files/kcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/kcall.h -------------------------------------------------------------------------------- /Files/kdbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/kdbg.c -------------------------------------------------------------------------------- /Files/kdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/kdbg.h -------------------------------------------------------------------------------- /Files/kmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/kmem.c -------------------------------------------------------------------------------- /Files/kmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/kmem.h -------------------------------------------------------------------------------- /Files/kutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/kutils.c -------------------------------------------------------------------------------- /Files/kutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/kutils.h -------------------------------------------------------------------------------- /Files/libproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/libproc.h -------------------------------------------------------------------------------- /Files/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/main.m -------------------------------------------------------------------------------- /Files/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/net/route.h -------------------------------------------------------------------------------- /Files/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/symbols.c -------------------------------------------------------------------------------- /Files/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/symbols.h -------------------------------------------------------------------------------- /Files/sys/kern_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/sys/kern_control.h -------------------------------------------------------------------------------- /Files/sys/proc_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/sys/proc_info.h -------------------------------------------------------------------------------- /Files/the_fun_part/fun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/the_fun_part/fun.h -------------------------------------------------------------------------------- /Files/the_fun_part/fun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/the_fun_part/fun.m -------------------------------------------------------------------------------- /Files/the_fun_part/patchfinder64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/the_fun_part/patchfinder64.c -------------------------------------------------------------------------------- /Files/the_fun_part/patchfinder64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/Files/the_fun_part/patchfinder64.h -------------------------------------------------------------------------------- /FilesDocumentProvider/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/FilesDocumentProvider/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /FilesDocumentProvider/DocumentPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/FilesDocumentProvider/DocumentPickerViewController.h -------------------------------------------------------------------------------- /FilesDocumentProvider/DocumentPickerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/FilesDocumentProvider/DocumentPickerViewController.m -------------------------------------------------------------------------------- /FilesDocumentProvider/FilesDocumentProvider.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/FilesDocumentProvider/FilesDocumentProvider.entitlements -------------------------------------------------------------------------------- /FilesDocumentProvider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/FilesDocumentProvider/Info.plist -------------------------------------------------------------------------------- /FilesDocumentProviderFileProvider/FileProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/FilesDocumentProviderFileProvider/FileProvider.h -------------------------------------------------------------------------------- /FilesDocumentProviderFileProvider/FileProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/FilesDocumentProviderFileProvider/FileProvider.m -------------------------------------------------------------------------------- /FilesDocumentProviderFileProvider/FilesDocumentProviderFileProvider.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/FilesDocumentProviderFileProvider/FilesDocumentProviderFileProvider.entitlements -------------------------------------------------------------------------------- /FilesDocumentProviderFileProvider/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/FilesDocumentProviderFileProvider/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakeajames/files-ios/HEAD/README.md --------------------------------------------------------------------------------