├── .gitignore ├── .gitmodules ├── Example.cs ├── LICENSE ├── LLDBSharp ├── i686-apple-darwin │ ├── SBAddress.cs │ ├── SBAttachInfo.cs │ ├── SBBlock.cs │ ├── SBBreakpoint.cs │ ├── SBBreakpointLocation.cs │ ├── SBBroadcaster.cs │ ├── SBCommandInterpreter.cs │ ├── SBCommandReturnObject.cs │ ├── SBCommunication.cs │ ├── SBCompileUnit.cs │ ├── SBData.cs │ ├── SBDebugger.cs │ ├── SBDeclaration.cs │ ├── SBError.cs │ ├── SBEvent.cs │ ├── SBExecutionContext.cs │ ├── SBExpressionOptions.cs │ ├── SBFileSpec.cs │ ├── SBFileSpecList.cs │ ├── SBFrame.cs │ ├── SBFunction.cs │ ├── SBHostOS.cs │ ├── SBInstruction.cs │ ├── SBInstructionList.cs │ ├── SBLanguageRuntime.cs │ ├── SBLaunchInfo.cs │ ├── SBLineEntry.cs │ ├── SBListener.cs │ ├── SBModule.cs │ ├── SBModuleSpec.cs │ ├── SBPlatform.cs │ ├── SBProcess.cs │ ├── SBQueue.cs │ ├── SBQueueItem.cs │ ├── SBSection.cs │ ├── SBSourceManager.cs │ ├── SBStream.cs │ ├── SBStringList.cs │ ├── SBSymbol.cs │ ├── SBSymbolContext.cs │ ├── SBSymbolContextList.cs │ ├── SBTarget.cs │ ├── SBThread.cs │ ├── SBThreadCollection.cs │ ├── SBThreadPlan.cs │ ├── SBType.cs │ ├── SBTypeCategory.cs │ ├── SBTypeEnumMember.cs │ ├── SBTypeFilter.cs │ ├── SBTypeFormat.cs │ ├── SBTypeNameSpecifier.cs │ ├── SBTypeSummary.cs │ ├── SBTypeSynthetic.cs │ ├── SBUnixSignals.cs │ ├── SBValue.cs │ ├── SBValueList.cs │ ├── SBVariablesOptions.cs │ ├── SBWatchpoint.cs │ ├── lldb-defines.cs │ ├── lldb-enumerations.cs │ ├── lldb-templates.cpp │ └── lldb-types.cs └── i686-pc-windows-msvc │ ├── SBAddress.cs │ ├── SBAttachInfo.cs │ ├── SBBlock.cs │ ├── SBBreakpoint.cs │ ├── SBBreakpointLocation.cs │ ├── SBBroadcaster.cs │ ├── SBCommandInterpreter.cs │ ├── SBCommandReturnObject.cs │ ├── SBCommunication.cs │ ├── SBCompileUnit.cs │ ├── SBData.cs │ ├── SBDebugger.cs │ ├── SBDeclaration.cs │ ├── SBDefines.cs │ ├── SBError.cs │ ├── SBEvent.cs │ ├── SBExecutionContext.cs │ ├── SBExpressionOptions.cs │ ├── SBFileSpec.cs │ ├── SBFileSpecList.cs │ ├── SBFrame.cs │ ├── SBFunction.cs │ ├── SBHostOS.cs │ ├── SBInstruction.cs │ ├── SBInstructionList.cs │ ├── SBLanguageRuntime.cs │ ├── SBLaunchInfo.cs │ ├── SBLineEntry.cs │ ├── SBListener.cs │ ├── SBModule.cs │ ├── SBModuleSpec.cs │ ├── SBPlatform.cs │ ├── SBProcess.cs │ ├── SBQueue.cs │ ├── SBQueueItem.cs │ ├── SBSection.cs │ ├── SBSourceManager.cs │ ├── SBStream.cs │ ├── SBStringList.cs │ ├── SBSymbol.cs │ ├── SBSymbolContext.cs │ ├── SBSymbolContextList.cs │ ├── SBTarget.cs │ ├── SBThread.cs │ ├── SBThreadCollection.cs │ ├── SBThreadPlan.cs │ ├── SBType.cs │ ├── SBTypeCategory.cs │ ├── SBTypeEnumMember.cs │ ├── SBTypeFilter.cs │ ├── SBTypeFormat.cs │ ├── SBTypeNameSpecifier.cs │ ├── SBTypeSummary.cs │ ├── SBTypeSynthetic.cs │ ├── SBUnixSignals.cs │ ├── SBValue.cs │ ├── SBValueList.cs │ ├── SBVariablesOptions.cs │ ├── SBWatchpoint.cs │ ├── SharingPtr.cs │ ├── lldb-defines.cs │ ├── lldb-enumerations.cs │ ├── lldb-forward.cs │ ├── lldb-templates.cpp │ └── lldb-types.cs ├── LLDBSharpGen.cs ├── README.md ├── XcodeToolchain.cs ├── premake5-osx ├── premake5.exe ├── premake5.lua ├── tests ├── Managed.cs └── Native.cpp └── vs ├── LLDBSharp.Example.csproj ├── LLDBSharp.csproj ├── LLDBSharp.sln ├── Managed.csproj └── NativeLib.vcxproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/.gitmodules -------------------------------------------------------------------------------- /Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/Example.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBAddress.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBAttachInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBAttachInfo.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBBlock.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBBreakpoint.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBBreakpointLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBBreakpointLocation.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBBroadcaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBBroadcaster.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBCommandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBCommandInterpreter.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBCommandReturnObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBCommandReturnObject.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBCommunication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBCommunication.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBCompileUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBCompileUnit.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBData.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBDebugger.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBDeclaration.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBError.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBEvent.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBExecutionContext.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBExpressionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBExpressionOptions.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBFileSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBFileSpec.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBFileSpecList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBFileSpecList.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBFrame.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBFunction.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBHostOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBHostOS.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBInstruction.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBInstructionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBInstructionList.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBLanguageRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBLanguageRuntime.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBLaunchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBLaunchInfo.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBLineEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBLineEntry.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBListener.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBModule.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBModuleSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBModuleSpec.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBPlatform.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBProcess.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBQueue.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBQueueItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBQueueItem.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBSection.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBSourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBSourceManager.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBStream.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBStringList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBStringList.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBSymbol.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBSymbolContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBSymbolContext.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBSymbolContextList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBSymbolContextList.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBTarget.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBThread.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBThreadCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBThreadCollection.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBThreadPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBThreadPlan.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBType.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBTypeCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBTypeCategory.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBTypeEnumMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBTypeEnumMember.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBTypeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBTypeFilter.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBTypeFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBTypeFormat.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBTypeNameSpecifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBTypeNameSpecifier.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBTypeSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBTypeSummary.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBTypeSynthetic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBTypeSynthetic.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBUnixSignals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBUnixSignals.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBValue.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBValueList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBValueList.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBVariablesOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBVariablesOptions.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/SBWatchpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/SBWatchpoint.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/lldb-defines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/lldb-defines.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/lldb-enumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/lldb-enumerations.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/lldb-templates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/lldb-templates.cpp -------------------------------------------------------------------------------- /LLDBSharp/i686-apple-darwin/lldb-types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-apple-darwin/lldb-types.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBAddress.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBAttachInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBAttachInfo.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBBlock.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBBreakpoint.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBBreakpointLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBBreakpointLocation.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBBroadcaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBBroadcaster.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBCommandInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBCommandInterpreter.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBCommandReturnObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBCommandReturnObject.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBCommunication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBCommunication.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBCompileUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBCompileUnit.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBData.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBDebugger.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBDeclaration.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBDefines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBDefines.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBError.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBEvent.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBExecutionContext.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBExpressionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBExpressionOptions.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBFileSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBFileSpec.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBFileSpecList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBFileSpecList.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBFrame.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBFunction.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBHostOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBHostOS.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBInstruction.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBInstructionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBInstructionList.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBLanguageRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBLanguageRuntime.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBLaunchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBLaunchInfo.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBLineEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBLineEntry.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBListener.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBModule.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBModuleSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBModuleSpec.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBPlatform.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBProcess.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBQueue.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBQueueItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBQueueItem.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBSection.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBSourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBSourceManager.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBStream.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBStringList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBStringList.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBSymbol.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBSymbolContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBSymbolContext.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBSymbolContextList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBSymbolContextList.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBTarget.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBThread.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBThreadCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBThreadCollection.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBThreadPlan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBThreadPlan.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBType.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBTypeCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBTypeCategory.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBTypeEnumMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBTypeEnumMember.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBTypeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBTypeFilter.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBTypeFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBTypeFormat.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBTypeNameSpecifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBTypeNameSpecifier.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBTypeSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBTypeSummary.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBTypeSynthetic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBTypeSynthetic.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBUnixSignals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBUnixSignals.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBValue.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBValueList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBValueList.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBVariablesOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBVariablesOptions.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SBWatchpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SBWatchpoint.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/SharingPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/SharingPtr.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/lldb-defines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/lldb-defines.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/lldb-enumerations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/lldb-enumerations.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/lldb-forward.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/lldb-forward.cs -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/lldb-templates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/lldb-templates.cpp -------------------------------------------------------------------------------- /LLDBSharp/i686-pc-windows-msvc/lldb-types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharp/i686-pc-windows-msvc/lldb-types.cs -------------------------------------------------------------------------------- /LLDBSharpGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/LLDBSharpGen.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/README.md -------------------------------------------------------------------------------- /XcodeToolchain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/XcodeToolchain.cs -------------------------------------------------------------------------------- /premake5-osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/premake5-osx -------------------------------------------------------------------------------- /premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/premake5.exe -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/premake5.lua -------------------------------------------------------------------------------- /tests/Managed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/tests/Managed.cs -------------------------------------------------------------------------------- /tests/Native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/tests/Native.cpp -------------------------------------------------------------------------------- /vs/LLDBSharp.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/vs/LLDBSharp.Example.csproj -------------------------------------------------------------------------------- /vs/LLDBSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/vs/LLDBSharp.csproj -------------------------------------------------------------------------------- /vs/LLDBSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/vs/LLDBSharp.sln -------------------------------------------------------------------------------- /vs/Managed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/vs/Managed.csproj -------------------------------------------------------------------------------- /vs/NativeLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tritao/LLDBSharp/HEAD/vs/NativeLib.vcxproj --------------------------------------------------------------------------------