├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CrashReporter.xcodeproj ├── TemplateIcon.icns ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── benny.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcshareddata │ └── xcschemes │ ├── CrashReporter-MacOSX-Static.xcscheme │ ├── CrashReporter-MacOSX.xcscheme │ ├── CrashReporter-iOS-Device.xcscheme │ ├── CrashReporter-iOS-Simulator.xcscheme │ ├── CrashReporter-iOS.xcscheme │ ├── CrashReporter-tvOS-Device.xcscheme │ ├── CrashReporter-tvOS-Simulator.xcscheme │ ├── CrashReporter-tvOS.xcscheme │ ├── DemoCrash-iOS-Device.xcscheme │ ├── DemoCrash-tvOS-Device.xcscheme │ ├── DemoCrash.xcscheme │ ├── Disk Image.xcscheme │ ├── Documentation.xcscheme │ └── Tests.xcscheme ├── Documentation └── Crash Log Format │ ├── IEEEtrantools.sty │ └── PLCrashReportFormat.tex ├── Doxyfile ├── LICENSE ├── Other Sources └── SenTestCompat.h ├── Readme.md ├── Resources ├── CrashReporter.exp ├── Default-568h@2x.png ├── DemoCrash-Info.plist ├── DemoCrash-iOS-Info.plist ├── DemoCrash-tvOS-Info.plist ├── Info.plist ├── Tests-AppleTV-Info.plist ├── Tests-MacOSX-Info.plist ├── Tests-iPhone-Info.plist ├── Tests │ ├── PLCrashAsyncCompactUnwindEncodingTests │ │ ├── Makefile │ │ ├── test.c │ │ ├── test.ios │ │ ├── test.macosx │ │ └── test.sim │ └── PLCrashAsyncDwarfEncodingTests │ │ ├── Makefile │ │ ├── README.txt │ │ ├── build-regression-tests.sh │ │ ├── dwarf_encoding_test.h │ │ ├── regression-bins │ │ ├── tbin.unwind_test_x86_64_disable_compact_frame.s.1 │ │ ├── tbin.unwind_test_x86_64_frame.s.2 │ │ ├── tbin.unwind_test_x86_64_frame.s.3 │ │ ├── tbin.unwind_test_x86_64_frame.s.4 │ │ ├── tbin.unwind_test_x86_64_frame.s.5 │ │ ├── tbin.unwind_test_x86_64_frameless.s.6 │ │ ├── tbin.unwind_test_x86_64_frameless.s.7 │ │ ├── tbin.unwind_test_x86_64_frameless_big.s.8 │ │ ├── tbin.unwind_test_x86_64_frameless_big.s.9 │ │ ├── tbin.unwind_test_x86_64_unusual.s.10 │ │ ├── tbin.unwind_test_x86_64_unusual.s.11 │ │ ├── tbin.unwind_test_x86_disable_compact_frame.s.12 │ │ ├── tbin.unwind_test_x86_frame.s.13 │ │ ├── tbin.unwind_test_x86_frame.s.14 │ │ ├── tbin.unwind_test_x86_frame.s.15 │ │ ├── tbin.unwind_test_x86_frame.s.16 │ │ ├── tbin.unwind_test_x86_frameless.s.17 │ │ ├── tbin.unwind_test_x86_frameless.s.18 │ │ ├── tbin.unwind_test_x86_frameless_big.s.19 │ │ ├── tbin.unwind_test_x86_frameless_big.s.20 │ │ ├── tbin.unwind_test_x86_unusual.s.21 │ │ └── tbin.unwind_test_x86_unusual.s.22 │ │ ├── regression │ │ ├── unwind_test_main.c │ │ ├── unwind_test_x86.s │ │ ├── unwind_test_x86_64.s │ │ ├── unwind_test_x86_64_disable_compact_frame.s │ │ ├── unwind_test_x86_64_frame.s │ │ ├── unwind_test_x86_64_frameless.s │ │ ├── unwind_test_x86_64_frameless_big.s │ │ ├── unwind_test_x86_64_unusual.s │ │ ├── unwind_test_x86_disable_compact_frame.s │ │ ├── unwind_test_x86_frame.s │ │ ├── unwind_test_x86_frameless.s │ │ ├── unwind_test_x86_frameless_big.s │ │ └── unwind_test_x86_unusual.s │ │ ├── test.c │ │ ├── test.ios │ │ ├── test.macosx │ │ └── test.sim ├── crash_report.proto ├── crash_report_v2.proto └── fuzz_report.plcrash ├── Source ├── Crash Demo │ └── main.m ├── CrashReporter.h ├── CrashReporter.m ├── Fuzz │ └── fuzz-main.m ├── Libunwind Regression Tests │ ├── README.txt │ ├── unwind_test_arm.S │ ├── unwind_test_arm64.S │ ├── unwind_test_arm64_frame.S │ ├── unwind_test_arm64_frameless.S │ ├── unwind_test_harness.c │ ├── unwind_test_harness.h │ ├── unwind_test_x86.S │ ├── unwind_test_x86_64.S │ ├── unwind_test_x86_64_disable_compact_frame.S │ ├── unwind_test_x86_64_frame.S │ ├── unwind_test_x86_64_frameless.S │ ├── unwind_test_x86_64_frameless_big.S │ ├── unwind_test_x86_64_unusual.S │ ├── unwind_test_x86_disable_compact_frame.S │ ├── unwind_test_x86_frame.S │ ├── unwind_test_x86_frameless.S │ ├── unwind_test_x86_frameless_big.S │ └── unwind_test_x86_unusual.S ├── PLCrashAsync.c ├── PLCrashAsync.h ├── PLCrashAsyncCompactUnwindEncoding.c ├── PLCrashAsyncCompactUnwindEncoding.h ├── PLCrashAsyncCompactUnwindEncodingTests.m ├── PLCrashAsyncDwarfCFAState.cpp ├── PLCrashAsyncDwarfCFAState.hpp ├── PLCrashAsyncDwarfCFAStateEvaluation.cpp ├── PLCrashAsyncDwarfCFAStateEvaluationTests.mm ├── PLCrashAsyncDwarfCFAStateTests.mm ├── PLCrashAsyncDwarfCIE.cpp ├── PLCrashAsyncDwarfCIE.hpp ├── PLCrashAsyncDwarfCIETests.mm ├── PLCrashAsyncDwarfEncoding.cpp ├── PLCrashAsyncDwarfEncoding.hpp ├── PLCrashAsyncDwarfEncodingTests.mm ├── PLCrashAsyncDwarfExpression.cpp ├── PLCrashAsyncDwarfExpression.hpp ├── PLCrashAsyncDwarfExpressionTests.mm ├── PLCrashAsyncDwarfFDE.cpp ├── PLCrashAsyncDwarfFDE.hpp ├── PLCrashAsyncDwarfFDETests.mm ├── PLCrashAsyncDwarfPrimitives.cpp ├── PLCrashAsyncDwarfPrimitives.hpp ├── PLCrashAsyncDwarfPrimitivesTests.mm ├── PLCrashAsyncImageList.cpp ├── PLCrashAsyncImageList.h ├── PLCrashAsyncImageListTests.m ├── PLCrashAsyncLinkedList.cpp ├── PLCrashAsyncLinkedList.hpp ├── PLCrashAsyncLinkedListTests.mm ├── PLCrashAsyncMObject.c ├── PLCrashAsyncMObject.h ├── PLCrashAsyncMObjectTests.m ├── PLCrashAsyncMachExceptionInfo.c ├── PLCrashAsyncMachExceptionInfo.h ├── PLCrashAsyncMachExceptionInfoTests.m ├── PLCrashAsyncMachOImage.c ├── PLCrashAsyncMachOImage.h ├── PLCrashAsyncMachOImageTests.m ├── PLCrashAsyncMachOString.c ├── PLCrashAsyncMachOString.h ├── PLCrashAsyncMachOStringTests.m ├── PLCrashAsyncObjCSection.h ├── PLCrashAsyncObjCSection.mm ├── PLCrashAsyncObjCSectionTests.m ├── PLCrashAsyncSignalInfo.c ├── PLCrashAsyncSignalInfo.h ├── PLCrashAsyncSignalInfoTests.m ├── PLCrashAsyncSymbolication.c ├── PLCrashAsyncSymbolication.h ├── PLCrashAsyncSymbolicationTests.m ├── PLCrashAsyncTests.m ├── PLCrashAsyncThread.c ├── PLCrashAsyncThread.h ├── PLCrashAsyncThreadTests.m ├── PLCrashAsyncThread_arm.c ├── PLCrashAsyncThread_arm.h ├── PLCrashAsyncThread_current.S ├── PLCrashAsyncThread_current.c ├── PLCrashAsyncThread_current_defs.h ├── PLCrashAsyncThread_x86.c ├── PLCrashAsyncThread_x86.h ├── PLCrashCompatConstants.h ├── PLCrashFeatureConfig.h ├── PLCrashFrameCompactUnwind.c ├── PLCrashFrameCompactUnwind.h ├── PLCrashFrameCompactUnwindTests.m ├── PLCrashFrameDWARFUnwind.cpp ├── PLCrashFrameDWARFUnwind.h ├── PLCrashFrameDWARFUnwindTests.m ├── PLCrashFrameStackUnwind.c ├── PLCrashFrameStackUnwind.h ├── PLCrashFrameStackUnwindTests.m ├── PLCrashFrameWalker.c ├── PLCrashFrameWalker.h ├── PLCrashFrameWalkerTests.m ├── PLCrashHostInfo.h ├── PLCrashHostInfo.m ├── PLCrashHostInfoTests.m ├── PLCrashLogWriter.h ├── PLCrashLogWriter.m ├── PLCrashLogWriterEncoding.c ├── PLCrashLogWriterEncoding.h ├── PLCrashLogWriterEncodingTests.m ├── PLCrashLogWriterEncodingTests.proto ├── PLCrashLogWriterTests.m ├── PLCrashMachExceptionPort.h ├── PLCrashMachExceptionPort.m ├── PLCrashMachExceptionPortSet.h ├── PLCrashMachExceptionPortSet.m ├── PLCrashMachExceptionPortSetTests.m ├── PLCrashMachExceptionPortTests.m ├── PLCrashMachExceptionServer.h ├── PLCrashMachExceptionServer.m ├── PLCrashMachExceptionServerTests.m ├── PLCrashMacros.h ├── PLCrashNamespace.h ├── PLCrashProcessInfo.h ├── PLCrashProcessInfo.m ├── PLCrashProcessInfoTests.m ├── PLCrashReport.h ├── PLCrashReport.m ├── PLCrashReportApplicationInfo.h ├── PLCrashReportApplicationInfo.m ├── PLCrashReportBinaryImageInfo.h ├── PLCrashReportBinaryImageInfo.m ├── PLCrashReportExceptionInfo.h ├── PLCrashReportExceptionInfo.m ├── PLCrashReportFormatter.h ├── PLCrashReportMachExceptionInfo.h ├── PLCrashReportMachExceptionInfo.m ├── PLCrashReportMachineInfo.h ├── PLCrashReportMachineInfo.m ├── PLCrashReportProcessInfo.h ├── PLCrashReportProcessInfo.m ├── PLCrashReportProcessorInfo.h ├── PLCrashReportProcessorInfo.m ├── PLCrashReportRegisterInfo.h ├── PLCrashReportRegisterInfo.m ├── PLCrashReportSignalInfo.h ├── PLCrashReportSignalInfo.m ├── PLCrashReportStackFrameInfo.h ├── PLCrashReportStackFrameInfo.m ├── PLCrashReportSymbolInfo.h ├── PLCrashReportSymbolInfo.m ├── PLCrashReportSystemInfo.h ├── PLCrashReportSystemInfo.m ├── PLCrashReportTests.m ├── PLCrashReportTextFormatter.h ├── PLCrashReportTextFormatter.m ├── PLCrashReportThreadInfo.h ├── PLCrashReportThreadInfo.m ├── PLCrashReporter.h ├── PLCrashReporter.m ├── PLCrashReporterConfig.h ├── PLCrashReporterConfig.m ├── PLCrashReporterNSError.h ├── PLCrashReporterNSError.m ├── PLCrashReporterNSErrorTests.m ├── PLCrashReporterTests.m ├── PLCrashSignalHandler.h ├── PLCrashSignalHandler.mm ├── PLCrashSignalHandlerTests.m ├── PLCrashSysctl.c ├── PLCrashSysctl.h ├── PLCrashSysctlTests.m ├── PLCrashTestCase.h ├── PLCrashTestCase.m ├── PLCrashTestThread.h ├── PLCrashTestThread.m ├── PLCrashTestThreadTests.m ├── PLCrashUncaughtExceptionHandler.h ├── PLCrashUncaughtExceptionHandler.m ├── PLCrashUncaughtExceptionHandlerTests.m ├── dwarf_opstream.cpp ├── dwarf_opstream.hpp ├── dwarf_opstream_tests.mm ├── dwarf_private.h ├── dwarf_stack.cpp ├── dwarf_stack.hpp ├── dwarf_stack_tests.mm └── plcrashutil │ └── main.m ├── ThirdPartyNotices.txt └── contrib ├── README └── php-crashreporter-demo ├── Classes ├── CrashReporterDemoAppDelegate.h ├── CrashReporterDemoAppDelegate.m ├── CrashReporterDemoViewController.h ├── CrashReporterDemoViewController.m ├── HudView.h ├── HudView.m ├── StartupViewController.h └── StartupViewController.m ├── CrashReporterDemo.xcodeproj └── project.pbxproj ├── CrashReporterDemoViewController.xib ├── CrashReporterDemo_Prefix.pch ├── English.lproj └── Localizable.strings ├── French.lproj └── Localizable.strings ├── German.lproj └── Localizable.strings ├── Info.plist ├── MainWindow.xib ├── README.txt ├── Settings.bundle ├── Root.plist ├── bugdata.plist ├── de.lproj │ ├── Root.strings │ └── bugdata.strings ├── en.lproj │ ├── Root.strings │ └── bugdata.strings ├── es.lproj │ ├── Root.strings │ └── bugdata.strings ├── fi.lproj │ ├── Root.strings │ └── bugdata.strings ├── fr.lproj │ ├── Root.strings │ └── bugdata.strings ├── pt.lproj │ ├── Root.strings │ └── bugdata.strings └── ru.lproj │ ├── Root.strings │ └── bugdata.strings ├── crash.php ├── crash_update.php ├── database.txt ├── es.lproj └── Localizable.strings ├── fi.lproj └── Localizable.strings ├── main.m ├── pt.lproj └── Localizable.strings └── ru.lproj └── Localizable.strings /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/TemplateIcon.icns -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/project.xcworkspace/xcuserdata/benny.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/project.xcworkspace/xcuserdata/benny.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-MacOSX-Static.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-MacOSX-Static.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-MacOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-MacOSX.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-iOS-Device.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-iOS-Device.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-iOS-Simulator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-iOS-Simulator.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-iOS.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-tvOS-Device.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-tvOS-Device.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-tvOS-Simulator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-tvOS-Simulator.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/CrashReporter-tvOS.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/DemoCrash-iOS-Device.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/DemoCrash-iOS-Device.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/DemoCrash-tvOS-Device.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/DemoCrash-tvOS-Device.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/DemoCrash.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/DemoCrash.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/Disk Image.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/Disk Image.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/Documentation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/Documentation.xcscheme -------------------------------------------------------------------------------- /CrashReporter.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/CrashReporter.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme -------------------------------------------------------------------------------- /Documentation/Crash Log Format/IEEEtrantools.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Documentation/Crash Log Format/IEEEtrantools.sty -------------------------------------------------------------------------------- /Documentation/Crash Log Format/PLCrashReportFormat.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Documentation/Crash Log Format/PLCrashReportFormat.tex -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/LICENSE -------------------------------------------------------------------------------- /Other Sources/SenTestCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Other Sources/SenTestCompat.h -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Readme.md -------------------------------------------------------------------------------- /Resources/CrashReporter.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/CrashReporter.exp -------------------------------------------------------------------------------- /Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Resources/DemoCrash-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/DemoCrash-Info.plist -------------------------------------------------------------------------------- /Resources/DemoCrash-iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/DemoCrash-iOS-Info.plist -------------------------------------------------------------------------------- /Resources/DemoCrash-tvOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/DemoCrash-tvOS-Info.plist -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Resources/Tests-AppleTV-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests-AppleTV-Info.plist -------------------------------------------------------------------------------- /Resources/Tests-MacOSX-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests-MacOSX-Info.plist -------------------------------------------------------------------------------- /Resources/Tests-iPhone-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests-iPhone-Info.plist -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncCompactUnwindEncodingTests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncCompactUnwindEncodingTests/Makefile -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncCompactUnwindEncodingTests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncCompactUnwindEncodingTests/test.c -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncCompactUnwindEncodingTests/test.ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncCompactUnwindEncodingTests/test.ios -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncCompactUnwindEncodingTests/test.macosx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncCompactUnwindEncodingTests/test.macosx -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncCompactUnwindEncodingTests/test.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncCompactUnwindEncodingTests/test.sim -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/Makefile -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/README.txt -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/build-regression-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/build-regression-tests.sh -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/dwarf_encoding_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/dwarf_encoding_test.h -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_disable_compact_frame.s.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_disable_compact_frame.s.1 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frame.s.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frame.s.2 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frame.s.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frame.s.3 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frame.s.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frame.s.4 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frame.s.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frame.s.5 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frameless.s.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frameless.s.6 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frameless.s.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frameless.s.7 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frameless_big.s.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frameless_big.s.8 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frameless_big.s.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_frameless_big.s.9 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_unusual.s.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_unusual.s.10 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_unusual.s.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_64_unusual.s.11 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_disable_compact_frame.s.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_disable_compact_frame.s.12 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frame.s.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frame.s.13 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frame.s.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frame.s.14 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frame.s.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frame.s.15 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frame.s.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frame.s.16 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frameless.s.17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frameless.s.17 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frameless.s.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frameless.s.18 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frameless_big.s.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frameless_big.s.19 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frameless_big.s.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_frameless_big.s.20 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_unusual.s.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_unusual.s.21 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_unusual.s.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression-bins/tbin.unwind_test_x86_unusual.s.22 -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_main.c -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64_disable_compact_frame.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64_disable_compact_frame.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64_frame.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64_frame.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64_frameless.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64_frameless.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64_frameless_big.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64_frameless_big.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64_unusual.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_64_unusual.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_disable_compact_frame.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_disable_compact_frame.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_frame.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_frame.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_frameless.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_frameless.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_frameless_big.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_frameless_big.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_unusual.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/regression/unwind_test_x86_unusual.s -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/test.c -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/test.ios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/test.ios -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/test.macosx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/test.macosx -------------------------------------------------------------------------------- /Resources/Tests/PLCrashAsyncDwarfEncodingTests/test.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/Tests/PLCrashAsyncDwarfEncodingTests/test.sim -------------------------------------------------------------------------------- /Resources/crash_report.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/crash_report.proto -------------------------------------------------------------------------------- /Resources/crash_report_v2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/crash_report_v2.proto -------------------------------------------------------------------------------- /Resources/fuzz_report.plcrash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Resources/fuzz_report.plcrash -------------------------------------------------------------------------------- /Source/Crash Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Crash Demo/main.m -------------------------------------------------------------------------------- /Source/CrashReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/CrashReporter.h -------------------------------------------------------------------------------- /Source/CrashReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/CrashReporter.m -------------------------------------------------------------------------------- /Source/Fuzz/fuzz-main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Fuzz/fuzz-main.m -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/README.txt -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_arm.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_arm64.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_arm64_frame.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_arm64_frame.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_arm64_frameless.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_arm64_frameless.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_harness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_harness.c -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_harness.h -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_64.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_64_disable_compact_frame.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_64_disable_compact_frame.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_64_frame.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_64_frame.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_64_frameless.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_64_frameless.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_64_frameless_big.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_64_frameless_big.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_64_unusual.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_64_unusual.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_disable_compact_frame.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_disable_compact_frame.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_frame.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_frame.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_frameless.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_frameless.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_frameless_big.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_frameless_big.S -------------------------------------------------------------------------------- /Source/Libunwind Regression Tests/unwind_test_x86_unusual.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/Libunwind Regression Tests/unwind_test_x86_unusual.S -------------------------------------------------------------------------------- /Source/PLCrashAsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsync.c -------------------------------------------------------------------------------- /Source/PLCrashAsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsync.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncCompactUnwindEncoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncCompactUnwindEncoding.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncCompactUnwindEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncCompactUnwindEncoding.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncCompactUnwindEncodingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncCompactUnwindEncodingTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfCFAState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfCFAState.cpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfCFAState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfCFAState.hpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfCFAStateEvaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfCFAStateEvaluation.cpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfCFAStateEvaluationTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfCFAStateEvaluationTests.mm -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfCFAStateTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfCFAStateTests.mm -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfCIE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfCIE.cpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfCIE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfCIE.hpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfCIETests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfCIETests.mm -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfEncoding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfEncoding.cpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfEncoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfEncoding.hpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfEncodingTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfEncodingTests.mm -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfExpression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfExpression.cpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfExpression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfExpression.hpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfExpressionTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfExpressionTests.mm -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfFDE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfFDE.cpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfFDE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfFDE.hpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfFDETests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfFDETests.mm -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfPrimitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfPrimitives.cpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfPrimitives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfPrimitives.hpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncDwarfPrimitivesTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncDwarfPrimitivesTests.mm -------------------------------------------------------------------------------- /Source/PLCrashAsyncImageList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncImageList.cpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncImageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncImageList.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncImageListTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncImageListTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncLinkedList.cpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncLinkedList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncLinkedList.hpp -------------------------------------------------------------------------------- /Source/PLCrashAsyncLinkedListTests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncLinkedListTests.mm -------------------------------------------------------------------------------- /Source/PLCrashAsyncMObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMObject.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMObject.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncMObjectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMObjectTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncMachExceptionInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMachExceptionInfo.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncMachExceptionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMachExceptionInfo.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncMachExceptionInfoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMachExceptionInfoTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncMachOImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMachOImage.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncMachOImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMachOImage.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncMachOImageTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMachOImageTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncMachOString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMachOString.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncMachOString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMachOString.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncMachOStringTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncMachOStringTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncObjCSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncObjCSection.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncObjCSection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncObjCSection.mm -------------------------------------------------------------------------------- /Source/PLCrashAsyncObjCSectionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncObjCSectionTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncSignalInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncSignalInfo.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncSignalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncSignalInfo.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncSignalInfoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncSignalInfoTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncSymbolication.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncSymbolication.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncSymbolication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncSymbolication.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncSymbolicationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncSymbolicationTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncThread.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncThread.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncThreadTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncThreadTests.m -------------------------------------------------------------------------------- /Source/PLCrashAsyncThread_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncThread_arm.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncThread_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncThread_arm.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncThread_current.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncThread_current.S -------------------------------------------------------------------------------- /Source/PLCrashAsyncThread_current.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncThread_current.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncThread_current_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncThread_current_defs.h -------------------------------------------------------------------------------- /Source/PLCrashAsyncThread_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncThread_x86.c -------------------------------------------------------------------------------- /Source/PLCrashAsyncThread_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashAsyncThread_x86.h -------------------------------------------------------------------------------- /Source/PLCrashCompatConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashCompatConstants.h -------------------------------------------------------------------------------- /Source/PLCrashFeatureConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFeatureConfig.h -------------------------------------------------------------------------------- /Source/PLCrashFrameCompactUnwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameCompactUnwind.c -------------------------------------------------------------------------------- /Source/PLCrashFrameCompactUnwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameCompactUnwind.h -------------------------------------------------------------------------------- /Source/PLCrashFrameCompactUnwindTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameCompactUnwindTests.m -------------------------------------------------------------------------------- /Source/PLCrashFrameDWARFUnwind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameDWARFUnwind.cpp -------------------------------------------------------------------------------- /Source/PLCrashFrameDWARFUnwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameDWARFUnwind.h -------------------------------------------------------------------------------- /Source/PLCrashFrameDWARFUnwindTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameDWARFUnwindTests.m -------------------------------------------------------------------------------- /Source/PLCrashFrameStackUnwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameStackUnwind.c -------------------------------------------------------------------------------- /Source/PLCrashFrameStackUnwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameStackUnwind.h -------------------------------------------------------------------------------- /Source/PLCrashFrameStackUnwindTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameStackUnwindTests.m -------------------------------------------------------------------------------- /Source/PLCrashFrameWalker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameWalker.c -------------------------------------------------------------------------------- /Source/PLCrashFrameWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameWalker.h -------------------------------------------------------------------------------- /Source/PLCrashFrameWalkerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashFrameWalkerTests.m -------------------------------------------------------------------------------- /Source/PLCrashHostInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashHostInfo.h -------------------------------------------------------------------------------- /Source/PLCrashHostInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashHostInfo.m -------------------------------------------------------------------------------- /Source/PLCrashHostInfoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashHostInfoTests.m -------------------------------------------------------------------------------- /Source/PLCrashLogWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashLogWriter.h -------------------------------------------------------------------------------- /Source/PLCrashLogWriter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashLogWriter.m -------------------------------------------------------------------------------- /Source/PLCrashLogWriterEncoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashLogWriterEncoding.c -------------------------------------------------------------------------------- /Source/PLCrashLogWriterEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashLogWriterEncoding.h -------------------------------------------------------------------------------- /Source/PLCrashLogWriterEncodingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashLogWriterEncodingTests.m -------------------------------------------------------------------------------- /Source/PLCrashLogWriterEncodingTests.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashLogWriterEncodingTests.proto -------------------------------------------------------------------------------- /Source/PLCrashLogWriterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashLogWriterTests.m -------------------------------------------------------------------------------- /Source/PLCrashMachExceptionPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashMachExceptionPort.h -------------------------------------------------------------------------------- /Source/PLCrashMachExceptionPort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashMachExceptionPort.m -------------------------------------------------------------------------------- /Source/PLCrashMachExceptionPortSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashMachExceptionPortSet.h -------------------------------------------------------------------------------- /Source/PLCrashMachExceptionPortSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashMachExceptionPortSet.m -------------------------------------------------------------------------------- /Source/PLCrashMachExceptionPortSetTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashMachExceptionPortSetTests.m -------------------------------------------------------------------------------- /Source/PLCrashMachExceptionPortTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashMachExceptionPortTests.m -------------------------------------------------------------------------------- /Source/PLCrashMachExceptionServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashMachExceptionServer.h -------------------------------------------------------------------------------- /Source/PLCrashMachExceptionServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashMachExceptionServer.m -------------------------------------------------------------------------------- /Source/PLCrashMachExceptionServerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashMachExceptionServerTests.m -------------------------------------------------------------------------------- /Source/PLCrashMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashMacros.h -------------------------------------------------------------------------------- /Source/PLCrashNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashNamespace.h -------------------------------------------------------------------------------- /Source/PLCrashProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashProcessInfo.h -------------------------------------------------------------------------------- /Source/PLCrashProcessInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashProcessInfo.m -------------------------------------------------------------------------------- /Source/PLCrashProcessInfoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashProcessInfoTests.m -------------------------------------------------------------------------------- /Source/PLCrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReport.h -------------------------------------------------------------------------------- /Source/PLCrashReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReport.m -------------------------------------------------------------------------------- /Source/PLCrashReportApplicationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportApplicationInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportApplicationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportApplicationInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportBinaryImageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportBinaryImageInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportBinaryImageInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportBinaryImageInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportExceptionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportExceptionInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportExceptionInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportExceptionInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportFormatter.h -------------------------------------------------------------------------------- /Source/PLCrashReportMachExceptionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportMachExceptionInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportMachExceptionInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportMachExceptionInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportMachineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportMachineInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportMachineInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportMachineInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportProcessInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportProcessInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportProcessInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportProcessorInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportProcessorInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportProcessorInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportProcessorInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportRegisterInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportRegisterInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportRegisterInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportRegisterInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportSignalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportSignalInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportSignalInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportSignalInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportStackFrameInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportStackFrameInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportStackFrameInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportStackFrameInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportSymbolInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportSymbolInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportSymbolInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportSymbolInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportSystemInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportSystemInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportSystemInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReportTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportTests.m -------------------------------------------------------------------------------- /Source/PLCrashReportTextFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportTextFormatter.h -------------------------------------------------------------------------------- /Source/PLCrashReportTextFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportTextFormatter.m -------------------------------------------------------------------------------- /Source/PLCrashReportThreadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportThreadInfo.h -------------------------------------------------------------------------------- /Source/PLCrashReportThreadInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReportThreadInfo.m -------------------------------------------------------------------------------- /Source/PLCrashReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReporter.h -------------------------------------------------------------------------------- /Source/PLCrashReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReporter.m -------------------------------------------------------------------------------- /Source/PLCrashReporterConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReporterConfig.h -------------------------------------------------------------------------------- /Source/PLCrashReporterConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReporterConfig.m -------------------------------------------------------------------------------- /Source/PLCrashReporterNSError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReporterNSError.h -------------------------------------------------------------------------------- /Source/PLCrashReporterNSError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReporterNSError.m -------------------------------------------------------------------------------- /Source/PLCrashReporterNSErrorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReporterNSErrorTests.m -------------------------------------------------------------------------------- /Source/PLCrashReporterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashReporterTests.m -------------------------------------------------------------------------------- /Source/PLCrashSignalHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashSignalHandler.h -------------------------------------------------------------------------------- /Source/PLCrashSignalHandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashSignalHandler.mm -------------------------------------------------------------------------------- /Source/PLCrashSignalHandlerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashSignalHandlerTests.m -------------------------------------------------------------------------------- /Source/PLCrashSysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashSysctl.c -------------------------------------------------------------------------------- /Source/PLCrashSysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashSysctl.h -------------------------------------------------------------------------------- /Source/PLCrashSysctlTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashSysctlTests.m -------------------------------------------------------------------------------- /Source/PLCrashTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashTestCase.h -------------------------------------------------------------------------------- /Source/PLCrashTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashTestCase.m -------------------------------------------------------------------------------- /Source/PLCrashTestThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashTestThread.h -------------------------------------------------------------------------------- /Source/PLCrashTestThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashTestThread.m -------------------------------------------------------------------------------- /Source/PLCrashTestThreadTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashTestThreadTests.m -------------------------------------------------------------------------------- /Source/PLCrashUncaughtExceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashUncaughtExceptionHandler.h -------------------------------------------------------------------------------- /Source/PLCrashUncaughtExceptionHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashUncaughtExceptionHandler.m -------------------------------------------------------------------------------- /Source/PLCrashUncaughtExceptionHandlerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/PLCrashUncaughtExceptionHandlerTests.m -------------------------------------------------------------------------------- /Source/dwarf_opstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/dwarf_opstream.cpp -------------------------------------------------------------------------------- /Source/dwarf_opstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/dwarf_opstream.hpp -------------------------------------------------------------------------------- /Source/dwarf_opstream_tests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/dwarf_opstream_tests.mm -------------------------------------------------------------------------------- /Source/dwarf_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/dwarf_private.h -------------------------------------------------------------------------------- /Source/dwarf_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/dwarf_stack.cpp -------------------------------------------------------------------------------- /Source/dwarf_stack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/dwarf_stack.hpp -------------------------------------------------------------------------------- /Source/dwarf_stack_tests.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/dwarf_stack_tests.mm -------------------------------------------------------------------------------- /Source/plcrashutil/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/Source/plcrashutil/main.m -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/README -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Classes/CrashReporterDemoAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Classes/CrashReporterDemoAppDelegate.h -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Classes/CrashReporterDemoAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Classes/CrashReporterDemoAppDelegate.m -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Classes/CrashReporterDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Classes/CrashReporterDemoViewController.h -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Classes/CrashReporterDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Classes/CrashReporterDemoViewController.m -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Classes/HudView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Classes/HudView.h -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Classes/HudView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Classes/HudView.m -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Classes/StartupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Classes/StartupViewController.h -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Classes/StartupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Classes/StartupViewController.m -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/CrashReporterDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/CrashReporterDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/CrashReporterDemoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/CrashReporterDemoViewController.xib -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/CrashReporterDemo_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/CrashReporterDemo_Prefix.pch -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/French.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/French.lproj/Localizable.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/German.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/German.lproj/Localizable.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Info.plist -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/MainWindow.xib -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/README.txt -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/bugdata.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/bugdata.plist -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/de.lproj/Root.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/de.lproj/bugdata.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/de.lproj/bugdata.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/en.lproj/bugdata.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/en.lproj/bugdata.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/es.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/es.lproj/Root.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/es.lproj/bugdata.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/es.lproj/bugdata.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/fi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/fi.lproj/Root.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/fi.lproj/bugdata.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/fi.lproj/bugdata.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/fr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/fr.lproj/Root.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/fr.lproj/bugdata.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/fr.lproj/bugdata.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/pt.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/pt.lproj/Root.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/pt.lproj/bugdata.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/pt.lproj/bugdata.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/ru.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/ru.lproj/Root.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/Settings.bundle/ru.lproj/bugdata.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/Settings.bundle/ru.lproj/bugdata.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/crash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/crash.php -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/crash_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/crash_update.php -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/database.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/database.txt -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/main.m -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /contrib/php-crashreporter-demo/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLCrashReporter-Fork/HEAD/contrib/php-crashreporter-demo/ru.lproj/Localizable.strings --------------------------------------------------------------------------------