├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── DisableMeOnCore.props ├── DllExport.props ├── Documentation ├── Build.md ├── CodeGen.md ├── CommonUserTypes.md ├── Drawings.md ├── DumpProcessing.md ├── Images │ ├── VS_CvMat.png │ ├── VS_Installation_VSIX_Gallery.png │ ├── VS_InteractiveMode.png │ ├── VS_StdAny.png │ └── VS_StdAny_Original.png ├── InteractiveMode.md ├── Tutorials.md ├── UserTypes.md ├── VisualStudioExtension.md └── WinDbgExtension.md ├── External ├── Managed.Reflection.dll ├── Managed.Reflection.pdb ├── Microsoft.Diagnostics.Runtime.dll ├── Microsoft.Diagnostics.Runtime.pdb └── Microsoft.Diagnostics.Runtime.xml ├── GetShipFiles.ps1 ├── Properties └── SharedAssemblyInfo.cs ├── README.md ├── SharedAssemblyInfo.props ├── Source ├── CsDebugScript.ClrMdProvider │ ├── ClrMdAppDomain.cs │ ├── ClrMdHeap.cs │ ├── ClrMdInstanceField.cs │ ├── ClrMdModule.cs │ ├── ClrMdProvider.cs │ ├── ClrMdRuntime.cs │ ├── ClrMdStackFrame.cs │ ├── ClrMdStaticField.cs │ ├── ClrMdSymbolLocator.cs │ ├── ClrMdThread.cs │ ├── ClrMdType.cs │ ├── CsDebugScript.ClrMdProvider.csproj │ ├── DataReader.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── CsDebugScript.CodeGen.App │ ├── CsDebugScript.CodeGen.App.csproj │ └── Program.cs ├── CsDebugScript.CodeGen │ ├── CodeWriters │ │ ├── CSharpCodeWriter.cs │ │ ├── DotNetCodeWriter.cs │ │ ├── ICodeWriter.cs │ │ └── ManagedILCodeWriter.cs │ ├── CsDebugScript.CodeGen.csproj │ ├── Generator.cs │ ├── GlobalCache.cs │ ├── IndentedWriter.cs │ ├── NameHelper.cs │ ├── NamespaceDoc.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SymbolProviders │ │ ├── DiaModule.cs │ │ ├── DiaModuleProvider.cs │ │ ├── DiaSymbol.cs │ │ ├── DiaSymbolField.cs │ │ ├── EngineSymbolProviderModule.cs │ │ ├── EngineSymbolProviderModuleProvider.cs │ │ ├── EngineSymbolProviderSymbol.cs │ │ ├── EngineSymbolProviderSymbolField.cs │ │ ├── FakePointerSymbol.cs │ │ ├── IModuleProvider.cs │ │ ├── Module.cs │ │ ├── Symbol.cs │ │ └── SymbolField.cs │ ├── TypeInstances │ │ ├── ArrayTypeInstance.cs │ │ ├── BasicTypeInstance.cs │ │ ├── EnumTypeInstance.cs │ │ ├── FunctionTypeInstance.cs │ │ ├── MultiClassInheritanceTypeInstance.cs │ │ ├── PointerTypeInstance.cs │ │ ├── SingleClassInheritanceWithInterfacesTypeInstance.cs │ │ ├── StaticClassTypeInstance.cs │ │ ├── TemplateArgumentConstantTypeInstance.cs │ │ ├── TemplateArgumentTypeInstance.cs │ │ ├── TemplateTypeInstance.cs │ │ ├── TransformationTypeInstance.cs │ │ ├── TypeInstance.cs │ │ ├── UserTypeInstance.cs │ │ └── VariableTypeInstance.cs │ ├── UserTypeFactory │ │ ├── TemplateUserTypeFactory.cs │ │ └── UserTypeFactory.cs │ ├── UserTypeGenerationFlags.cs │ ├── UserTypes │ │ ├── AccessLevel.cs │ │ ├── EnumUserType.cs │ │ ├── GlobalsUserType.cs │ │ ├── Members │ │ │ ├── BaseClassPropertyUserTypeMember.cs │ │ │ ├── ConstantUserTypeMember.cs │ │ │ ├── DataFieldUserTypeMember.cs │ │ │ ├── HungarianArrayUserTypeMember.cs │ │ │ └── UserTypeMember.cs │ │ ├── NamespaceUserType.cs │ │ ├── PhysicalUserType.cs │ │ ├── SpecializedTemplateUserType.cs │ │ ├── TemplateArgumentConstantUserType.cs │ │ ├── TemplateUserType.cs │ │ ├── UserType.cs │ │ ├── UserTypeConstructor.cs │ │ └── UserTypeTransformation.cs │ └── XmlConfig.cs ├── CsDebugScript.CommonUserTypes │ ├── BitmapUserType.cs │ ├── CLR │ │ └── System │ │ │ ├── Exception.cs │ │ │ └── String.cs │ ├── CsDebugScript.CommonUserTypes.csproj │ ├── DynamicSelf.cs │ ├── InvalidSymbolsException.cs │ ├── NativeTypes │ │ ├── Windows │ │ │ ├── Heap.cs │ │ │ ├── ProcessEnvironmentBlock.cs │ │ │ └── ThreadEnvironmentBlock.cs │ │ ├── cv │ │ │ ├── CvMat.cs │ │ │ ├── ElementType.cs │ │ │ ├── Mat.cs │ │ │ └── MatType.cs │ │ └── std │ │ │ ├── NamespaceDoc.cs │ │ │ ├── any.cs │ │ │ ├── array.cs │ │ │ ├── basic_string.cs │ │ │ ├── filesystem │ │ │ └── path.cs │ │ │ ├── list.cs │ │ │ ├── map.cs │ │ │ ├── optional.cs │ │ │ ├── pair.cs │ │ │ ├── shared_ptr.cs │ │ │ ├── string.cs │ │ │ ├── unordered_map.cs │ │ │ ├── variant.cs │ │ │ ├── vector.cs │ │ │ ├── weak_ptr.cs │ │ │ └── wstring.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TypeSelector.cs ├── CsDebugScript.DbgEng │ ├── CsDebugScript.DbgEng.csproj │ ├── DbgEng │ │ ├── DebugClient.cs │ │ ├── DebugExecute.cs │ │ ├── DebugModname.cs │ │ ├── DebugScopeGroup.cs │ │ ├── Defines.cs │ │ ├── Enums │ │ │ ├── DebugAttach.cs │ │ │ ├── DebugAttachKernel.cs │ │ │ ├── DebugClass.cs │ │ │ ├── DebugConnectSession.cs │ │ │ ├── DebugCreateProcess.cs │ │ │ ├── DebugDump.cs │ │ │ ├── DebugDumpFile.cs │ │ │ ├── DebugEcreateProcess.cs │ │ │ ├── DebugEnd.cs │ │ │ ├── DebugEvent.cs │ │ │ ├── DebugFormat.cs │ │ │ ├── DebugGetProc.cs │ │ │ ├── DebugOutctl.cs │ │ │ ├── DebugOutput.cs │ │ │ ├── DebugProcDesc.cs │ │ │ ├── DebugProcess.cs │ │ │ ├── DebugRequest.cs │ │ │ ├── DebugServers.cs │ │ │ ├── DebugTypedDataFlags.cs │ │ │ ├── ExtTdf.cs │ │ │ └── ExtTdop.cs │ │ ├── IDebugAdvanced2.cs │ │ ├── IDebugAdvanced3.cs │ │ ├── IDebugAdvanced4.cs │ │ ├── IDebugBreakpoint.cs │ │ ├── IDebugBreakpoint2.cs │ │ ├── IDebugBreakpoint3.cs │ │ ├── IDebugControl.cs │ │ ├── IDebugControl2.cs │ │ ├── IDebugControl3.cs │ │ ├── IDebugControl4.cs │ │ ├── IDebugControl5.cs │ │ ├── IDebugControl6.cs │ │ ├── IDebugControl7.cs │ │ ├── IDebugDataSpaces.cs │ │ ├── IDebugDataSpaces2.cs │ │ ├── IDebugDataSpaces3.cs │ │ ├── IDebugDataSpaces4.cs │ │ ├── IDebugEventCallbacks.cs │ │ ├── IDebugEventCallbacksWide.cs │ │ ├── IDebugEventContextCallbacks.cs │ │ ├── IDebugInputCallbacks.cs │ │ ├── IDebugOutputCallbacks.cs │ │ ├── IDebugOutputCallbacks2.cs │ │ ├── IDebugOutputCallbacksWide.cs │ │ ├── IDebugOutputStream.cs │ │ ├── IDebugPlmClient.cs │ │ ├── IDebugPlmClient2.cs │ │ ├── IDebugPlmClient3.cs │ │ ├── IDebugRegisters.cs │ │ ├── IDebugRegisters2.cs │ │ ├── IDebugSymbolGroup.cs │ │ ├── IDebugSymbolGroup2.cs │ │ ├── IDebugSymbols.cs │ │ ├── IDebugSymbols2.cs │ │ ├── IDebugSymbols3.cs │ │ ├── IDebugSymbols4.cs │ │ ├── IDebugSymbols5.cs │ │ ├── IDebugSystemObjects.cs │ │ ├── IDebugSystemObjects2.cs │ │ ├── IDebugSystemObjects3.cs │ │ ├── IDebugSystemObjects4.cs │ │ ├── Interfaces │ │ │ ├── IDebugAdvanced.cs │ │ │ ├── IDebugClient.cs │ │ │ ├── IDebugClient2.cs │ │ │ ├── IDebugClient3.cs │ │ │ ├── IDebugClient4.cs │ │ │ ├── IDebugClient5.cs │ │ │ ├── IDebugClient6.cs │ │ │ └── IDebugClient7.cs │ │ ├── NoExceptions │ │ │ ├── IDebugAdvanced.cs │ │ │ ├── IDebugAdvanced2.cs │ │ │ ├── IDebugAdvanced3.cs │ │ │ ├── IDebugAdvanced4.cs │ │ │ ├── IDebugBreakpoint.cs │ │ │ ├── IDebugBreakpoint2.cs │ │ │ ├── IDebugBreakpoint3.cs │ │ │ ├── IDebugClient.cs │ │ │ ├── IDebugClient2.cs │ │ │ ├── IDebugClient3.cs │ │ │ ├── IDebugClient4.cs │ │ │ ├── IDebugClient5.cs │ │ │ ├── IDebugClient6.cs │ │ │ ├── IDebugClient7.cs │ │ │ ├── IDebugControl.cs │ │ │ ├── IDebugControl2.cs │ │ │ ├── IDebugControl3.cs │ │ │ ├── IDebugControl4.cs │ │ │ ├── IDebugControl5.cs │ │ │ ├── IDebugControl6.cs │ │ │ ├── IDebugControl7.cs │ │ │ ├── IDebugDataSpaces.cs │ │ │ ├── IDebugDataSpaces2.cs │ │ │ ├── IDebugDataSpaces3.cs │ │ │ ├── IDebugDataSpaces4.cs │ │ │ ├── IDebugEventCallbacks.cs │ │ │ ├── IDebugEventCallbacksWide.cs │ │ │ ├── IDebugEventContextCallbacks.cs │ │ │ ├── IDebugInputCallbacks.cs │ │ │ ├── IDebugOutputCallbacks.cs │ │ │ ├── IDebugOutputCallbacks2.cs │ │ │ ├── IDebugOutputCallbacksWide.cs │ │ │ ├── IDebugOutputStream.cs │ │ │ ├── IDebugPlmClient.cs │ │ │ ├── IDebugPlmClient2.cs │ │ │ ├── IDebugPlmClient3.cs │ │ │ ├── IDebugRegisters.cs │ │ │ ├── IDebugRegisters2.cs │ │ │ ├── IDebugSymbolGroup.cs │ │ │ ├── IDebugSymbolGroup2.cs │ │ │ ├── IDebugSymbols.cs │ │ │ ├── IDebugSymbols2.cs │ │ │ ├── IDebugSymbols3.cs │ │ │ ├── IDebugSymbols4.cs │ │ │ ├── IDebugSymbols5.cs │ │ │ ├── IDebugSystemObjects.cs │ │ │ ├── IDebugSystemObjects2.cs │ │ │ ├── IDebugSystemObjects3.cs │ │ │ └── IDebugSystemObjects4.cs │ │ ├── Structs │ │ │ ├── DEBUG_CREATE_PROCESS_OPTIONS.cs │ │ │ ├── DEBUG_TYPED_DATA.cs │ │ │ └── EXT_TYPED_DATA.cs │ │ ├── _DEBUG_BREAKPOINT_PARAMETERS.cs │ │ ├── _DEBUG_CACHED_SYMBOL_INFO.cs │ │ ├── _DEBUG_CLIENT_CONTEXT.cs │ │ ├── _DEBUG_EVENT_CONTEXT.cs │ │ ├── _DEBUG_EXCEPTION_FILTER_PARAMETERS.cs │ │ ├── _DEBUG_GET_TEXT_COMPLETIONS_IN.cs │ │ ├── _DEBUG_GET_TEXT_COMPLETIONS_OUT.cs │ │ ├── _DEBUG_HANDLE_DATA_BASIC.cs │ │ ├── _DEBUG_LAST_EVENT_INFO_BREAKPOINT.cs │ │ ├── _DEBUG_LAST_EVENT_INFO_EXCEPTION.cs │ │ ├── _DEBUG_LAST_EVENT_INFO_EXIT_PROCESS.cs │ │ ├── _DEBUG_LAST_EVENT_INFO_EXIT_THREAD.cs │ │ ├── _DEBUG_LAST_EVENT_INFO_LOAD_MODULE.cs │ │ ├── _DEBUG_LAST_EVENT_INFO_SYSTEM_ERROR.cs │ │ ├── _DEBUG_LAST_EVENT_INFO_UNLOAD_MODULE.cs │ │ ├── _DEBUG_MODULE_AND_ID.cs │ │ ├── _DEBUG_MODULE_PARAMETERS.cs │ │ ├── _DEBUG_OFFSET_REGION.cs │ │ ├── _DEBUG_PROCESSOR_IDENTIFICATION_ALPHA.cs │ │ ├── _DEBUG_PROCESSOR_IDENTIFICATION_AMD64.cs │ │ ├── _DEBUG_PROCESSOR_IDENTIFICATION_ARM.cs │ │ ├── _DEBUG_PROCESSOR_IDENTIFICATION_ARM64.cs │ │ ├── _DEBUG_PROCESSOR_IDENTIFICATION_IA64.cs │ │ ├── _DEBUG_PROCESSOR_IDENTIFICATION_X86.cs │ │ ├── _DEBUG_READ_USER_MINIDUMP_STREAM.cs │ │ ├── _DEBUG_REGISTER_DESCRIPTION.cs │ │ ├── _DEBUG_SPECIFIC_FILTER_PARAMETERS.cs │ │ ├── _DEBUG_STACK_FRAME.cs │ │ ├── _DEBUG_STACK_FRAME_EX.cs │ │ ├── _DEBUG_SYMBOL_ENTRY.cs │ │ ├── _DEBUG_SYMBOL_PARAMETERS.cs │ │ ├── _DEBUG_SYMBOL_SOURCE_ENTRY.cs │ │ ├── _DEBUG_THREAD_BASIC_INFORMATION.cs │ │ ├── _DEBUG_VALUE.cs │ │ ├── _EXCEPTION_RECORD64.cs │ │ ├── _IMAGE_DATA_DIRECTORY.cs │ │ ├── _IMAGE_FILE_HEADER.cs │ │ ├── _IMAGE_NT_HEADERS64.cs │ │ ├── _IMAGE_OPTIONAL_HEADER64.cs │ │ ├── _MEMORY_BASIC_INFORMATION64.cs │ │ ├── _STACK_SRC_INFO.cs │ │ ├── _STACK_SYM_FRAME_INFO.cs │ │ ├── _SYMBOL_INFO_EX.cs │ │ ├── _WINDBG_EXTENSION_APIS32.cs │ │ ├── _WINDBG_EXTENSION_APIS64.cs │ │ ├── __MIDL___MIDL_itf_output_0000_0000_0001.cs │ │ ├── __MIDL___MIDL_itf_output_0000_0000_0002.cs │ │ ├── __MIDL___MIDL_itf_output_0001_0083_0001.cs │ │ ├── __MIDL___MIDL_itf_output_0001_0083_0002.cs │ │ ├── __MIDL___MIDL_itf_output_0001_0083_0003.cs │ │ └── __MIDL___MIDL_itf_output_0001_0083_0004.cs │ ├── DbgEngDll.cs │ ├── DbgEngDllHelpers │ │ ├── DbgEngBreakpoint.cs │ │ ├── DbgEngSymbolProvider.cs │ │ ├── DbgEngSymbolProviderModule.cs │ │ ├── DebugCallbacks.cs │ │ ├── DebuggeFlowController.cs │ │ ├── DebuggerOutputCapture.cs │ │ ├── DebuggerTextWriter.cs │ │ ├── OutputCallbacksSwitcher.cs │ │ ├── ProcessSwitcher.cs │ │ ├── StackFrameSwitcher.cs │ │ ├── StateCache.cs │ │ └── ThreadSwitcher.cs │ ├── DebugEventInfo.cs │ ├── DebuggerOutputToTextWriter.cs │ ├── Native │ │ ├── DEBUG_LAST_EVENT_INFO.cs │ │ ├── DEBUG_MODULE_PARAMETERS.cs │ │ ├── Extensions.cs │ │ ├── ImageFileMachine.cs │ │ └── NamespaceDoc.cs │ ├── OutputCallbacksSwitcher.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── CsDebugScript.DiaSymbolProvider │ ├── CsDebugScript.DiaSymbolProvider.csproj │ ├── DIA │ │ ├── DiaHelpers.cs │ │ └── TypeToString.cs │ ├── DiaModule.cs │ ├── DiaSymbolProvider.cs │ ├── IDiaSessionProvider.cs │ ├── IRegistersAccess.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── WindowsDumpFileMemoryReader.cs ├── CsDebugScript.Drawing.Interfaces │ ├── Color.cs │ ├── CsDebugScript.Drawing.Interfaces.csproj │ ├── GraphicsExtensions.cs │ ├── IBitmap.cs │ ├── IBrush.cs │ ├── ICanvas.cs │ ├── ICircle.cs │ ├── IDrawing.cs │ ├── IDrawingVisualizerObject.cs │ ├── IEllipse.cs │ ├── IFont.cs │ ├── IGraphics.cs │ ├── ILine.cs │ ├── IPen.cs │ ├── IRectangle.cs │ ├── ISolidColorBrush.cs │ └── IText.cs ├── CsDebugScript.DwarfSymbolProvider │ ├── CsDebugScript.DwarfSymbolProvider.csproj │ ├── DwarfAttributeValue.cs │ ├── DwarfCodeGenModuleProvider.cs │ ├── DwarfCommonInformationEntry.cs │ ├── DwarfCompilationUnit.cs │ ├── DwarfEnums.cs │ ├── DwarfFileInformation.cs │ ├── DwarfFrameDescriptionEntry.cs │ ├── DwarfLineInformation.cs │ ├── DwarfLineNumberProgram.cs │ ├── DwarfMemoryReader.cs │ ├── DwarfSymbol.cs │ ├── DwarfSymbolProvider.cs │ ├── DwarfSymbolProviderModule.cs │ ├── ElfCoreDump.cs │ ├── ElfCoreDumpDebuggingEngine.cs │ ├── ElfImage.cs │ ├── IDwarfImage.cs │ ├── PeImage.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── CsDebugScript.Engine │ ├── BaseClassesArrayAttribute.cs │ ├── BasicType.cs │ ├── BreakpointSpec.cs │ ├── CLR │ │ ├── ClrElementType.cs │ │ ├── IClrAppDomain.cs │ │ ├── IClrHeap.cs │ │ ├── IClrInstanceField.cs │ │ ├── IClrModule.cs │ │ ├── IClrProvider.cs │ │ ├── IClrRuntime.cs │ │ ├── IClrStackFrame.cs │ │ ├── IClrStaticField.cs │ │ ├── IClrThread.cs │ │ ├── IClrType.cs │ │ └── NamespaceDoc.cs │ ├── CodeArray.cs │ ├── CodeFunction.cs │ ├── CodePointer.cs │ ├── CodeType.cs │ ├── CsDebugScript.Engine.csproj │ ├── Debugger.cs │ ├── DerivedClassAttribute.cs │ ├── Engine │ │ ├── ArchitectureType.cs │ │ ├── BuiltinType.cs │ │ ├── CodeTypeTag.cs │ │ ├── Constants.cs │ │ ├── Context.cs │ │ ├── GlobalCache.cs │ │ ├── IDebuggerEngine.cs │ │ ├── ILGeneratorHelpers.cs │ │ ├── ISymbolProvider.cs │ │ ├── ISymbolProviderModule.cs │ │ ├── Marshaling │ │ │ ├── MarshalArrayReader.cs │ │ │ ├── MarshalStructure.cs │ │ │ └── NamespaceDoc.cs │ │ ├── NamespaceDoc.cs │ │ ├── Native │ │ │ └── NativeMethods.cs │ │ ├── SymbolProviders │ │ │ ├── NamespaceDoc.cs │ │ │ └── PerModuleSymbolProvider.cs │ │ ├── UserTypeDelegates.cs │ │ ├── UserTypeMetadata.cs │ │ └── Utility │ │ │ ├── ArrayCache.cs │ │ │ ├── CacheInvalidator.cs │ │ │ ├── DictionaryCache.cs │ │ │ ├── DumpFileMemoryReader.cs │ │ │ ├── MemoryBuffer.cs │ │ │ ├── NamespaceDoc.cs │ │ │ └── SimpleCache.cs │ ├── Exceptions │ │ ├── InvalidMemoryAddressException.cs │ │ ├── NoSymbolWithGivenNameFound.cs │ │ ├── NotAllMemoryCanBeReadException.cs │ │ └── WrongCodeTypeException.cs │ ├── ForceDefaultVisualizerAtttribute.cs │ ├── IBreakpoint.cs │ ├── ICastableObject.cs │ ├── IMultiClassInheritance.cs │ ├── MemoryRegion.cs │ ├── Module.cs │ ├── NakedPointer.cs │ ├── NamespaceDoc.cs │ ├── Process.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ScriptBase.cs │ ├── StackFrame.cs │ ├── StackTrace.cs │ ├── TemplateConstant.cs │ ├── Thread.cs │ ├── ThreadContext.cs │ ├── UserMember.cs │ ├── UserType.cs │ ├── UserTypeAttribute.cs │ ├── Variable.cs │ ├── VariableCollection.cs │ └── VoidType.cs ├── CsDebugScript.PdbSymbolProvider │ ├── CsDebugScript.PdbSymbolProvider.csproj │ ├── DBI │ │ ├── CoffSection.cs │ │ ├── DbiBuildNumber.cs │ │ ├── DbiFlags.cs │ │ ├── DbiModuleDescriptor.cs │ │ ├── DbiModuleList.cs │ │ ├── DbiSectionContributionVersion.cs │ │ ├── DbiStream.cs │ │ ├── DbiStreamHeader.cs │ │ ├── DbiStreamVersion.cs │ │ ├── FpoData.cs │ │ ├── ImageSectionCharacteristics.cs │ │ ├── KnownDebugStreamIndex.cs │ │ ├── ModuleInfoFlags.cs │ │ ├── ModuleInfoHeader.cs │ │ ├── OMFSegmentDescriptionFlags.cs │ │ ├── PdbMachineType.cs │ │ ├── SectionContributionEntry.cs │ │ ├── SectionContributionEntry2.cs │ │ └── SectionMapEntry.cs │ ├── HashTable.cs │ ├── MSF │ │ └── SuperBlock.cs │ ├── PDBFile.cs │ ├── PdbGlobalScope.cs │ ├── PdbModule.cs │ ├── PdbModuleProvider.cs │ ├── PdbStream.cs │ ├── PdbStringTable.cs │ ├── PdbSymbol.cs │ ├── PdbSymbolField.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RecordPrefix.cs │ ├── SimpleTypeKind.cs │ ├── SimpleTypeMode.cs │ ├── SpecialStream.cs │ ├── SymbolRecords │ │ ├── CoffGroupSymbol.cs │ │ ├── ConstantSymbol.cs │ │ ├── DataSymbol.cs │ │ ├── ProcedureFlags.cs │ │ ├── ProcedureReferenceSymbol.cs │ │ ├── ProcedureSymbol.cs │ │ ├── Public32Symbol.cs │ │ ├── PublicSymbolFlags.cs │ │ ├── SectionSymbol.cs │ │ ├── SymbolRecord.cs │ │ ├── SymbolRecordKind.cs │ │ ├── ThreadLocalDataSymbol.cs │ │ ├── Thunk32Symbol.cs │ │ ├── ThunkOrdinal.cs │ │ ├── TrampolineSymbol.cs │ │ ├── TrampolineType.cs │ │ └── UdtSymbol.cs │ ├── SymbolStream.cs │ ├── TPI │ │ ├── PdbTpiVersion.cs │ │ ├── TpiStream.cs │ │ ├── TpiStreamHeader.cs │ │ └── TypeIndexOffset.cs │ ├── TypeIndex.cs │ ├── TypeRecords │ │ ├── ArgumentListRecord.cs │ │ ├── ArrayRecord.cs │ │ ├── BaseClassRecord.cs │ │ ├── BitFieldRecord.cs │ │ ├── BuildInfoRecord.cs │ │ ├── CallingConvention.cs │ │ ├── ClassOptions.cs │ │ ├── ClassRecord.cs │ │ ├── DataMemberRecord.cs │ │ ├── EnumRecord.cs │ │ ├── EnumeratorRecord.cs │ │ ├── FieldListRecord.cs │ │ ├── FunctionIdRecord.cs │ │ ├── FunctionOptions.cs │ │ ├── HfaKind.cs │ │ ├── LabelRecord.cs │ │ ├── LabelType.cs │ │ ├── ListContinuationRecord.cs │ │ ├── MemberAccess.cs │ │ ├── MemberAttributes.cs │ │ ├── MemberFunctionIdRecord.cs │ │ ├── MemberFunctionRecord.cs │ │ ├── MemberPointerInfo.cs │ │ ├── MethodKind.cs │ │ ├── MethodOptions.cs │ │ ├── MethodOverloadListRecord.cs │ │ ├── ModifierOptions.cs │ │ ├── ModifierRecord.cs │ │ ├── NestedTypeRecord.cs │ │ ├── OneMethodRecord.cs │ │ ├── OverloadedMethodRecord.cs │ │ ├── PointerKind.cs │ │ ├── PointerMode.cs │ │ ├── PointerOptions.cs │ │ ├── PointerRecord.cs │ │ ├── PointerToMemberRepresentation.cs │ │ ├── ProcedureRecord.cs │ │ ├── StaticDataMemberRecord.cs │ │ ├── StringIdRecord.cs │ │ ├── StringListRecord.cs │ │ ├── TagRecord.cs │ │ ├── TypeLeafKind.cs │ │ ├── TypeRecord.cs │ │ ├── UdtModuleSourceLineRecord.cs │ │ ├── UnionRecord.cs │ │ ├── VirtualBaseClassRecord.cs │ │ ├── VirtualFunctionPointerRecord.cs │ │ ├── VirtualFunctionTableShapeRecord.cs │ │ ├── VirtualFunctionTableSlotKind.cs │ │ └── WindowsRTClassKind.cs │ └── Utility │ │ ├── BinaryReaderExtensions.cs │ │ ├── BinarySubstreamReader.cs │ │ ├── IBinaryReader.cs │ │ ├── MMFile.cs │ │ ├── MMFileReader.cs │ │ └── MappedBlockBinaryReader.cs ├── CsDebugScript.Scripting │ ├── CsDebugScript.Scripting.csproj │ ├── InteractiveExecution.cs │ ├── InteractiveExecutionInitialization.cs │ ├── InteractiveScriptBase.cs │ ├── ObjectWriter.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ScriptCompiler.cs │ └── ScriptExecution.cs ├── CsDebugScript.UI.App │ ├── CsDebugScript.UI.App.csproj │ └── Program.cs ├── CsDebugScript.UI │ ├── CodeWindow │ │ ├── CompletionData.cs │ │ ├── CompletionDataFactory.cs │ │ ├── CompletionDataType.cs │ │ ├── CsTextEditor.cs │ │ ├── EntityWrapper.cs │ │ ├── ParameterCompletionDataFactory.cs │ │ └── ParameterDataProvider.cs │ ├── CsDebugScript.UI.csproj │ ├── Drawing │ │ ├── Bitmap.cs │ │ ├── Brush.cs │ │ ├── Canvas.cs │ │ ├── Circle.cs │ │ ├── Drawing.cs │ │ ├── Ellipse.cs │ │ ├── Extensions.cs │ │ ├── Font.cs │ │ ├── Graphics.cs │ │ ├── Line.cs │ │ ├── Pen.cs │ │ ├── Rectangle.cs │ │ ├── SolidColorBrush.cs │ │ └── Text.cs │ ├── DrawingViewer.cs │ ├── Icons │ │ ├── Class.png │ │ ├── Enum.png │ │ ├── EnumValue.png │ │ ├── Event.png │ │ ├── Keyword.png │ │ ├── Method.png │ │ ├── Namespace.png │ │ ├── Property.png │ │ └── Variable.png │ ├── InteractiveCodeEditor.cs │ ├── InteractiveResultVisualizer.cs │ ├── InteractiveWindow.cs │ ├── InteractiveWindowContent.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── ResultVisualizers │ │ ├── ArrayResultVisualizer.cs │ │ ├── CustomObjectResultVisualizer.cs │ │ ├── DictionaryResultVisualizer.cs │ │ ├── GroupResultVisualizer.cs │ │ ├── IResultVisualizer.cs │ │ ├── ObjectResultVisualizer.cs │ │ ├── ResultVisualizer.cs │ │ ├── VariableCollectionResultVisualizer.cs │ │ └── VariableResultVisualizer.cs ├── CsDebugScript.VS.DPE │ ├── ClrMdDataReader.cs │ ├── CsDebugScript.VS.DPE.csproj │ ├── MessageReceiver.cs │ ├── MessageSerializer.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── CsDebugScript.VS │ ├── CLR │ │ ├── VSClrAppDomain.cs │ │ ├── VSClrHeap.cs │ │ ├── VSClrInstanceField.cs │ │ ├── VSClrModule.cs │ │ ├── VSClrRuntime.cs │ │ ├── VSClrStackFrame.cs │ │ ├── VSClrStaticField.cs │ │ ├── VSClrThread.cs │ │ └── VSClrType.cs │ ├── CsDebugScript.VS.csproj │ ├── CsDebugScript.VS.csproj.simple │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── VSInteractiveWindowCommand.png │ │ └── VSInteractiveWindowPackage.ico │ ├── VS.DPE.vsdconfigxml │ ├── VS.natvis │ ├── VS.vsdconfigxml │ ├── VSContext.cs │ ├── VSCustomVisualizer.cs │ ├── VSCustomVisualizerEvaluator.cs │ ├── VSDebugger.cs │ ├── VSDebuggerProxy.cs │ ├── VSInteractiveWindow.cs │ ├── VSInteractiveWindowCommand.cs │ ├── VSInteractiveWindowControl.xaml │ ├── VSInteractiveWindowControl.xaml.cs │ ├── VSInteractiveWindowPackage.cs │ ├── VSInteractiveWindowPackage.vsct │ ├── VSPackage.resx │ ├── VSUIVisualizerService.cs │ ├── app.config │ ├── packages.config │ └── source.extension.vsixmanifest ├── CsDebugScript.WinDbg │ ├── Source │ │ └── Extension.cs │ ├── x64proj │ │ └── CsDebugScript.WinDbg.x64.csproj │ └── x86proj │ │ └── CsDebugScript.WinDbg.x86.csproj ├── CsDebugScript │ ├── CsDebugScript.csproj │ └── DebuggerInitialization.cs ├── DebugCmdlets │ ├── DebugCmdlets.cs │ └── DebugCmdlets.csproj └── PadAnalyzer │ ├── Dia2Lib140.manifest │ ├── PadAnalyzer.Designer.cs │ ├── PadAnalyzer.cs │ ├── PadAnalyzer.csproj │ ├── PadAnalyzer.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── app.config │ ├── app.manifest │ ├── msdia140.dll │ └── packages.config ├── Tests ├── CsDebugScript.Engine.Test │ ├── CsDebugScript.Engine.Test.csproj │ └── Program.cs ├── CsDebugScript.Tests.CLR │ ├── AppDomainTests.cs │ ├── ClrDumpInitialization.cs │ ├── CsDebugScript.Tests.CLR.csproj │ ├── CsDebugScript.Tests.CLR.xunit.runner.json │ ├── DataReaderTests.cs │ ├── ExceptionTests.cs │ ├── HeapTests.cs │ ├── ModuleTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StackTests.cs │ ├── TypeTests.cs │ └── ValueTests.cs ├── CsDebugScript.Tests.Common │ ├── CsDebugScript.Tests.Common.csproj │ ├── DumpInitialization.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SkipTestException.cs │ ├── SkippableFactAttribute.cs │ ├── SkippableFactDiscoverer.cs │ ├── SkippableFactMessageBus.cs │ ├── SkippableFactTestCase.cs │ ├── SkippableTheoryAttribute.cs │ ├── SkippableTheoryDiscoverer.cs │ ├── SkippableTheoryTestCase.cs │ └── TestBase.cs ├── CsDebugScript.Tests.Native │ ├── CodeGenTests.cs │ ├── Cpp17Tests.cs │ ├── CsDebugScript.Tests.Native.csproj │ ├── CsDebugScript.Tests.Native.xunit.runner.json │ ├── DbgEngDllTests.cs │ ├── DebugControlTest.cs │ ├── DumpInitialization.cs │ ├── InteractiveModeTests.cs │ ├── NativeDumpTest.cs │ ├── PdbReaderTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ScriptExecutionTests.cs │ ├── UserTypeTests.cs │ └── WinDbgExtensionTests.cs ├── CsDebugScript.Tests.UI │ ├── Complex.cs │ ├── CsDebugScript.Tests.UI.csproj │ ├── CsDebugScript.Tests.UI.xunit.runner.json │ ├── InteractiveWindowFixture.cs │ ├── InteractiveWindowWrapper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Simple.cs │ ├── UiExecutionEntry.cs │ └── UiTestBase.cs ├── Tests_x64.runsettings └── Tests_x86.runsettings ├── Utility ├── CreateDbgEngIdl │ ├── CreateDbgEngIdl.csproj │ └── Program.cs ├── CsDebugScript.Reference │ ├── Content │ │ ├── VersionHistory │ │ │ ├── VersionHistory.aml │ │ │ ├── v1.0.0.1.aml │ │ │ ├── v1.0.0.2.aml │ │ │ ├── v1.0.0.3.aml │ │ │ ├── v1.1.aml │ │ │ └── v1.2.aml │ │ ├── Welcome.aml │ │ └── Wiki.aml │ ├── ContentLayout.content │ ├── CsDebugScript.Reference.Nugets.csproj │ ├── csDebugScript.Reference.shfbproj │ └── icons │ │ └── Help.png ├── ExceptionDumper │ ├── Debugger.cs │ ├── ExceptionDumper.csproj │ └── Program.cs └── ExceptionDumper32 │ ├── ExceptionDumper32.csproj │ └── Program.cs ├── VsdConfig.targets ├── WinDbgCs.sln ├── appveyor.yml ├── dumps └── download.ps1 ├── generatedumps ├── generatedumps.bat ├── license.txt ├── nuget.config ├── runtests.bat └── samples ├── export.xml ├── helper.csx ├── interactive.png ├── script.csx ├── ui1.png ├── ui2.png └── ui3.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/.travis.yml -------------------------------------------------------------------------------- /DisableMeOnCore.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/DisableMeOnCore.props -------------------------------------------------------------------------------- /DllExport.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/DllExport.props -------------------------------------------------------------------------------- /Documentation/Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/Build.md -------------------------------------------------------------------------------- /Documentation/CodeGen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/CodeGen.md -------------------------------------------------------------------------------- /Documentation/CommonUserTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/CommonUserTypes.md -------------------------------------------------------------------------------- /Documentation/Drawings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/Drawings.md -------------------------------------------------------------------------------- /Documentation/DumpProcessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/DumpProcessing.md -------------------------------------------------------------------------------- /Documentation/Images/VS_CvMat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/Images/VS_CvMat.png -------------------------------------------------------------------------------- /Documentation/Images/VS_Installation_VSIX_Gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/Images/VS_Installation_VSIX_Gallery.png -------------------------------------------------------------------------------- /Documentation/Images/VS_InteractiveMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/Images/VS_InteractiveMode.png -------------------------------------------------------------------------------- /Documentation/Images/VS_StdAny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/Images/VS_StdAny.png -------------------------------------------------------------------------------- /Documentation/Images/VS_StdAny_Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/Images/VS_StdAny_Original.png -------------------------------------------------------------------------------- /Documentation/InteractiveMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/InteractiveMode.md -------------------------------------------------------------------------------- /Documentation/Tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/Tutorials.md -------------------------------------------------------------------------------- /Documentation/UserTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/UserTypes.md -------------------------------------------------------------------------------- /Documentation/VisualStudioExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/VisualStudioExtension.md -------------------------------------------------------------------------------- /Documentation/WinDbgExtension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Documentation/WinDbgExtension.md -------------------------------------------------------------------------------- /External/Managed.Reflection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/External/Managed.Reflection.dll -------------------------------------------------------------------------------- /External/Managed.Reflection.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/External/Managed.Reflection.pdb -------------------------------------------------------------------------------- /External/Microsoft.Diagnostics.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/External/Microsoft.Diagnostics.Runtime.dll -------------------------------------------------------------------------------- /External/Microsoft.Diagnostics.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/External/Microsoft.Diagnostics.Runtime.pdb -------------------------------------------------------------------------------- /External/Microsoft.Diagnostics.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/External/Microsoft.Diagnostics.Runtime.xml -------------------------------------------------------------------------------- /GetShipFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/GetShipFiles.ps1 -------------------------------------------------------------------------------- /Properties/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Properties/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/README.md -------------------------------------------------------------------------------- /SharedAssemblyInfo.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/SharedAssemblyInfo.props -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdAppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdAppDomain.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdHeap.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdInstanceField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdInstanceField.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdModule.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdRuntime.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdStackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdStackFrame.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdStaticField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdStaticField.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdSymbolLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdSymbolLocator.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdThread.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/ClrMdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/ClrMdType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/CsDebugScript.ClrMdProvider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/CsDebugScript.ClrMdProvider.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/DataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/DataReader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.ClrMdProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.ClrMdProvider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen.App/CsDebugScript.CodeGen.App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen.App/CsDebugScript.CodeGen.App.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen.App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen.App/Program.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/CodeWriters/CSharpCodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/CodeWriters/CSharpCodeWriter.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/CodeWriters/DotNetCodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/CodeWriters/DotNetCodeWriter.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/CodeWriters/ICodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/CodeWriters/ICodeWriter.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/CodeWriters/ManagedILCodeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/CodeWriters/ManagedILCodeWriter.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/CsDebugScript.CodeGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/CsDebugScript.CodeGen.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/Generator.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/GlobalCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/GlobalCache.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/IndentedWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/IndentedWriter.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/NameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/NameHelper.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/NamespaceDoc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/DiaModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/DiaModule.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/DiaModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/DiaModuleProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/DiaSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/DiaSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/DiaSymbolField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/DiaSymbolField.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/EngineSymbolProviderModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/EngineSymbolProviderModule.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/EngineSymbolProviderSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/EngineSymbolProviderSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/FakePointerSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/FakePointerSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/IModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/IModuleProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/Module.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/Symbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/SymbolProviders/SymbolField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/SymbolProviders/SymbolField.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/ArrayTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/ArrayTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/BasicTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/BasicTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/EnumTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/EnumTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/FunctionTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/FunctionTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/PointerTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/PointerTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/StaticClassTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/StaticClassTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/TemplateArgumentTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/TemplateArgumentTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/TemplateTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/TemplateTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/TransformationTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/TransformationTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/TypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/TypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/UserTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/UserTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/TypeInstances/VariableTypeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/TypeInstances/VariableTypeInstance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypeFactory/TemplateUserTypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypeFactory/TemplateUserTypeFactory.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypeFactory/UserTypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypeFactory/UserTypeFactory.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypeGenerationFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypeGenerationFlags.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/AccessLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/AccessLevel.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/EnumUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/EnumUserType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/GlobalsUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/GlobalsUserType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/Members/ConstantUserTypeMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/Members/ConstantUserTypeMember.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/Members/DataFieldUserTypeMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/Members/DataFieldUserTypeMember.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/Members/UserTypeMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/Members/UserTypeMember.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/NamespaceUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/NamespaceUserType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/PhysicalUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/PhysicalUserType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/SpecializedTemplateUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/SpecializedTemplateUserType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/TemplateArgumentConstantUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/TemplateArgumentConstantUserType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/TemplateUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/TemplateUserType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/UserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/UserType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/UserTypeConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/UserTypeConstructor.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/UserTypes/UserTypeTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/UserTypes/UserTypeTransformation.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CodeGen/XmlConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CodeGen/XmlConfig.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/BitmapUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/BitmapUserType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/CLR/System/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/CLR/System/Exception.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/CLR/System/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/CLR/System/String.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/CsDebugScript.CommonUserTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/CsDebugScript.CommonUserTypes.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/DynamicSelf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/DynamicSelf.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/InvalidSymbolsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/InvalidSymbolsException.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/Windows/Heap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/Windows/Heap.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/cv/CvMat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/cv/CvMat.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/cv/ElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/cv/ElementType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/cv/Mat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/cv/Mat.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/cv/MatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/cv/MatType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/NamespaceDoc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/any.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/any.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/array.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/basic_string.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/basic_string.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/filesystem/path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/filesystem/path.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/list.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/list.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/map.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/optional.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/pair.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/shared_ptr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/shared_ptr.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/string.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/string.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/unordered_map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/unordered_map.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/variant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/variant.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/vector.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/weak_ptr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/weak_ptr.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/NativeTypes/std/wstring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/NativeTypes/std/wstring.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.CommonUserTypes/TypeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.CommonUserTypes/TypeSelector.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/CsDebugScript.DbgEng.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/CsDebugScript.DbgEng.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/DebugClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/DebugClient.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/DebugExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/DebugExecute.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/DebugModname.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/DebugModname.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/DebugScopeGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/DebugScopeGroup.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Defines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Defines.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugAttach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugAttach.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugAttachKernel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugAttachKernel.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugClass.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugConnectSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugConnectSession.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugCreateProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugCreateProcess.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugDump.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugDumpFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugDumpFile.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugEcreateProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugEcreateProcess.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugEnd.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugEvent.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugFormat.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugGetProc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugGetProc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugOutctl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugOutctl.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugOutput.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugProcDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugProcDesc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugProcess.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugRequest.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugServers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugServers.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugTypedDataFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/DebugTypedDataFlags.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/ExtTdf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/ExtTdf.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Enums/ExtTdop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Enums/ExtTdop.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugAdvanced2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugAdvanced2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugAdvanced3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugAdvanced3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugAdvanced4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugAdvanced4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugBreakpoint.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugBreakpoint2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugBreakpoint2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugBreakpoint3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugBreakpoint3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugControl.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugControl2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugControl2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugControl3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugControl3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugControl4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugControl4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugControl5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugControl5.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugControl6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugControl6.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugControl7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugControl7.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugDataSpaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugDataSpaces.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugDataSpaces2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugDataSpaces2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugDataSpaces3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugDataSpaces3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugDataSpaces4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugDataSpaces4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugEventCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugEventCallbacks.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugEventCallbacksWide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugEventCallbacksWide.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugEventContextCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugEventContextCallbacks.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugInputCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugInputCallbacks.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugOutputCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugOutputCallbacks.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugOutputCallbacks2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugOutputCallbacks2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugOutputCallbacksWide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugOutputCallbacksWide.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugOutputStream.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugPlmClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugPlmClient.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugPlmClient2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugPlmClient2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugPlmClient3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugPlmClient3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugRegisters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugRegisters.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugRegisters2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugRegisters2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbolGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbolGroup.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbolGroup2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbolGroup2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbols.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbols2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbols2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbols3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbols3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbols4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbols4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbols5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSymbols5.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSystemObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSystemObjects.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSystemObjects2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSystemObjects2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSystemObjects3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSystemObjects3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/IDebugSystemObjects4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/IDebugSystemObjects4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugAdvanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugAdvanced.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient5.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient6.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Interfaces/IDebugClient7.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugAdvanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugAdvanced.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugAdvanced2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugAdvanced2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugAdvanced3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugAdvanced3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugAdvanced4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugAdvanced4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugBreakpoint.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugBreakpoint2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugBreakpoint2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugBreakpoint3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugBreakpoint3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient5.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient6.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugClient7.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl5.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl6.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugControl7.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugDataSpaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugDataSpaces.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugDataSpaces2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugDataSpaces2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugDataSpaces3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugDataSpaces3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugDataSpaces4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugDataSpaces4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugEventCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugEventCallbacks.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugEventCallbacksWide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugEventCallbacksWide.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugInputCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugInputCallbacks.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugOutputCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugOutputCallbacks.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugOutputCallbacks2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugOutputCallbacks2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugOutputCallbacksWide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugOutputCallbacksWide.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugOutputStream.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugPlmClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugPlmClient.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugPlmClient2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugPlmClient2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugPlmClient3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugPlmClient3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugRegisters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugRegisters.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugRegisters2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugRegisters2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbolGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbolGroup.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbolGroup2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbolGroup2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbols.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbols2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbols2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbols3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbols3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbols4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbols4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbols5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSymbols5.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSystemObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSystemObjects.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSystemObjects2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSystemObjects2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSystemObjects3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSystemObjects3.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSystemObjects4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/NoExceptions/IDebugSystemObjects4.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Structs/DEBUG_CREATE_PROCESS_OPTIONS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Structs/DEBUG_CREATE_PROCESS_OPTIONS.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Structs/DEBUG_TYPED_DATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Structs/DEBUG_TYPED_DATA.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/Structs/EXT_TYPED_DATA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/Structs/EXT_TYPED_DATA.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_BREAKPOINT_PARAMETERS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_BREAKPOINT_PARAMETERS.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_CACHED_SYMBOL_INFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_CACHED_SYMBOL_INFO.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_CLIENT_CONTEXT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_CLIENT_CONTEXT.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_EVENT_CONTEXT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_EVENT_CONTEXT.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_EXCEPTION_FILTER_PARAMETERS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_EXCEPTION_FILTER_PARAMETERS.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_GET_TEXT_COMPLETIONS_IN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_GET_TEXT_COMPLETIONS_IN.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_GET_TEXT_COMPLETIONS_OUT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_GET_TEXT_COMPLETIONS_OUT.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_HANDLE_DATA_BASIC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_HANDLE_DATA_BASIC.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_BREAKPOINT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_BREAKPOINT.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_EXCEPTION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_EXCEPTION.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_EXIT_PROCESS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_EXIT_PROCESS.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_EXIT_THREAD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_EXIT_THREAD.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_LOAD_MODULE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_LOAD_MODULE.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_SYSTEM_ERROR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_SYSTEM_ERROR.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_UNLOAD_MODULE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_LAST_EVENT_INFO_UNLOAD_MODULE.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_MODULE_AND_ID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_MODULE_AND_ID.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_MODULE_PARAMETERS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_MODULE_PARAMETERS.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_OFFSET_REGION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_OFFSET_REGION.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_ALPHA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_ALPHA.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_AMD64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_AMD64.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_ARM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_ARM.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_ARM64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_ARM64.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_IA64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_IA64.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_X86.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_PROCESSOR_IDENTIFICATION_X86.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_READ_USER_MINIDUMP_STREAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_READ_USER_MINIDUMP_STREAM.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_REGISTER_DESCRIPTION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_REGISTER_DESCRIPTION.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_SPECIFIC_FILTER_PARAMETERS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_SPECIFIC_FILTER_PARAMETERS.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_STACK_FRAME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_STACK_FRAME.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_STACK_FRAME_EX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_STACK_FRAME_EX.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_SYMBOL_ENTRY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_SYMBOL_ENTRY.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_SYMBOL_PARAMETERS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_SYMBOL_PARAMETERS.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_SYMBOL_SOURCE_ENTRY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_SYMBOL_SOURCE_ENTRY.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_THREAD_BASIC_INFORMATION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_THREAD_BASIC_INFORMATION.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_VALUE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_DEBUG_VALUE.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_EXCEPTION_RECORD64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_EXCEPTION_RECORD64.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_IMAGE_DATA_DIRECTORY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_IMAGE_DATA_DIRECTORY.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_IMAGE_FILE_HEADER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_IMAGE_FILE_HEADER.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_IMAGE_NT_HEADERS64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_IMAGE_NT_HEADERS64.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_IMAGE_OPTIONAL_HEADER64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_IMAGE_OPTIONAL_HEADER64.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_MEMORY_BASIC_INFORMATION64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_MEMORY_BASIC_INFORMATION64.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_STACK_SRC_INFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_STACK_SRC_INFO.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_STACK_SYM_FRAME_INFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_STACK_SYM_FRAME_INFO.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_SYMBOL_INFO_EX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_SYMBOL_INFO_EX.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_WINDBG_EXTENSION_APIS32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_WINDBG_EXTENSION_APIS32.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/_WINDBG_EXTENSION_APIS64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/_WINDBG_EXTENSION_APIS64.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/__MIDL___MIDL_itf_output_0000_0000_0001.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/__MIDL___MIDL_itf_output_0000_0000_0001.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/__MIDL___MIDL_itf_output_0000_0000_0002.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/__MIDL___MIDL_itf_output_0000_0000_0002.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/__MIDL___MIDL_itf_output_0001_0083_0001.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/__MIDL___MIDL_itf_output_0001_0083_0001.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEng/__MIDL___MIDL_itf_output_0001_0083_0002.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEng/__MIDL___MIDL_itf_output_0001_0083_0002.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDll.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DbgEngBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DbgEngBreakpoint.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DbgEngSymbolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DbgEngSymbolProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DbgEngSymbolProviderModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DbgEngSymbolProviderModule.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DebugCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DebugCallbacks.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DebuggeFlowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DebuggeFlowController.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DebuggerOutputCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DebuggerOutputCapture.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DebuggerTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/DebuggerTextWriter.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/OutputCallbacksSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/OutputCallbacksSwitcher.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/ProcessSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/ProcessSwitcher.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/StackFrameSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/StackFrameSwitcher.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/StateCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/StateCache.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DbgEngDllHelpers/ThreadSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DbgEngDllHelpers/ThreadSwitcher.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DebugEventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DebugEventInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/DebuggerOutputToTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/DebuggerOutputToTextWriter.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/Native/DEBUG_LAST_EVENT_INFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/Native/DEBUG_LAST_EVENT_INFO.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/Native/DEBUG_MODULE_PARAMETERS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/Native/DEBUG_MODULE_PARAMETERS.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/Native/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/Native/Extensions.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/Native/ImageFileMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/Native/ImageFileMachine.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/Native/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/Native/NamespaceDoc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/OutputCallbacksSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/OutputCallbacksSwitcher.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DbgEng/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DbgEng/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DiaSymbolProvider/DIA/DiaHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DiaSymbolProvider/DIA/DiaHelpers.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DiaSymbolProvider/DIA/TypeToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DiaSymbolProvider/DIA/TypeToString.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DiaSymbolProvider/DiaModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DiaSymbolProvider/DiaModule.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DiaSymbolProvider/DiaSymbolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DiaSymbolProvider/DiaSymbolProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DiaSymbolProvider/IDiaSessionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DiaSymbolProvider/IDiaSessionProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DiaSymbolProvider/IRegistersAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DiaSymbolProvider/IRegistersAccess.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DiaSymbolProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DiaSymbolProvider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DiaSymbolProvider/WindowsDumpFileMemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DiaSymbolProvider/WindowsDumpFileMemoryReader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/Color.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/GraphicsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/GraphicsExtensions.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/IBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/IBitmap.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/IBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/IBrush.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/ICanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/ICanvas.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/ICircle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/ICircle.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/IDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/IDrawing.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/IDrawingVisualizerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/IDrawingVisualizerObject.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/IEllipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/IEllipse.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/IFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/IFont.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/IGraphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/IGraphics.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/ILine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/ILine.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/IPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/IPen.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/IRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/IRectangle.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/ISolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/ISolidColorBrush.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Drawing.Interfaces/IText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Drawing.Interfaces/IText.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfAttributeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfAttributeValue.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfCodeGenModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfCodeGenModuleProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfCommonInformationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfCommonInformationEntry.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfCompilationUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfCompilationUnit.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfEnums.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfFileInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfFileInformation.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfFrameDescriptionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfFrameDescriptionEntry.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfLineInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfLineInformation.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfLineNumberProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfLineNumberProgram.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfMemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfMemoryReader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfSymbolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfSymbolProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/DwarfSymbolProviderModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/DwarfSymbolProviderModule.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/ElfCoreDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/ElfCoreDump.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/ElfCoreDumpDebuggingEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/ElfCoreDumpDebuggingEngine.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/ElfImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/ElfImage.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/IDwarfImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/IDwarfImage.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/PeImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/PeImage.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.DwarfSymbolProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.DwarfSymbolProvider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/BaseClassesArrayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/BaseClassesArrayAttribute.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/BasicType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/BasicType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/BreakpointSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/BreakpointSpec.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/ClrElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/ClrElementType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/IClrAppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/IClrAppDomain.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/IClrHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/IClrHeap.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/IClrInstanceField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/IClrInstanceField.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/IClrModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/IClrModule.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/IClrProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/IClrProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/IClrRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/IClrRuntime.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/IClrStackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/IClrStackFrame.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/IClrStaticField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/IClrStaticField.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/IClrThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/IClrThread.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/IClrType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/IClrType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CLR/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CLR/NamespaceDoc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CodeArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CodeArray.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CodeFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CodeFunction.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CodePointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CodePointer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CodeType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/CsDebugScript.Engine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/CsDebugScript.Engine.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Debugger.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/DerivedClassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/DerivedClassAttribute.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/ArchitectureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/ArchitectureType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/BuiltinType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/BuiltinType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/CodeTypeTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/CodeTypeTag.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Constants.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Context.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/GlobalCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/GlobalCache.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/IDebuggerEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/IDebuggerEngine.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/ILGeneratorHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/ILGeneratorHelpers.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/ISymbolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/ISymbolProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/ISymbolProviderModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/ISymbolProviderModule.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Marshaling/MarshalArrayReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Marshaling/MarshalArrayReader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Marshaling/MarshalStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Marshaling/MarshalStructure.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Marshaling/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Marshaling/NamespaceDoc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/NamespaceDoc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Native/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Native/NativeMethods.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/SymbolProviders/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/SymbolProviders/NamespaceDoc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/UserTypeDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/UserTypeDelegates.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/UserTypeMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/UserTypeMetadata.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Utility/ArrayCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Utility/ArrayCache.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Utility/CacheInvalidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Utility/CacheInvalidator.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Utility/DictionaryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Utility/DictionaryCache.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Utility/DumpFileMemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Utility/DumpFileMemoryReader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Utility/MemoryBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Utility/MemoryBuffer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Utility/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Utility/NamespaceDoc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Engine/Utility/SimpleCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Engine/Utility/SimpleCache.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Exceptions/InvalidMemoryAddressException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Exceptions/InvalidMemoryAddressException.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Exceptions/NoSymbolWithGivenNameFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Exceptions/NoSymbolWithGivenNameFound.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Exceptions/NotAllMemoryCanBeReadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Exceptions/NotAllMemoryCanBeReadException.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Exceptions/WrongCodeTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Exceptions/WrongCodeTypeException.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/ForceDefaultVisualizerAtttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/ForceDefaultVisualizerAtttribute.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/IBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/IBreakpoint.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/ICastableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/ICastableObject.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/IMultiClassInheritance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/IMultiClassInheritance.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/MemoryRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/MemoryRegion.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Module.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/NakedPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/NakedPointer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/NamespaceDoc.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Process.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/ScriptBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/ScriptBase.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/StackFrame.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/StackTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/StackTrace.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/TemplateConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/TemplateConstant.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Thread.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/ThreadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/ThreadContext.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/UserMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/UserMember.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/UserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/UserType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/UserTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/UserTypeAttribute.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/Variable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/Variable.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/VariableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/VariableCollection.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Engine/VoidType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Engine/VoidType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/CoffSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/CoffSection.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/DbiBuildNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/DbiBuildNumber.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/DbiFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/DbiFlags.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/DbiModuleDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/DbiModuleDescriptor.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/DbiModuleList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/DbiModuleList.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/DbiSectionContributionVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/DbiSectionContributionVersion.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/DbiStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/DbiStream.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/DbiStreamHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/DbiStreamHeader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/DbiStreamVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/DbiStreamVersion.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/FpoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/FpoData.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/ImageSectionCharacteristics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/ImageSectionCharacteristics.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/KnownDebugStreamIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/KnownDebugStreamIndex.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/ModuleInfoFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/ModuleInfoFlags.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/ModuleInfoHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/ModuleInfoHeader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/OMFSegmentDescriptionFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/OMFSegmentDescriptionFlags.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/PdbMachineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/PdbMachineType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/SectionContributionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/SectionContributionEntry.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/SectionContributionEntry2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/SectionContributionEntry2.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/DBI/SectionMapEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/DBI/SectionMapEntry.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/HashTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/HashTable.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/MSF/SuperBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/MSF/SuperBlock.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/PDBFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/PDBFile.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/PdbGlobalScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/PdbGlobalScope.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/PdbModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/PdbModule.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/PdbModuleProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/PdbModuleProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/PdbStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/PdbStream.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/PdbStringTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/PdbStringTable.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/PdbSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/PdbSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/PdbSymbolField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/PdbSymbolField.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/RecordPrefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/RecordPrefix.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SimpleTypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SimpleTypeKind.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SimpleTypeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SimpleTypeMode.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SpecialStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SpecialStream.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/CoffGroupSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/CoffGroupSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/ConstantSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/ConstantSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/DataSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/DataSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/ProcedureFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/ProcedureFlags.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/ProcedureSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/ProcedureSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/Public32Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/Public32Symbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/PublicSymbolFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/PublicSymbolFlags.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/SectionSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/SectionSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/SymbolRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/SymbolRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/SymbolRecordKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/SymbolRecordKind.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/Thunk32Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/Thunk32Symbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/ThunkOrdinal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/ThunkOrdinal.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/TrampolineSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/TrampolineSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/TrampolineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/TrampolineType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/UdtSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolRecords/UdtSymbol.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/SymbolStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/SymbolStream.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TPI/PdbTpiVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TPI/PdbTpiVersion.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TPI/TpiStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TPI/TpiStream.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TPI/TpiStreamHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TPI/TpiStreamHeader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TPI/TypeIndexOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TPI/TypeIndexOffset.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeIndex.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ArgumentListRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ArgumentListRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ArrayRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ArrayRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/BaseClassRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/BaseClassRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/BitFieldRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/BitFieldRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/BuildInfoRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/BuildInfoRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/CallingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/CallingConvention.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ClassOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ClassOptions.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ClassRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ClassRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/DataMemberRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/DataMemberRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/EnumRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/EnumRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/EnumeratorRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/EnumeratorRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/FieldListRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/FieldListRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/FunctionIdRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/FunctionIdRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/FunctionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/FunctionOptions.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/HfaKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/HfaKind.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/LabelRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/LabelRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/LabelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/LabelType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MemberAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MemberAccess.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MemberAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MemberAttributes.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MemberFunctionRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MemberFunctionRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MemberPointerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MemberPointerInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MethodKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MethodKind.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MethodOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/MethodOptions.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ModifierOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ModifierOptions.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ModifierRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ModifierRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/NestedTypeRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/NestedTypeRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/OneMethodRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/OneMethodRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/PointerKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/PointerKind.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/PointerMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/PointerMode.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/PointerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/PointerOptions.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/PointerRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/PointerRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ProcedureRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/ProcedureRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/StringIdRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/StringIdRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/StringListRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/StringListRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/TagRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/TagRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/TypeLeafKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/TypeLeafKind.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/TypeRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/TypeRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/UnionRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/UnionRecord.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/TypeRecords/WindowsRTClassKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/TypeRecords/WindowsRTClassKind.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/Utility/BinaryReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/Utility/BinaryReaderExtensions.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/Utility/BinarySubstreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/Utility/BinarySubstreamReader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/Utility/IBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/Utility/IBinaryReader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/Utility/MMFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/Utility/MMFile.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/Utility/MMFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/Utility/MMFileReader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.PdbSymbolProvider/Utility/MappedBlockBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.PdbSymbolProvider/Utility/MappedBlockBinaryReader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Scripting/CsDebugScript.Scripting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Scripting/CsDebugScript.Scripting.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.Scripting/InteractiveExecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Scripting/InteractiveExecution.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Scripting/InteractiveExecutionInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Scripting/InteractiveExecutionInitialization.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Scripting/InteractiveScriptBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Scripting/InteractiveScriptBase.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Scripting/ObjectWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Scripting/ObjectWriter.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Scripting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Scripting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Scripting/ScriptCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Scripting/ScriptCompiler.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.Scripting/ScriptExecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.Scripting/ScriptExecution.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI.App/CsDebugScript.UI.App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI.App/CsDebugScript.UI.App.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.UI.App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI.App/Program.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/CodeWindow/CompletionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/CodeWindow/CompletionData.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/CodeWindow/CompletionDataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/CodeWindow/CompletionDataFactory.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/CodeWindow/CompletionDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/CodeWindow/CompletionDataType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/CodeWindow/CsTextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/CodeWindow/CsTextEditor.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/CodeWindow/EntityWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/CodeWindow/EntityWrapper.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/CodeWindow/ParameterCompletionDataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/CodeWindow/ParameterCompletionDataFactory.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/CodeWindow/ParameterDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/CodeWindow/ParameterDataProvider.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/CsDebugScript.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/CsDebugScript.UI.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Bitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Bitmap.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Brush.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Canvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Canvas.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Circle.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Drawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Drawing.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Ellipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Ellipse.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Extensions.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Font.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Graphics.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Line.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Pen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Pen.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Rectangle.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/SolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/SolidColorBrush.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Drawing/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Drawing/Text.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/DrawingViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/DrawingViewer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Icons/Class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Icons/Class.png -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Icons/Enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Icons/Enum.png -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Icons/EnumValue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Icons/EnumValue.png -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Icons/Event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Icons/Event.png -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Icons/Keyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Icons/Keyword.png -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Icons/Method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Icons/Method.png -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Icons/Namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Icons/Namespace.png -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Icons/Property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Icons/Property.png -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Icons/Variable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Icons/Variable.png -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/InteractiveCodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/InteractiveCodeEditor.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/InteractiveResultVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/InteractiveResultVisualizer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/InteractiveWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/InteractiveWindow.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/InteractiveWindowContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/InteractiveWindowContent.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/ResultVisualizers/ArrayResultVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/ResultVisualizers/ArrayResultVisualizer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/ResultVisualizers/CustomObjectResultVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/ResultVisualizers/CustomObjectResultVisualizer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/ResultVisualizers/DictionaryResultVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/ResultVisualizers/DictionaryResultVisualizer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/ResultVisualizers/GroupResultVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/ResultVisualizers/GroupResultVisualizer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/ResultVisualizers/IResultVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/ResultVisualizers/IResultVisualizer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/ResultVisualizers/ObjectResultVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/ResultVisualizers/ObjectResultVisualizer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/ResultVisualizers/ResultVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/ResultVisualizers/ResultVisualizer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.UI/ResultVisualizers/VariableResultVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.UI/ResultVisualizers/VariableResultVisualizer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS.DPE/ClrMdDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS.DPE/ClrMdDataReader.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS.DPE/CsDebugScript.VS.DPE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS.DPE/CsDebugScript.VS.DPE.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.VS.DPE/MessageReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS.DPE/MessageReceiver.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS.DPE/MessageSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS.DPE/MessageSerializer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS.DPE/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS.DPE/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CLR/VSClrAppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CLR/VSClrAppDomain.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CLR/VSClrHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CLR/VSClrHeap.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CLR/VSClrInstanceField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CLR/VSClrInstanceField.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CLR/VSClrModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CLR/VSClrModule.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CLR/VSClrRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CLR/VSClrRuntime.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CLR/VSClrStackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CLR/VSClrStackFrame.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CLR/VSClrStaticField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CLR/VSClrStaticField.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CLR/VSClrThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CLR/VSClrThread.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CLR/VSClrType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CLR/VSClrType.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CsDebugScript.VS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CsDebugScript.VS.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/CsDebugScript.VS.csproj.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/CsDebugScript.VS.csproj.simple -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/Resources/VSInteractiveWindowCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/Resources/VSInteractiveWindowCommand.png -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/Resources/VSInteractiveWindowPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/Resources/VSInteractiveWindowPackage.ico -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VS.DPE.vsdconfigxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VS.DPE.vsdconfigxml -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VS.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VS.natvis -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VS.vsdconfigxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VS.vsdconfigxml -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSContext.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSCustomVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSCustomVisualizer.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSCustomVisualizerEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSCustomVisualizerEvaluator.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSDebugger.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSDebuggerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSDebuggerProxy.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSInteractiveWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSInteractiveWindow.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSInteractiveWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSInteractiveWindowCommand.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSInteractiveWindowControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSInteractiveWindowControl.xaml -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSInteractiveWindowControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSInteractiveWindowControl.xaml.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSInteractiveWindowPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSInteractiveWindowPackage.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSInteractiveWindowPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSInteractiveWindowPackage.vsct -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSPackage.resx -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/VSUIVisualizerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/VSUIVisualizerService.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/app.config -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/packages.config -------------------------------------------------------------------------------- /Source/CsDebugScript.VS/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.VS/source.extension.vsixmanifest -------------------------------------------------------------------------------- /Source/CsDebugScript.WinDbg/Source/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.WinDbg/Source/Extension.cs -------------------------------------------------------------------------------- /Source/CsDebugScript.WinDbg/x64proj/CsDebugScript.WinDbg.x64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.WinDbg/x64proj/CsDebugScript.WinDbg.x64.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript.WinDbg/x86proj/CsDebugScript.WinDbg.x86.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript.WinDbg/x86proj/CsDebugScript.WinDbg.x86.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript/CsDebugScript.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript/CsDebugScript.csproj -------------------------------------------------------------------------------- /Source/CsDebugScript/DebuggerInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/CsDebugScript/DebuggerInitialization.cs -------------------------------------------------------------------------------- /Source/DebugCmdlets/DebugCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/DebugCmdlets/DebugCmdlets.cs -------------------------------------------------------------------------------- /Source/DebugCmdlets/DebugCmdlets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/DebugCmdlets/DebugCmdlets.csproj -------------------------------------------------------------------------------- /Source/PadAnalyzer/Dia2Lib140.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/Dia2Lib140.manifest -------------------------------------------------------------------------------- /Source/PadAnalyzer/PadAnalyzer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/PadAnalyzer.Designer.cs -------------------------------------------------------------------------------- /Source/PadAnalyzer/PadAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/PadAnalyzer.cs -------------------------------------------------------------------------------- /Source/PadAnalyzer/PadAnalyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/PadAnalyzer.csproj -------------------------------------------------------------------------------- /Source/PadAnalyzer/PadAnalyzer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/PadAnalyzer.resx -------------------------------------------------------------------------------- /Source/PadAnalyzer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/Program.cs -------------------------------------------------------------------------------- /Source/PadAnalyzer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/PadAnalyzer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/PadAnalyzer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/PadAnalyzer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Source/PadAnalyzer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/Properties/Settings.settings -------------------------------------------------------------------------------- /Source/PadAnalyzer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/app.config -------------------------------------------------------------------------------- /Source/PadAnalyzer/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/app.manifest -------------------------------------------------------------------------------- /Source/PadAnalyzer/msdia140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/msdia140.dll -------------------------------------------------------------------------------- /Source/PadAnalyzer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Source/PadAnalyzer/packages.config -------------------------------------------------------------------------------- /Tests/CsDebugScript.Engine.Test/CsDebugScript.Engine.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Engine.Test/CsDebugScript.Engine.Test.csproj -------------------------------------------------------------------------------- /Tests/CsDebugScript.Engine.Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Engine.Test/Program.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/AppDomainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/AppDomainTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/ClrDumpInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/ClrDumpInitialization.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/CsDebugScript.Tests.CLR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/CsDebugScript.Tests.CLR.csproj -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/CsDebugScript.Tests.CLR.xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/CsDebugScript.Tests.CLR.xunit.runner.json -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/DataReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/DataReaderTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/ExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/ExceptionTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/HeapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/HeapTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/ModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/ModuleTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/StackTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/StackTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/TypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/TypeTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.CLR/ValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.CLR/ValueTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/CsDebugScript.Tests.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/CsDebugScript.Tests.Common.csproj -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/DumpInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/DumpInitialization.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/SkipTestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/SkipTestException.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/SkippableFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/SkippableFactAttribute.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/SkippableFactDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/SkippableFactDiscoverer.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/SkippableFactMessageBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/SkippableFactMessageBus.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/SkippableFactTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/SkippableFactTestCase.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/SkippableTheoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/SkippableTheoryAttribute.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/SkippableTheoryDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/SkippableTheoryDiscoverer.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/SkippableTheoryTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/SkippableTheoryTestCase.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Common/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Common/TestBase.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/CodeGenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/CodeGenTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/Cpp17Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/Cpp17Tests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/CsDebugScript.Tests.Native.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/CsDebugScript.Tests.Native.csproj -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/DbgEngDllTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/DbgEngDllTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/DebugControlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/DebugControlTest.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/DumpInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/DumpInitialization.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/InteractiveModeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/InteractiveModeTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/NativeDumpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/NativeDumpTest.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/PdbReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/PdbReaderTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/ScriptExecutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/ScriptExecutionTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/UserTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/UserTypeTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.Native/WinDbgExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.Native/WinDbgExtensionTests.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.UI/Complex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.UI/Complex.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.UI/CsDebugScript.Tests.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.UI/CsDebugScript.Tests.UI.csproj -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.UI/CsDebugScript.Tests.UI.xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.UI/CsDebugScript.Tests.UI.xunit.runner.json -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.UI/InteractiveWindowFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.UI/InteractiveWindowFixture.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.UI/InteractiveWindowWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.UI/InteractiveWindowWrapper.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.UI/Simple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.UI/Simple.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.UI/UiExecutionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.UI/UiExecutionEntry.cs -------------------------------------------------------------------------------- /Tests/CsDebugScript.Tests.UI/UiTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/CsDebugScript.Tests.UI/UiTestBase.cs -------------------------------------------------------------------------------- /Tests/Tests_x64.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/Tests_x64.runsettings -------------------------------------------------------------------------------- /Tests/Tests_x86.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Tests/Tests_x86.runsettings -------------------------------------------------------------------------------- /Utility/CreateDbgEngIdl/CreateDbgEngIdl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CreateDbgEngIdl/CreateDbgEngIdl.csproj -------------------------------------------------------------------------------- /Utility/CreateDbgEngIdl/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CreateDbgEngIdl/Program.cs -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/Content/VersionHistory/VersionHistory.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/Content/VersionHistory/VersionHistory.aml -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/Content/VersionHistory/v1.0.0.1.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/Content/VersionHistory/v1.0.0.1.aml -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/Content/VersionHistory/v1.0.0.2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/Content/VersionHistory/v1.0.0.2.aml -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/Content/VersionHistory/v1.0.0.3.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/Content/VersionHistory/v1.0.0.3.aml -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/Content/VersionHistory/v1.1.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/Content/VersionHistory/v1.1.aml -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/Content/VersionHistory/v1.2.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/Content/VersionHistory/v1.2.aml -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/Content/Welcome.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/Content/Welcome.aml -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/Content/Wiki.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/Content/Wiki.aml -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/ContentLayout.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/ContentLayout.content -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/CsDebugScript.Reference.Nugets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/CsDebugScript.Reference.Nugets.csproj -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/csDebugScript.Reference.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/csDebugScript.Reference.shfbproj -------------------------------------------------------------------------------- /Utility/CsDebugScript.Reference/icons/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/CsDebugScript.Reference/icons/Help.png -------------------------------------------------------------------------------- /Utility/ExceptionDumper/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/ExceptionDumper/Debugger.cs -------------------------------------------------------------------------------- /Utility/ExceptionDumper/ExceptionDumper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/ExceptionDumper/ExceptionDumper.csproj -------------------------------------------------------------------------------- /Utility/ExceptionDumper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/ExceptionDumper/Program.cs -------------------------------------------------------------------------------- /Utility/ExceptionDumper32/ExceptionDumper32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/ExceptionDumper32/ExceptionDumper32.csproj -------------------------------------------------------------------------------- /Utility/ExceptionDumper32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/Utility/ExceptionDumper32/Program.cs -------------------------------------------------------------------------------- /VsdConfig.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/VsdConfig.targets -------------------------------------------------------------------------------- /WinDbgCs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/WinDbgCs.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/appveyor.yml -------------------------------------------------------------------------------- /dumps/download.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/dumps/download.ps1 -------------------------------------------------------------------------------- /generatedumps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/generatedumps -------------------------------------------------------------------------------- /generatedumps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/generatedumps.bat -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/license.txt -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/nuget.config -------------------------------------------------------------------------------- /runtests.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/runtests.bat -------------------------------------------------------------------------------- /samples/export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/samples/export.xml -------------------------------------------------------------------------------- /samples/helper.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/samples/helper.csx -------------------------------------------------------------------------------- /samples/interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/samples/interactive.png -------------------------------------------------------------------------------- /samples/script.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/samples/script.csx -------------------------------------------------------------------------------- /samples/ui1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/samples/ui1.png -------------------------------------------------------------------------------- /samples/ui2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/samples/ui2.png -------------------------------------------------------------------------------- /samples/ui3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdev0/PadAnalyzer/HEAD/samples/ui3.png --------------------------------------------------------------------------------