├── Dependencies ├── PLBlockIMP │ ├── Mac OS X Runtime │ │ └── PLBlockIMP.framework │ │ │ ├── Headers │ │ │ ├── PLBlockIMP │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── PLBlockIMP.h │ │ │ │ ├── blockimp.h │ │ │ │ └── trampoline_table.h │ │ │ ├── PLBlockIMP │ │ │ └── Resources │ │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ └── gentramp.sh │ │ │ └── Current │ └── iPhone Runtime │ │ └── PLBlockIMP.framework │ │ ├── Headers │ │ ├── PLBlockIMP │ │ ├── Resources │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── PLBlockIMP.h │ │ │ ├── blockimp.h │ │ │ └── trampoline_table.h │ │ ├── PLBlockIMP │ │ └── Resources │ │ │ ├── Info.plist │ │ │ └── gentramp.sh │ │ └── Current └── README.txt ├── LICENSE ├── PLPatchMaster.xcodeproj └── project.pbxproj ├── PLPatchMaster ├── NSObject+PLPatchMaster.h ├── NSObject+PLPatchMaster.m ├── PLBlockLayout.h ├── PLPatchMaster-Info.plist ├── PLPatchMaster.h ├── PLPatchMaster.mm ├── PLPatchMasterImpl.hpp ├── PLPatchMasterImpl.mm ├── PMLog.h ├── SymbolBinder.cpp ├── SymbolBinder.hpp ├── SymbolName.hpp ├── blockimp_arm.tramp ├── blockimp_arm64.tramp ├── blockimp_arm_stret.tramp ├── blockimp_x86_32.tramp ├── blockimp_x86_32_stret.tramp ├── blockimp_x86_64.tramp └── blockimp_x86_64_stret.tramp ├── PLPatchMasterTests ├── PLPatchMasterTests-Info.plist ├── PLPatchMasterTests.m └── en.lproj │ └── InfoPlist.strings ├── README.md └── iOS Test Runner ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj ├── Main_iPad.storyboard └── Main_iPhone.storyboard ├── Images.xcassets ├── AppIcon.appiconset │ └── Contents.json └── LaunchImage.launchimage │ └── Contents.json ├── ViewController.h ├── ViewController.m ├── en.lproj └── InfoPlist.strings ├── iOS Test Runner-Info.plist ├── iOS Test Runner-Prefix.pch └── main.m /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/PLBlockIMP: -------------------------------------------------------------------------------- 1 | Versions/Current/PLBlockIMP -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Headers/PLBlockIMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Headers/PLBlockIMP.h -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Headers/blockimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Headers/blockimp.h -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Headers/trampoline_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Headers/trampoline_table.h -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/PLBlockIMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/PLBlockIMP -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Resources/gentramp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/A/Resources/gentramp.sh -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/Mac OS X Runtime/PLBlockIMP.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/PLBlockIMP: -------------------------------------------------------------------------------- 1 | Versions/Current/PLBlockIMP -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/Headers/PLBlockIMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/Headers/PLBlockIMP.h -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/Headers/blockimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/Headers/blockimp.h -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/Headers/trampoline_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/Headers/trampoline_table.h -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/PLBlockIMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/PLBlockIMP -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/Resources/gentramp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/A/Resources/gentramp.sh -------------------------------------------------------------------------------- /Dependencies/PLBlockIMP/iPhone Runtime/PLBlockIMP.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Dependencies/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/Dependencies/README.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/LICENSE -------------------------------------------------------------------------------- /PLPatchMaster.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PLPatchMaster/NSObject+PLPatchMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/NSObject+PLPatchMaster.h -------------------------------------------------------------------------------- /PLPatchMaster/NSObject+PLPatchMaster.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/NSObject+PLPatchMaster.m -------------------------------------------------------------------------------- /PLPatchMaster/PLBlockLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/PLBlockLayout.h -------------------------------------------------------------------------------- /PLPatchMaster/PLPatchMaster-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/PLPatchMaster-Info.plist -------------------------------------------------------------------------------- /PLPatchMaster/PLPatchMaster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/PLPatchMaster.h -------------------------------------------------------------------------------- /PLPatchMaster/PLPatchMaster.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/PLPatchMaster.mm -------------------------------------------------------------------------------- /PLPatchMaster/PLPatchMasterImpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/PLPatchMasterImpl.hpp -------------------------------------------------------------------------------- /PLPatchMaster/PLPatchMasterImpl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/PLPatchMasterImpl.mm -------------------------------------------------------------------------------- /PLPatchMaster/PMLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/PMLog.h -------------------------------------------------------------------------------- /PLPatchMaster/SymbolBinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/SymbolBinder.cpp -------------------------------------------------------------------------------- /PLPatchMaster/SymbolBinder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/SymbolBinder.hpp -------------------------------------------------------------------------------- /PLPatchMaster/SymbolName.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/SymbolName.hpp -------------------------------------------------------------------------------- /PLPatchMaster/blockimp_arm.tramp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/blockimp_arm.tramp -------------------------------------------------------------------------------- /PLPatchMaster/blockimp_arm64.tramp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/blockimp_arm64.tramp -------------------------------------------------------------------------------- /PLPatchMaster/blockimp_arm_stret.tramp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/blockimp_arm_stret.tramp -------------------------------------------------------------------------------- /PLPatchMaster/blockimp_x86_32.tramp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/blockimp_x86_32.tramp -------------------------------------------------------------------------------- /PLPatchMaster/blockimp_x86_32_stret.tramp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/blockimp_x86_32_stret.tramp -------------------------------------------------------------------------------- /PLPatchMaster/blockimp_x86_64.tramp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/blockimp_x86_64.tramp -------------------------------------------------------------------------------- /PLPatchMaster/blockimp_x86_64_stret.tramp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMaster/blockimp_x86_64_stret.tramp -------------------------------------------------------------------------------- /PLPatchMasterTests/PLPatchMasterTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMasterTests/PLPatchMasterTests-Info.plist -------------------------------------------------------------------------------- /PLPatchMasterTests/PLPatchMasterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/PLPatchMasterTests/PLPatchMasterTests.m -------------------------------------------------------------------------------- /PLPatchMasterTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/README.md -------------------------------------------------------------------------------- /iOS Test Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/AppDelegate.h -------------------------------------------------------------------------------- /iOS Test Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/AppDelegate.m -------------------------------------------------------------------------------- /iOS Test Runner/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /iOS Test Runner/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /iOS Test Runner/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS Test Runner/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /iOS Test Runner/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/ViewController.h -------------------------------------------------------------------------------- /iOS Test Runner/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/ViewController.m -------------------------------------------------------------------------------- /iOS Test Runner/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOS Test Runner/iOS Test Runner-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/iOS Test Runner-Info.plist -------------------------------------------------------------------------------- /iOS Test Runner/iOS Test Runner-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/iOS Test Runner-Prefix.pch -------------------------------------------------------------------------------- /iOS Test Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plausiblelabs/plpatchmaster/HEAD/iOS Test Runner/main.m --------------------------------------------------------------------------------