├── .editorconfig ├── .gitattributes ├── .github └── CODEOWNERS.TXT ├── .gitignore ├── Build.cmd ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE ├── Microsoft.Diagnostics.Runtime.sln ├── NuGet.config ├── README.md ├── Restore.cmd ├── SECURITY.md ├── Test.cmd ├── azure-pipelines-external.yml ├── azure-pipelines-internal.yml ├── doc ├── FAQ.md ├── GettingStarted.md ├── Migrating21.md ├── ReleaseNotes2.0.md ├── ReleaseNotes3.0.md └── ReleaseNotes3.1.md ├── eng ├── Coverage.targets ├── Microsoft.Diagnostics.Runtime.snk ├── Publishing.props ├── Signing.props.old ├── Version.Details.xml ├── Versions.props └── common │ ├── BuildConfiguration │ └── build-configuration.json │ ├── CIBuild.cmd │ ├── PSScriptAnalyzerSettings.psd1 │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── cross │ ├── arm │ │ ├── sources.list.bionic │ │ ├── sources.list.jessie │ │ ├── sources.list.xenial │ │ └── sources.list.zesty │ ├── arm64 │ │ ├── sources.list.bionic │ │ ├── sources.list.buster │ │ ├── sources.list.stretch │ │ ├── sources.list.xenial │ │ └── sources.list.zesty │ ├── armel │ │ ├── armel.jessie.patch │ │ ├── sources.list.jessie │ │ └── tizen │ │ │ └── tizen.patch │ ├── armv6 │ │ └── sources.list.buster │ ├── build-android-rootfs.sh │ ├── build-rootfs.sh │ ├── ppc64le │ │ └── sources.list.bionic │ ├── riscv64 │ │ └── sources.list.sid │ ├── s390x │ │ └── sources.list.bionic │ ├── tizen-build-rootfs.sh │ ├── tizen-fetch.sh │ └── toolchain.cmake │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-locproject.ps1 │ ├── generate-sbom-prep.ps1 │ ├── generate-sbom-prep.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ ├── Directory.Build.props │ ├── NuGet.config │ └── Tools.csproj │ ├── loc │ └── P22DotNetHtmlLocalization.lss │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ ├── CommonLibrary.psm1 │ ├── common-library.sh │ ├── init-compiler.sh │ ├── init-distro-rid.sh │ ├── init-os-and-arch.sh │ ├── install-cmake-test.sh │ ├── install-cmake.sh │ └── install-tool.ps1 │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ ├── add-build-to-channel.ps1 │ ├── check-channel-consistency.ps1 │ ├── nuget-validation.ps1 │ ├── post-build-utils.ps1 │ ├── publish-using-darc.ps1 │ ├── sourcelink-validation.ps1 │ ├── symbols-validation.ps1 │ └── trigger-subscriptions.ps1 │ ├── retain-build.ps1 │ ├── sdk-task.ps1 │ ├── sdl │ ├── NuGet.config │ ├── configure-sdl-tool.ps1 │ ├── execute-all-sdl-tools.ps1 │ ├── extract-artifact-archives.ps1 │ ├── extract-artifact-packages.ps1 │ ├── init-sdl.ps1 │ ├── packages.config │ ├── run-sdl.ps1 │ ├── sdl.ps1 │ └── trim-assets-version.ps1 │ ├── templates-official │ ├── job │ │ ├── job.yml │ │ ├── onelocbuild.yml │ │ ├── publish-build-assets.yml │ │ ├── source-build.yml │ │ └── source-index-stage1.yml │ ├── jobs │ │ ├── codeql-build.yml │ │ ├── jobs.yml │ │ └── source-build.yml │ ├── post-build │ │ ├── common-variables.yml │ │ ├── post-build.yml │ │ ├── setup-maestro-vars.yml │ │ └── trigger-subscription.yml │ ├── steps │ │ ├── add-build-to-channel.yml │ │ ├── build-reason.yml │ │ ├── component-governance.yml │ │ ├── enable-internal-runtimes.yml │ │ ├── execute-codeql.yml │ │ ├── execute-sdl.yml │ │ ├── generate-sbom.yml │ │ ├── get-delegation-sas.yml │ │ ├── get-federated-access-token.yml │ │ ├── publish-logs.yml │ │ ├── retain-build.yml │ │ ├── send-to-helix.yml │ │ └── source-build.yml │ └── variables │ │ ├── pool-providers.yml │ │ └── sdl-variables.yml │ ├── templates │ ├── job │ │ ├── execute-sdl.yml │ │ ├── job.yml │ │ ├── onelocbuild.yml │ │ ├── publish-build-assets.yml │ │ ├── source-build.yml │ │ └── source-index-stage1.yml │ ├── jobs │ │ ├── codeql-build.yml │ │ ├── jobs.yml │ │ └── source-build.yml │ ├── post-build │ │ ├── common-variables.yml │ │ ├── post-build.yml │ │ ├── setup-maestro-vars.yml │ │ └── trigger-subscription.yml │ ├── steps │ │ ├── add-build-to-channel.yml │ │ ├── build-reason.yml │ │ ├── component-governance.yml │ │ ├── enable-internal-runtimes.yml │ │ ├── execute-codeql.yml │ │ ├── execute-sdl.yml │ │ ├── generate-sbom.yml │ │ ├── get-delegation-sas.yml │ │ ├── get-federated-access-token.yml │ │ ├── publish-logs.yml │ │ ├── retain-build.yml │ │ ├── run-on-unix.yml │ │ ├── run-on-windows.yml │ │ ├── run-script-ifequalelse.yml │ │ ├── send-to-helix.yml │ │ ├── source-build.yml │ │ ├── telemetry-end.yml │ │ └── telemetry-start.yml │ └── variables │ │ ├── pool-providers.yml │ │ └── sdl-variables.yml │ ├── tools.ps1 │ └── tools.sh ├── es-metadata.yml ├── global.json ├── restore.sh ├── src ├── Benchmarks │ ├── AweHelpers.cs │ ├── BenchmarkSwitches.cs │ ├── Benchmarks.csproj │ ├── HeapBenchmarks.cs │ ├── ParallelHeapBenchmarks.cs │ ├── ParallelThreadRunner.cs │ └── Program.cs ├── LongRunningTests │ └── ParallelStressTest │ │ ├── App.config │ │ ├── ParallelStressTest.csproj │ │ ├── Program.cs │ │ └── Properties │ │ └── AssemblyInfo.cs ├── Microsoft.Diagnostics.Runtime.Tests │ ├── InterfaceEqualityTests.cs │ ├── License-Stable.rtf │ ├── Microsoft.Diagnostics.Runtime.Tests.csproj │ ├── Properties │ │ └── launchSettings.json │ └── src │ │ ├── AppDomainTests.cs │ │ ├── Attributes │ │ ├── CoreFactAttribute.cs │ │ ├── FrameworkFactAttribute.cs │ │ ├── LinuxFactAttribute.cs │ │ └── WindowsFactAttribute.cs │ │ ├── BasicArrayTests.cs │ │ ├── ByReferenceTests.cs │ │ ├── CacheOptionsTest.cs │ │ ├── ClrDelegateTests.cs │ │ ├── ClrObjectTests.cs │ │ ├── CrossOSTest.cs │ │ ├── DACNameParserTests.cs │ │ ├── DataTargetTests.cs │ │ ├── DumpInfoProviderTests.cs │ │ ├── ExceptionTests.cs │ │ ├── FieldTests.cs │ │ ├── FileLocatorTests.cs │ │ ├── FinalizationQueueTests.cs │ │ ├── Fixtures │ │ ├── ArrayConnection.cs │ │ ├── ClrObjectConnection.cs │ │ └── ObjectConnection.cs │ │ ├── GCHandleTests.cs │ │ ├── GCRootTests.cs │ │ ├── HeapTests.cs │ │ ├── Helpers.cs │ │ ├── MemoryReaderTests.cs │ │ ├── MethodTests.cs │ │ ├── MinidumpTests.cs │ │ ├── ModuleTests.cs │ │ ├── NativeHeapTests.cs │ │ ├── NullBinaryLocator.cs │ │ ├── PEImagePdbTests.cs │ │ ├── PEImageResourceTests.cs │ │ ├── PdbTests.cs │ │ ├── RuntimeTests.cs │ │ ├── StackTest.cs │ │ ├── StaticFieldTests.cs │ │ ├── SymbolGroupTests.cs │ │ ├── TestTargets.cs │ │ ├── ThreadReaderTests.cs │ │ ├── TypeTests.cs │ │ └── VerifyHeapTests.cs ├── Microsoft.Diagnostics.Runtime.Utilities │ ├── ClrRuntimeInitFailure.cs │ ├── DbgEng │ │ ├── DbgEngCommand.cs │ │ ├── DbgEngIDataReader.cs │ │ ├── DbgEngOutputHolder.cs │ │ ├── DbgEngOutputStream.cs │ │ ├── ExtensionContext.cs │ │ ├── IDebugAdvanced.cs │ │ ├── IDebugClient.cs │ │ ├── IDebugControl.cs │ │ ├── IDebugDataSpaces.cs │ │ ├── IDebugEventCallbacks.cs │ │ ├── IDebugOutputCallbacks.cs │ │ ├── IDebugSymbols.cs │ │ ├── IDebugSystemObjects.cs │ │ ├── NativeMethods.cs │ │ ├── Structs │ │ │ ├── DEBUG_ATTACH.cs │ │ │ ├── DEBUG_CDS.cs │ │ │ ├── DEBUG_CES.cs │ │ │ ├── DEBUG_CREATE_PROCESS.cs │ │ │ ├── DEBUG_CREATE_PROCESS_OPTIONS.cs │ │ │ ├── DEBUG_CSS.cs │ │ │ ├── DEBUG_DUMP.cs │ │ │ ├── DEBUG_ECREATE_PROCESS.cs │ │ │ ├── DEBUG_END.cs │ │ │ ├── DEBUG_ENGOPT.cs │ │ │ ├── DEBUG_EVENT.cs │ │ │ ├── DEBUG_EXECUTE.cs │ │ │ ├── DEBUG_FORMAT.cs │ │ │ ├── DEBUG_LAST_EVENT_INFO_EXCEPTION .cs │ │ │ ├── DEBUG_MODNAME.cs │ │ │ ├── DEBUG_MODULE.cs │ │ │ ├── DEBUG_MODULE_PARAMETERS.cs │ │ │ ├── DEBUG_OUTCBF.cs │ │ │ ├── DEBUG_OUTCBI.cs │ │ │ ├── DEBUG_OUTCTL.cs │ │ │ ├── DEBUG_OUTPUT.cs │ │ │ ├── DEBUG_READ_USER_MINIDUMP_STREAM.cs │ │ │ ├── DEBUG_REQUEST.cs │ │ │ ├── DEBUG_SESSION.cs │ │ │ ├── DEBUG_STACK_FRAME_EX.cs │ │ │ ├── DEBUG_STATUS.cs │ │ │ ├── DEBUG_SYMTYPE.cs │ │ │ ├── EXCEPTION_RECORD64.cs │ │ │ └── MINIDUMP_STREAM_TYPE .cs │ │ └── Wrappers │ │ │ ├── DbgEngCom.cs │ │ │ ├── DbgEngWrapper.cs │ │ │ ├── IDbgInterfaceProvider.cs │ │ │ ├── IDebugAdvancedVtable.cs │ │ │ ├── IDebugAdvancedWrapper.cs │ │ │ ├── IDebugClientVtable.cs │ │ │ ├── IDebugClientWrapper.cs │ │ │ ├── IDebugControlVtable.cs │ │ │ ├── IDebugControlWrapper.cs │ │ │ ├── IDebugDataSpacesVtable.cs │ │ │ ├── IDebugDataSpacesWrapper.cs │ │ │ ├── IDebugSymbolsVtable.cs │ │ │ ├── IDebugSymbolsWrapper.cs │ │ │ ├── IDebugSystemObjectsVtable.cs │ │ │ └── IDebugSystemObjectsWrapper.cs │ ├── Microsoft.Diagnostics.Runtime.Utilities.csproj │ └── readme.md ├── Microsoft.Diagnostics.Runtime │ ├── AbstractDac │ │ ├── IAbstractClrNativeHeaps.cs │ │ ├── IAbstractComHelpers.cs │ │ ├── IAbstractDacController.cs │ │ ├── IAbstractHeap.cs │ │ ├── IAbstractLegacyThreadPool.cs │ │ ├── IAbstractMetadataReader.cs │ │ ├── IAbstractMethodLocator.cs │ │ ├── IAbstractModuleHelpers.cs │ │ ├── IAbstractRuntime.cs │ │ ├── IAbstractThreadHelpers.cs │ │ └── IAbstractTypeHelpers.cs │ ├── CacheOptions.cs │ ├── ClrAppDomain.cs │ ├── ClrArray.cs │ ├── ClrDelegate.cs │ ├── ClrDelegateTarget.cs │ ├── ClrDiagnosticsException.cs │ ├── ClrElementType.cs │ ├── ClrEnum.cs │ ├── ClrException.cs │ ├── ClrField.cs │ ├── ClrFlavor.cs │ ├── ClrGenerationData.cs │ ├── ClrGenericParameter.cs │ ├── ClrHandle.cs │ ├── ClrHandleKind.cs │ ├── ClrHeap.cs │ ├── ClrInfo.cs │ ├── ClrInstanceField.cs │ ├── ClrInterface.cs │ ├── ClrJitManager.cs │ ├── ClrMethod.cs │ ├── ClrModule.cs │ ├── ClrNativeHeapInfo.cs │ ├── ClrNativeHeapState.cs │ ├── ClrObject.cs │ ├── ClrOutOfMemoryInfo.cs │ ├── ClrRcwCleanupData.cs │ ├── ClrReference.cs │ ├── ClrRoot.cs │ ├── ClrRootKind.cs │ ├── ClrRootKindExtension.cs │ ├── ClrRuntime.cs │ ├── ClrSegment.cs │ ├── ClrSegmentFlags.cs │ ├── ClrStackFrame.cs │ ├── ClrStackFrameKind.cs │ ├── ClrStackRoot.cs │ ├── ClrStaticField.cs │ ├── ClrSubHeap.cs │ ├── ClrSyncBlockCleanupData.cs │ ├── ClrThinlock.cs │ ├── ClrThread.cs │ ├── ClrThreadPool.cs │ ├── ClrThreadState.cs │ ├── ClrThreadStaticField.cs │ ├── ClrType.cs │ ├── ClrValueType.cs │ ├── CodeHeapKind.cs │ ├── ComCallableWrapper.cs │ ├── ComInterfaceData.cs │ ├── CustomDataTarget.cs │ ├── DacImplementation │ │ ├── DacComHelpers.cs │ │ ├── DacHeap.cs │ │ ├── DacLegacyThreadPool.cs │ │ ├── DacMetadataReader.cs │ │ ├── DacMethodLocator.cs │ │ ├── DacModuleHelpers.cs │ │ ├── DacNativeHeaps.cs │ │ ├── DacRuntime.cs │ │ ├── DacServiceProvider.cs │ │ ├── DacThreadHelpers.cs │ │ └── DacTypeHelpers.cs │ ├── DacInterface │ │ ├── ClrDataAddress.cs │ │ ├── ClrDataMethod.cs │ │ ├── ClrDataModule.cs │ │ ├── ClrDataProcess.cs │ │ ├── ClrDataTask.cs │ │ ├── ClrStackWalk.cs │ │ ├── DacDataTarget.cs │ │ ├── DacDataTargetCOM.cs │ │ ├── ISOSDac13.cs │ │ ├── ISOSDac16.cs │ │ ├── LegacyDacDataTargetWrapper.cs │ │ ├── MetadataImport.cs │ │ ├── SOSDac12.cs │ │ ├── SOSDac13Old.cs │ │ ├── SosDac.cs │ │ ├── SosDac13.cs │ │ ├── SosDac14.cs │ │ ├── SosDac16.cs │ │ ├── SosDac6.cs │ │ ├── SosDac8.cs │ │ ├── SosHandleEnum.cs │ │ ├── SosMemoryEnum.cs │ │ ├── SosStackRefEnum.cs │ │ └── Structs │ │ │ ├── AppDomainData.cs │ │ │ ├── AppDomainStoreData.cs │ │ │ ├── AssemblyData.cs │ │ │ ├── CcwData.cs │ │ │ ├── CodeHeaderData.cs │ │ │ ├── ComInterfacePointerData.cs │ │ │ ├── CommonMethodTables.cs │ │ │ ├── DacHeapAnalyzeData.cs │ │ │ ├── DacOOMData.cs │ │ │ ├── DomainLocalModuleData.cs │ │ │ ├── ExtendedModuleData.cs │ │ │ ├── FieldData.cs │ │ │ ├── GCInfo.cs │ │ │ ├── GenerationData.cs │ │ │ ├── HandleData.cs │ │ │ ├── HeapDetails.cs │ │ │ ├── JitCodeHeapInfo.cs │ │ │ ├── JitManagerData.cs │ │ │ ├── MethodDescData.cs │ │ │ ├── MethodTableCollectibleData.cs │ │ │ ├── MethodTableData.cs │ │ │ ├── MethodTableFieldInfo.cs │ │ │ ├── ModuleData.cs │ │ │ ├── ObjectData.cs │ │ │ ├── RcwData.cs │ │ │ ├── RejitData.cs │ │ │ ├── SegmentData.cs │ │ │ ├── SosMemoryRegion.cs │ │ │ ├── StackRefData.cs │ │ │ ├── SyncBlockCleanupData.cs │ │ │ ├── SyncBlockData.cs │ │ │ ├── ThreadData.cs │ │ │ ├── ThreadLocalModuleData.cs │ │ │ ├── ThreadPoolData.cs │ │ │ ├── ThreadStoreData.cs │ │ │ └── WorkRequestData.cs │ ├── DacLibrary.cs │ ├── DataReaders │ │ ├── CommonMemoryReader.cs │ │ ├── Core │ │ │ └── CoreDumpReader.cs │ │ ├── DbgEng │ │ │ └── DbgEngDataReader.cs │ │ ├── IDataReader.cs │ │ ├── IDumpInfoProvider.cs │ │ ├── IMemoryReader.cs │ │ ├── IThreadReader.cs │ │ ├── LinuxSnapshot │ │ │ └── LinuxSnapshotTarget.cs │ │ ├── MacOS │ │ │ ├── MacOSProcessDataReader.cs │ │ │ └── MachOModuleInfo.cs │ │ ├── Minidump │ │ │ └── MinidumpReader.cs │ │ ├── Registers │ │ │ ├── Amd64Context.cs │ │ │ ├── Arm64Context.cs │ │ │ ├── ArmContext.cs │ │ │ ├── Float80.cs │ │ │ ├── LoongArch64Context.cs │ │ │ ├── M128A.cs │ │ │ ├── RegisterAttribute.cs │ │ │ ├── RegisterType.cs │ │ │ ├── RiscV64Context.cs │ │ │ ├── VectorRegisterArea.cs │ │ │ ├── X86Context.cs │ │ │ └── XmmSaveArea.cs │ │ └── Windows │ │ │ ├── MemoryBasicInformation.cs │ │ │ ├── PssCaptureFlags.cs │ │ │ ├── PssQueryInformationClass.cs │ │ │ ├── ThreadAccess.cs │ │ │ ├── WindowsProcessDataReader.cs │ │ │ ├── WindowsProcessDataReaderMode.cs │ │ │ └── WindowsThreadSuspender.cs │ ├── DataTarget.cs │ ├── DbgEng │ │ ├── DEBUG_CLASS_QUALIFIER.cs │ │ ├── DEBUG_FORMAT.cs │ │ ├── DEBUG_MODULE_PARAMETERS.cs │ │ ├── DebugAdvanced.cs │ │ ├── DebugAttach.cs │ │ ├── DebugClient.cs │ │ ├── DebugControl.cs │ │ ├── DebugDataSpaces.cs │ │ ├── DebugEnd.cs │ │ ├── DebugModuleName.cs │ │ ├── DebugSymbols.cs │ │ ├── DebugSystemObjects.cs │ │ ├── MEM.cs │ │ ├── MEMORY_BASIC_INFORMATION64.cs │ │ └── PAGE.cs │ ├── DebugLibraryInfo.cs │ ├── DebugLibraryKind.cs │ ├── DumpFileFormat.cs │ ├── Extensions │ │ ├── BinarySearchExtensions.cs │ │ ├── ClrElementTypeExtensions.cs │ │ ├── ClrHandleKindExtension.cs │ │ ├── DebugOnly.cs │ │ ├── ExceptionExtensions.cs │ │ ├── IRegion.cs │ │ ├── ImmutableArrayExtensions.cs │ │ ├── MemoryExtensions.cs │ │ ├── PointerHelpers.cs │ │ ├── ProcessReaderExtensions.cs │ │ ├── SpanExtensions.cs │ │ ├── UnixDataReaderExtensions.cs │ │ └── UnsignedToSigned.cs │ ├── GCDesc.cs │ ├── GCMode.cs │ ├── GCRoot.cs │ ├── GCSegmentKind.cs │ ├── Generation.cs │ ├── GetMemoryFailureReason.cs │ ├── GlobalSuppressions.cs │ ├── HillClimbingTransition.cs │ ├── HotColdRegions.cs │ ├── IClrInfoProvider.cs │ ├── IFileLocator.cs │ ├── ILInfo.cs │ ├── ILToNativeMap.cs │ ├── IResourceNode.cs │ ├── Implementation │ │ ├── ClrConstructedType.cs │ │ ├── ClrDacType.cs │ │ ├── ClrGenericType.cs │ │ ├── ClrPrimitiveType.cs │ │ ├── ClrStringType.cs │ │ ├── ClrTypeFactory.cs │ │ ├── ComSyncBlock.cs │ │ ├── DACNameParser.cs │ │ ├── DacRequests.cs │ │ ├── DotNetClrInfoProvider.cs │ │ ├── ElfModuleInfo.cs │ │ ├── FileLocatorBase.cs │ │ ├── FileSymbolCache.cs │ │ ├── FullSyncBlock.cs │ │ ├── IMAGE_COR_ILMETHOD.cs │ │ ├── PEModuleInfo.cs │ │ ├── ReadVirtualStream.cs │ │ ├── SafeWin32Handle.cs │ │ ├── SymbolGroup.cs │ │ ├── SymbolServer.cs │ │ └── SyncBlockContainer.cs │ ├── Interfaces │ │ ├── IClrAppDomain.cs │ │ ├── IClrArray.cs │ │ ├── IClrDelegate.cs │ │ ├── IClrDelegateTarget.cs │ │ ├── IClrEnum.cs │ │ ├── IClrException.cs │ │ ├── IClrField.cs │ │ ├── IClrGenerationData.cs │ │ ├── IClrHandle.cs │ │ ├── IClrHeap.cs │ │ ├── IClrInfo.cs │ │ ├── IClrInstanceField.cs │ │ ├── IClrJitManager.cs │ │ ├── IClrMethod.cs │ │ ├── IClrModule.cs │ │ ├── IClrOutOfMemoryInfo.cs │ │ ├── IClrReference.cs │ │ ├── IClrRoot.cs │ │ ├── IClrRuntime.cs │ │ ├── IClrSegment.cs │ │ ├── IClrStackFrame.cs │ │ ├── IClrStaticField.cs │ │ ├── IClrSubHeap.cs │ │ ├── IClrThread.cs │ │ ├── IClrThreadPool.cs │ │ ├── IClrType.cs │ │ ├── IClrValue.cs │ │ ├── IComCallableWrapper.cs │ │ ├── IDataTarget.cs │ │ ├── IObjectCorruption.cs │ │ └── IRuntimeCallableWrapper.cs │ ├── LegacyAttributes.cs │ ├── LegacyThreadPoolWorkRequest.cs │ ├── Linux │ │ ├── ElfCoreFile.cs │ │ ├── ElfDynamicSection.cs │ │ ├── ElfFile.cs │ │ ├── ElfLoadedImage.cs │ │ ├── ElfNote.cs │ │ ├── ElfProgramHeader.cs │ │ ├── ElfReader.cs │ │ ├── ElfSectionHeader.cs │ │ ├── ElfStringTable.cs │ │ ├── ElfSymbol.cs │ │ ├── ElfSymbolGnuHash.cs │ │ ├── ElfSymbolTable.cs │ │ ├── ElfVirtualAddressSpace.cs │ │ ├── HelperExtensions.cs │ │ ├── IAddressSpace.cs │ │ ├── IElfHeader.cs │ │ ├── IElfPRStatus.cs │ │ ├── LinuxLiveDataReader.cs │ │ ├── MemoryVirtualAddressSpace.cs │ │ ├── ReaderStream.cs │ │ ├── RelativeAddressSpace.cs │ │ ├── StreamAddressSpace.cs │ │ └── Structs │ │ │ ├── ElfAuxv32.cs │ │ │ ├── ElfAuxv64.cs │ │ │ ├── ElfAuxvType.cs │ │ │ ├── ElfClass.cs │ │ │ ├── ElfData.cs │ │ │ ├── ElfDynamicEntry32.cs │ │ │ ├── ElfDynamicEntry64.cs │ │ │ ├── ElfDynamicEntryTag.cs │ │ │ ├── ElfFileTableEntryPointers32.cs │ │ │ ├── ElfFileTableEntryPointers64.cs │ │ │ ├── ElfFileTableHeader32.cs │ │ │ ├── ElfFileTableHeader64.cs │ │ │ ├── ElfHeader32.cs │ │ │ ├── ElfHeader64.cs │ │ │ ├── ElfHeaderCommon.cs │ │ │ ├── ElfHeaderType.cs │ │ │ ├── ElfMachine.cs │ │ │ ├── ElfNoteHeader.cs │ │ │ ├── ElfNoteType.cs │ │ │ ├── ElfPRStatusArm.cs │ │ │ ├── ElfPRStatusArm64.cs │ │ │ ├── ElfPRStatusLoongArch64.cs │ │ │ ├── ElfPRStatusRiscV64.cs │ │ │ ├── ElfPRStatusX64.cs │ │ │ ├── ElfPRStatusX86.cs │ │ │ ├── ElfProgramHeader32.cs │ │ │ ├── ElfProgramHeader64.cs │ │ │ ├── ElfProgramHeaderAttributes.cs │ │ │ ├── ElfProgramHeaderType.cs │ │ │ ├── ElfSectionHeader32.cs │ │ │ ├── ElfSectionHeader64.cs │ │ │ ├── ElfSectionHeaderType.cs │ │ │ ├── ElfSignalInfo.cs │ │ │ ├── ElfSymbol32.cs │ │ │ ├── ElfSymbol64.cs │ │ │ ├── ElfSymbolBind.cs │ │ │ ├── ElfSymbolType.cs │ │ │ ├── RegSetArm.cs │ │ │ ├── RegSetArm64.cs │ │ │ ├── RegSetLoongArch64.cs │ │ │ ├── RegSetRiscV64.cs │ │ │ ├── RegSetX64.cs │ │ │ ├── RegSetX86.cs │ │ │ ├── TimeVal32.cs │ │ │ └── TimeVal64.cs │ ├── MacOS │ │ ├── MachOCommand.cs │ │ ├── MachOCommandType.cs │ │ ├── MachOCoreDump.cs │ │ ├── MachOCoreReader.cs │ │ ├── MachOCpuArch.cs │ │ ├── MachOCpuType.cs │ │ ├── MachOFileReader.cs │ │ ├── MachOHeader64.cs │ │ ├── MachOModule.cs │ │ ├── MachOSection64.cs │ │ ├── MachOSegment.cs │ │ ├── MachOSegmentCommand64.cs │ │ └── Structs │ │ │ ├── DyldAllImageInfos.cs │ │ │ ├── DyldImageInfo.cs │ │ │ ├── DysymtabLoadCommand.cs │ │ │ ├── LoadCommandHeader.cs │ │ │ ├── LoadCommandType.cs │ │ │ ├── MachHeader64.cs │ │ │ ├── MachOFileType.cs │ │ │ ├── MachOFlags.cs │ │ │ ├── NList64.cs │ │ │ ├── Segment64LoadCommand.cs │ │ │ ├── SpecialThreadInfoHeader.cs │ │ │ ├── SymtabLoadCommand.cs │ │ │ ├── UuidLoadCommand.cs │ │ │ ├── arm_thread_state64_t.cs │ │ │ ├── thread_state.cs │ │ │ └── x86_thread_state64_t.cs │ ├── MemoryRange.cs │ ├── MethodCompilationType.cs │ ├── Microsoft.Diagnostics.Runtime.csproj │ ├── ModuleInfo.cs │ ├── ModuleKind.cs │ ├── ModuleLayout.cs │ ├── NativeHeapKind.cs │ ├── ObjectCorruption.cs │ ├── OutOfMemoryReason.cs │ ├── PdbInfo.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RefCountedFreeLibrary.cs │ ├── RuntimeCallableWrapper.cs │ ├── RuntimeInfo.cs │ ├── SingleFileClrInfoProvider.cs │ ├── SpecialDiagInfo.cs │ ├── StringCaching.cs │ ├── SymbolProperties.cs │ ├── SyncBlock.cs │ ├── SyncBlockFlags.cs │ ├── Utilities │ │ ├── COMInterop │ │ │ ├── CallableComWrapper.cs │ │ │ ├── ComCallableIUnknown.cs │ │ │ ├── ComHelper.cs │ │ │ ├── HResult.cs │ │ │ ├── UnknownVTable.cs │ │ │ └── VTableBuilder.cs │ │ ├── PEImage │ │ │ ├── CvInfoPdb70.cs │ │ │ ├── FileVersionInfo.cs │ │ │ ├── ImageCor20Header.cs │ │ │ ├── ImageCor20HeaderEntrypoint.cs │ │ │ ├── ImageDataDirectory.cs │ │ │ ├── ImageDebugDirectory.cs │ │ │ ├── ImageDebugType.cs │ │ │ ├── ImageExportDirectory.cs │ │ │ ├── ImageFileHeader.cs │ │ │ ├── ImageFileMachine.cs │ │ │ ├── ImageOptionalHeader.cs │ │ │ ├── ImageRelocation.cs │ │ │ ├── ImageResourceDataEntry.cs │ │ │ ├── ImageResourceDirectory.cs │ │ │ ├── ImageResourceDirectoryEntry.cs │ │ │ ├── ImageSectionHeader.cs │ │ │ ├── PEImage.cs │ │ │ └── ResourceEntry.cs │ │ ├── Platform │ │ │ ├── AuthenticodeUtil.cs │ │ │ ├── CoreFunctions.cs │ │ │ ├── LinuxFunctions.cs │ │ │ ├── MacOSFunctions.cs │ │ │ ├── PlatformFunctions.cs │ │ │ └── WindowsFunctions.cs │ │ └── SigParser │ │ │ └── SigParser.cs │ └── Windows │ │ ├── AWEBasedCacheEntry.cs │ │ ├── AWEBasedCacheEntryFactory.cs │ │ ├── ArrayPoolBasedCacheEntry.cs │ │ ├── ArrayPoolBasedCacheEntryFactory.cs │ │ ├── CacheEntryBase.cs │ │ ├── CacheNativeMethods.cs │ │ ├── CachePage.cs │ │ ├── CacheTechnology.cs │ │ ├── CachedMemoryReader.cs │ │ ├── FixedFileInfo.cs │ │ ├── HeapSegmentCacheEventSource.cs │ │ ├── HeapSegmentDataCache.cs │ │ ├── Minidump.cs │ │ ├── MinidumpDirectory.cs │ │ ├── MinidumpHeader.cs │ │ ├── MinidumpLocationDescriptor.cs │ │ ├── MinidumpMemory64List.cs │ │ ├── MinidumpMemoryDescriptor.cs │ │ ├── MinidumpMemoryReader.cs │ │ ├── MinidumpModule.cs │ │ ├── MinidumpModuleInfo.cs │ │ ├── MinidumpProcessorArchitecture.cs │ │ ├── MinidumpSegment.cs │ │ ├── MinidumpStreamType.cs │ │ ├── MinidumpThread.cs │ │ ├── MinidumpThreadEx.cs │ │ ├── MinidumpThreadInfo.cs │ │ ├── MinidumpThreadInfoList.cs │ │ ├── SegmentCacheEntry.cs │ │ ├── SegmentCacheEntryFactory.cs │ │ ├── TokenAccessLevels.cs │ │ └── UncachedMemoryReader.cs ├── Samples │ ├── ClrStack │ │ ├── ClrStack.cs │ │ └── ClrStack.csproj │ ├── DbgEngExtension │ │ ├── DbgEngExtension.csproj │ │ ├── Exports.cs │ │ ├── ExtensionMethods.cs │ │ ├── FindPointersIn.cs │ │ ├── GCToNative.cs │ │ ├── Help.cs │ │ ├── Help │ │ │ ├── findpointersin.txt │ │ │ ├── gctonative.txt │ │ │ ├── help.txt │ │ │ └── maddress.txt │ │ ├── MAddress.cs │ │ ├── MHeap.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ └── TableOutput.cs │ ├── DbgEngStandalone │ │ ├── DbgEngStandalone.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── launchSettings.json │ ├── DumpDict │ │ ├── DumpDict.cs │ │ └── DumpDict.csproj │ ├── DumpHeap │ │ ├── DumpHeap.cs │ │ └── DumpHeap.csproj │ ├── GCRoot │ │ ├── GCRoot.csproj │ │ └── GCRootDemo.cs │ ├── Samples.sln │ └── SelfAttach │ │ ├── SelfAttach.cs │ │ └── SelfAttach.csproj ├── TestTargets │ ├── AppDomains │ │ ├── AppDomains.cs │ │ └── AppDomains.csproj │ ├── Arrays │ │ ├── Arrays.cs │ │ └── Arrays.csproj │ ├── ByReference │ │ ├── ByReference.cs │ │ └── ByReference.csproj │ ├── ClrObjects │ │ ├── ClrObjects.cs │ │ └── ClrObjects.csproj │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── FinalizationQueue │ │ ├── FinalizationQueue.cs │ │ └── FinalizationQueue.csproj │ ├── GCHandles │ │ ├── GCHandles.cs │ │ └── GCHandles.csproj │ ├── GCRoot │ │ ├── GCRoot.cs │ │ └── GCRoot.csproj │ ├── GCRoot2 │ │ ├── GCRoot2.cs │ │ └── GCRoot2.csproj │ ├── NestedException │ │ ├── NestedException.cs │ │ └── NestedException.csproj │ ├── NestedTypes │ │ ├── NestedTypes.cs │ │ └── NestedTypes.csproj │ ├── Shared │ │ ├── SharedLibrary.cs │ │ └── SharedLibrary.csproj │ ├── TestTargets.proj │ ├── Types │ │ ├── Types.cs │ │ └── Types.csproj │ └── single-file │ │ ├── Program.cs │ │ └── single-file.csproj └── TestTasks │ ├── TestTasks.csproj │ └── src │ ├── Debugger.cs │ └── Dump.cs ├── test.sh └── test_artifacts ├── arrays_wks_mini.coredump ├── big_file_readme.txt └── single_file_full.dmp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/.github/CODEOWNERS.TXT -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/Build.cmd -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft.Diagnostics.Runtime.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/Microsoft.Diagnostics.Runtime.sln -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/README.md -------------------------------------------------------------------------------- /Restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/Restore.cmd -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/Test.cmd -------------------------------------------------------------------------------- /azure-pipelines-external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/azure-pipelines-external.yml -------------------------------------------------------------------------------- /azure-pipelines-internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/azure-pipelines-internal.yml -------------------------------------------------------------------------------- /doc/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/doc/FAQ.md -------------------------------------------------------------------------------- /doc/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/doc/GettingStarted.md -------------------------------------------------------------------------------- /doc/Migrating21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/doc/Migrating21.md -------------------------------------------------------------------------------- /doc/ReleaseNotes2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/doc/ReleaseNotes2.0.md -------------------------------------------------------------------------------- /doc/ReleaseNotes3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/doc/ReleaseNotes3.0.md -------------------------------------------------------------------------------- /doc/ReleaseNotes3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/doc/ReleaseNotes3.1.md -------------------------------------------------------------------------------- /eng/Coverage.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/Coverage.targets -------------------------------------------------------------------------------- /eng/Microsoft.Diagnostics.Runtime.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/Microsoft.Diagnostics.Runtime.snk -------------------------------------------------------------------------------- /eng/Publishing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/Publishing.props -------------------------------------------------------------------------------- /eng/Signing.props.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/Signing.props.old -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/arm/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/arm/sources.list.jessie -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/arm/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/arm/sources.list.zesty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/arm/sources.list.zesty -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/arm64/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.buster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/arm64/sources.list.buster -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.stretch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/arm64/sources.list.stretch -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/arm64/sources.list.xenial -------------------------------------------------------------------------------- /eng/common/cross/arm64/sources.list.zesty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/arm64/sources.list.zesty -------------------------------------------------------------------------------- /eng/common/cross/armel/armel.jessie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/armel/armel.jessie.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/sources.list.jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/armel/sources.list.jessie -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armv6/sources.list.buster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/armv6/sources.list.buster -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/ppc64le/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/ppc64le/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/riscv64/sources.list.sid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/riscv64/sources.list.sid -------------------------------------------------------------------------------- /eng/common/cross/s390x/sources.list.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/s390x/sources.list.bionic -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/add-build-to-channel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/post-build/add-build-to-channel.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/post-build-utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/post-build/post-build-utils.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/trigger-subscriptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/post-build/trigger-subscriptions.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/trigger-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/post-build/trigger-subscription.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/add-build-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/add-build-to-channel.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/build-reason.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/build-reason.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/execute-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/execute-codeql.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/execute-sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/execute-sdl.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/execute-sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/job/execute-sdl.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/trigger-subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/post-build/trigger-subscription.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/add-build-to-channel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/add-build-to-channel.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/build-reason.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/build-reason.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/execute-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/execute-codeql.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/execute-sdl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/execute-sdl.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-on-unix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/run-on-unix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-on-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/run-on-windows.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/run-script-ifequalelse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/run-script-ifequalelse.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/telemetry-end.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/telemetry-end.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/telemetry-start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/steps/telemetry-start.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/templates/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/global.json -------------------------------------------------------------------------------- /restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/restore.sh -------------------------------------------------------------------------------- /src/Benchmarks/AweHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Benchmarks/AweHelpers.cs -------------------------------------------------------------------------------- /src/Benchmarks/BenchmarkSwitches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Benchmarks/BenchmarkSwitches.cs -------------------------------------------------------------------------------- /src/Benchmarks/Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Benchmarks/Benchmarks.csproj -------------------------------------------------------------------------------- /src/Benchmarks/HeapBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Benchmarks/HeapBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/ParallelHeapBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Benchmarks/ParallelHeapBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/ParallelThreadRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Benchmarks/ParallelThreadRunner.cs -------------------------------------------------------------------------------- /src/Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Benchmarks/Program.cs -------------------------------------------------------------------------------- /src/LongRunningTests/ParallelStressTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/LongRunningTests/ParallelStressTest/App.config -------------------------------------------------------------------------------- /src/LongRunningTests/ParallelStressTest/ParallelStressTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/LongRunningTests/ParallelStressTest/ParallelStressTest.csproj -------------------------------------------------------------------------------- /src/LongRunningTests/ParallelStressTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/LongRunningTests/ParallelStressTest/Program.cs -------------------------------------------------------------------------------- /src/LongRunningTests/ParallelStressTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/LongRunningTests/ParallelStressTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/InterfaceEqualityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/InterfaceEqualityTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/License-Stable.rtf -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/AppDomainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/AppDomainTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/Attributes/CoreFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/Attributes/CoreFactAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/Attributes/LinuxFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/Attributes/LinuxFactAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/BasicArrayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/BasicArrayTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/ByReferenceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/ByReferenceTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/CacheOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/CacheOptionsTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/ClrDelegateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/ClrDelegateTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/ClrObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/ClrObjectTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/CrossOSTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/CrossOSTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/DACNameParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/DACNameParserTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/DataTargetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/DataTargetTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/DumpInfoProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/DumpInfoProviderTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/ExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/ExceptionTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/FieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/FieldTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/FileLocatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/FileLocatorTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/FinalizationQueueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/FinalizationQueueTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/Fixtures/ArrayConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/Fixtures/ArrayConnection.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/Fixtures/ClrObjectConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/Fixtures/ClrObjectConnection.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/Fixtures/ObjectConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/Fixtures/ObjectConnection.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/GCHandleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/GCHandleTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/GCRootTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/GCRootTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/HeapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/HeapTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/Helpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/MemoryReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/MemoryReaderTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/MethodTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/MethodTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/MinidumpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/MinidumpTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/ModuleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/ModuleTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/NativeHeapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/NativeHeapTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/NullBinaryLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/NullBinaryLocator.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/PEImagePdbTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/PEImagePdbTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/PEImageResourceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/PEImageResourceTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/PdbTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/PdbTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/RuntimeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/RuntimeTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/StackTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/StackTest.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/StaticFieldTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/StaticFieldTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/SymbolGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/SymbolGroupTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/TestTargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/TestTargets.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/ThreadReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/ThreadReaderTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/TypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/TypeTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Tests/src/VerifyHeapTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Tests/src/VerifyHeapTests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/ClrRuntimeInitFailure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/ClrRuntimeInitFailure.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/DbgEngCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/DbgEngCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/DbgEngIDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/DbgEngIDataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/DbgEngOutputHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/DbgEngOutputHolder.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/DbgEngOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/DbgEngOutputStream.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/ExtensionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/ExtensionContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugAdvanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugAdvanced.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugControl.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugDataSpaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugDataSpaces.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugEventCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugEventCallbacks.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugOutputCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugOutputCallbacks.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugSymbols.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugSystemObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/IDebugSystemObjects.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/NativeMethods.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_ATTACH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_ATTACH.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_CDS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_CDS.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_CES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_CES.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_CSS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_CSS.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_DUMP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_DUMP.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_END.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_END.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_ENGOPT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_ENGOPT.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_EVENT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_EVENT.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_EXECUTE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_EXECUTE.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_FORMAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_FORMAT.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_MODNAME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_MODNAME.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_MODULE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_MODULE.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_OUTCBF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_OUTCBF.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_OUTCBI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_OUTCBI.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_OUTCTL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_OUTCTL.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_OUTPUT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_OUTPUT.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_REQUEST.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_REQUEST.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_SESSION.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_SESSION.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_STATUS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_STATUS.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_SYMTYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Structs/DEBUG_SYMTYPE.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Wrappers/DbgEngCom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Wrappers/DbgEngCom.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Wrappers/DbgEngWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/DbgEng/Wrappers/DbgEngWrapper.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime.Utilities/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime.Utilities/readme.md -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractClrNativeHeaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractClrNativeHeaps.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractComHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractComHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractDacController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractDacController.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractHeap.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractLegacyThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractLegacyThreadPool.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractMetadataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractMetadataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractMethodLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractMethodLocator.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractModuleHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractModuleHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractRuntime.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractThreadHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractThreadHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractTypeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/AbstractDac/IAbstractTypeHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/CacheOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/CacheOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrAppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrAppDomain.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrArray.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrDelegate.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrDelegateTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrDelegateTarget.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrDiagnosticsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrDiagnosticsException.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrElementType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrEnum.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrException.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrField.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrFlavor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrFlavor.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrGenerationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrGenerationData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrGenericParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrGenericParameter.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrHandle.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrHandleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrHandleKind.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrHeap.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrInstanceField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrInstanceField.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrInterface.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrJitManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrJitManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrMethod.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrNativeHeapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrNativeHeapInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrNativeHeapState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrNativeHeapState.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrObject.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrOutOfMemoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrOutOfMemoryInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrRcwCleanupData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrRcwCleanupData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrReference.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrRoot.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrRootKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrRootKind.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrRootKindExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrRootKindExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrRuntime.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrSegment.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrSegmentFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrSegmentFlags.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrStackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrStackFrame.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrStackFrameKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrStackFrameKind.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrStackRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrStackRoot.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrStaticField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrStaticField.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrSubHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrSubHeap.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrSyncBlockCleanupData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrSyncBlockCleanupData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrThinlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrThinlock.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrThread.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrThreadPool.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrThreadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrThreadState.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrThreadStaticField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrThreadStaticField.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ClrValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ClrValueType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/CodeHeapKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/CodeHeapKind.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ComCallableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ComCallableWrapper.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ComInterfaceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ComInterfaceData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/CustomDataTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/CustomDataTarget.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacComHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacComHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacHeap.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacLegacyThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacLegacyThreadPool.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacMetadataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacMetadataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacMethodLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacMethodLocator.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacModuleHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacModuleHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacNativeHeaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacNativeHeaps.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacRuntime.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacServiceProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacThreadHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacThreadHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacImplementation/DacTypeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacImplementation/DacTypeHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/ClrDataAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/ClrDataAddress.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/ClrDataMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/ClrDataMethod.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/ClrDataModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/ClrDataModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/ClrDataProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/ClrDataProcess.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/ClrDataTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/ClrDataTask.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/ClrStackWalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/ClrStackWalk.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/DacDataTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/DacDataTarget.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/DacDataTargetCOM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/DacDataTargetCOM.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/ISOSDac13.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/ISOSDac13.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/ISOSDac16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/ISOSDac16.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/LegacyDacDataTargetWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/LegacyDacDataTargetWrapper.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/MetadataImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/MetadataImport.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SOSDac12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SOSDac12.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SOSDac13Old.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SOSDac13Old.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac13.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac13.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac14.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac14.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac16.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac6.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SosDac8.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SosHandleEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SosHandleEnum.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SosMemoryEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SosMemoryEnum.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/SosStackRefEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/SosStackRefEnum.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/AppDomainData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/AppDomainData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/AppDomainStoreData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/AppDomainStoreData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/AssemblyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/AssemblyData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/CcwData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/CcwData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/CodeHeaderData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/CodeHeaderData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/CommonMethodTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/CommonMethodTables.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/DacHeapAnalyzeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/DacHeapAnalyzeData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/DacOOMData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/DacOOMData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ExtendedModuleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ExtendedModuleData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/FieldData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/FieldData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/GCInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/GCInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/GenerationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/GenerationData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/HandleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/HandleData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/HeapDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/HeapDetails.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/JitCodeHeapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/JitCodeHeapInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/JitManagerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/JitManagerData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/MethodDescData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/MethodDescData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/MethodTableData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/MethodTableData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ModuleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ModuleData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ObjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ObjectData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/RcwData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/RcwData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/RejitData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/RejitData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/SegmentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/SegmentData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/SosMemoryRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/SosMemoryRegion.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/StackRefData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/StackRefData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/SyncBlockData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/SyncBlockData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ThreadData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ThreadData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ThreadPoolData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ThreadPoolData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ThreadStoreData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/ThreadStoreData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/WorkRequestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacInterface/Structs/WorkRequestData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DacLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DacLibrary.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/CommonMemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/CommonMemoryReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Core/CoreDumpReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Core/CoreDumpReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/DbgEng/DbgEngDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/DbgEng/DbgEngDataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/IDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/IDataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/IDumpInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/IDumpInfoProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/IMemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/IMemoryReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/IThreadReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/IThreadReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/MacOS/MachOModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/MacOS/MachOModuleInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Minidump/MinidumpReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Minidump/MinidumpReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/Amd64Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/Amd64Context.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/Arm64Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/Arm64Context.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/ArmContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/ArmContext.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/Float80.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/Float80.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/M128A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/M128A.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/RegisterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/RegisterAttribute.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/RegisterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/RegisterType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/RiscV64Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/RiscV64Context.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/X86Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/X86Context.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/XmmSaveArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Registers/XmmSaveArea.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Windows/PssCaptureFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Windows/PssCaptureFlags.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataReaders/Windows/ThreadAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataReaders/Windows/ThreadAccess.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DataTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DataTarget.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DEBUG_CLASS_QUALIFIER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DEBUG_CLASS_QUALIFIER.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DEBUG_FORMAT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DEBUG_FORMAT.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DEBUG_MODULE_PARAMETERS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DEBUG_MODULE_PARAMETERS.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DebugAdvanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DebugAdvanced.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DebugAttach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DebugAttach.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DebugClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DebugClient.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DebugControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DebugControl.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DebugDataSpaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DebugDataSpaces.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DebugEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DebugEnd.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DebugModuleName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DebugModuleName.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DebugSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DebugSymbols.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/DebugSystemObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/DebugSystemObjects.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/MEM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/MEM.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/MEMORY_BASIC_INFORMATION64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/MEMORY_BASIC_INFORMATION64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DbgEng/PAGE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DbgEng/PAGE.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DebugLibraryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DebugLibraryInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DebugLibraryKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DebugLibraryKind.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/DumpFileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/DumpFileFormat.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/BinarySearchExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/BinarySearchExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/ClrElementTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/ClrElementTypeExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/ClrHandleKindExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/ClrHandleKindExtension.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/DebugOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/DebugOnly.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/IRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/IRegion.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/ImmutableArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/ImmutableArrayExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/MemoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/MemoryExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/PointerHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/PointerHelpers.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/ProcessReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/ProcessReaderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/SpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/SpanExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/UnixDataReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/UnixDataReaderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Extensions/UnsignedToSigned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Extensions/UnsignedToSigned.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/GCDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/GCDesc.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/GCMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/GCMode.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/GCRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/GCRoot.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/GCSegmentKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/GCSegmentKind.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Generation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Generation.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/GetMemoryFailureReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/GetMemoryFailureReason.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/HillClimbingTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/HillClimbingTransition.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/HotColdRegions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/HotColdRegions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/IClrInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/IClrInfoProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/IFileLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/IFileLocator.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ILInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ILInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ILToNativeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ILToNativeMap.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/IResourceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/IResourceNode.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/ClrConstructedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/ClrConstructedType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/ClrDacType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/ClrDacType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/ClrGenericType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/ClrGenericType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/ClrPrimitiveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/ClrPrimitiveType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/ClrStringType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/ClrStringType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/ClrTypeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/ClrTypeFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/ComSyncBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/ComSyncBlock.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/DACNameParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/DACNameParser.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/DacRequests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/DacRequests.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/DotNetClrInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/DotNetClrInfoProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/ElfModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/ElfModuleInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/FileLocatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/FileLocatorBase.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/FileSymbolCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/FileSymbolCache.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/FullSyncBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/FullSyncBlock.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/IMAGE_COR_ILMETHOD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/IMAGE_COR_ILMETHOD.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/PEModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/PEModuleInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/ReadVirtualStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/ReadVirtualStream.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/SafeWin32Handle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/SafeWin32Handle.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/SymbolGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/SymbolGroup.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/SymbolServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/SymbolServer.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Implementation/SyncBlockContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Implementation/SyncBlockContainer.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrAppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrAppDomain.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrArray.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrDelegate.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrDelegateTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrDelegateTarget.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrEnum.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrException.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrField.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrGenerationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrGenerationData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrHandle.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrHeap.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrInstanceField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrInstanceField.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrJitManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrJitManager.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrMethod.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrOutOfMemoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrOutOfMemoryInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrReference.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrRoot.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrRuntime.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrSegment.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrStackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrStackFrame.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrStaticField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrStaticField.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrSubHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrSubHeap.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrThread.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrThreadPool.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IClrValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IClrValue.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IComCallableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IComCallableWrapper.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IDataTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IDataTarget.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IObjectCorruption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IObjectCorruption.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Interfaces/IRuntimeCallableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Interfaces/IRuntimeCallableWrapper.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/LegacyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/LegacyAttributes.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/LegacyThreadPoolWorkRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/LegacyThreadPoolWorkRequest.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfCoreFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfCoreFile.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfDynamicSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfDynamicSection.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfFile.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfLoadedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfLoadedImage.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfNote.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfProgramHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfProgramHeader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfSectionHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfSectionHeader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfStringTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfStringTable.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfSymbol.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfSymbolGnuHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfSymbolGnuHash.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfSymbolTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfSymbolTable.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ElfVirtualAddressSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ElfVirtualAddressSpace.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/HelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/HelperExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/IAddressSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/IAddressSpace.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/IElfHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/IElfHeader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/IElfPRStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/IElfPRStatus.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/LinuxLiveDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/LinuxLiveDataReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/MemoryVirtualAddressSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/MemoryVirtualAddressSpace.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/ReaderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/ReaderStream.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/RelativeAddressSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/RelativeAddressSpace.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/StreamAddressSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/StreamAddressSpace.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfAuxv32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfAuxv32.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfAuxv64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfAuxv64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfAuxvType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfAuxvType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfClass.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfData.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfDynamicEntry32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfDynamicEntry32.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfDynamicEntry64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfDynamicEntry64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfDynamicEntryTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfDynamicEntryTag.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfFileTableHeader32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfFileTableHeader32.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfFileTableHeader64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfFileTableHeader64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfHeader32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfHeader32.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfHeader64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfHeader64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfHeaderCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfHeaderCommon.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfHeaderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfHeaderType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfMachine.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfNoteHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfNoteHeader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfNoteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfNoteType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusArm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusArm.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusArm64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusArm64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusLoongArch64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusLoongArch64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusRiscV64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusRiscV64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusX64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusX64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusX86.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfPRStatusX86.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfProgramHeader32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfProgramHeader32.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfProgramHeader64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfProgramHeader64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfProgramHeaderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfProgramHeaderType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSectionHeader32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSectionHeader32.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSectionHeader64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSectionHeader64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSectionHeaderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSectionHeaderType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSignalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSignalInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSymbol32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSymbol32.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSymbol64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSymbol64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSymbolBind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSymbolBind.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSymbolType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/ElfSymbolType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetArm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetArm.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetArm64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetArm64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetLoongArch64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetLoongArch64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetRiscV64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetRiscV64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetX64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetX64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetX86.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/RegSetX86.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/TimeVal32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/TimeVal32.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Linux/Structs/TimeVal64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Linux/Structs/TimeVal64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOCommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOCommandType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOCoreDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOCoreDump.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOCoreReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOCoreReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOCpuArch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOCpuArch.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOCpuType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOCpuType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOFileReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOHeader64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOHeader64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOSection64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOSection64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOSegment.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/MachOSegmentCommand64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/MachOSegmentCommand64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/DyldAllImageInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/DyldAllImageInfos.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/DyldImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/DyldImageInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/DysymtabLoadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/DysymtabLoadCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/LoadCommandHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/LoadCommandHeader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/LoadCommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/LoadCommandType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/MachHeader64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/MachHeader64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/MachOFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/MachOFileType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/MachOFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/MachOFlags.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/NList64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/NList64.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/Segment64LoadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/Segment64LoadCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/SpecialThreadInfoHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/SpecialThreadInfoHeader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/SymtabLoadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/SymtabLoadCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/UuidLoadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/UuidLoadCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/arm_thread_state64_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/arm_thread_state64_t.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/thread_state.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/thread_state.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MacOS/Structs/x86_thread_state64_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MacOS/Structs/x86_thread_state64_t.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MemoryRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MemoryRange.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/MethodCompilationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/MethodCompilationType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Microsoft.Diagnostics.Runtime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Microsoft.Diagnostics.Runtime.csproj -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ModuleInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ModuleKind.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ModuleLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ModuleLayout.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/NativeHeapKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/NativeHeapKind.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/ObjectCorruption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/ObjectCorruption.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/OutOfMemoryReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/OutOfMemoryReason.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/PdbInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/PdbInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/RefCountedFreeLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/RefCountedFreeLibrary.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/RuntimeCallableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/RuntimeCallableWrapper.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/RuntimeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/RuntimeInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/SingleFileClrInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/SingleFileClrInfoProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/SpecialDiagInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/SpecialDiagInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/StringCaching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/StringCaching.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/SymbolProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/SymbolProperties.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/SyncBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/SyncBlock.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/SyncBlockFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/SyncBlockFlags.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/COMInterop/CallableComWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/COMInterop/CallableComWrapper.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/COMInterop/ComHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/COMInterop/ComHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/COMInterop/HResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/COMInterop/HResult.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/COMInterop/UnknownVTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/COMInterop/UnknownVTable.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/COMInterop/VTableBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/COMInterop/VTableBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/CvInfoPdb70.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/CvInfoPdb70.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/FileVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/FileVersionInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageCor20Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageCor20Header.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageDataDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageDataDirectory.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageDebugDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageDebugDirectory.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageDebugType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageDebugType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageExportDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageExportDirectory.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageFileHeader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageFileMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageFileMachine.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageOptionalHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageOptionalHeader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageRelocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageRelocation.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageSectionHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ImageSectionHeader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/PEImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/PEImage.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ResourceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/PEImage/ResourceEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/Platform/AuthenticodeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/Platform/AuthenticodeUtil.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/Platform/CoreFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/Platform/CoreFunctions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/Platform/LinuxFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/Platform/LinuxFunctions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/Platform/MacOSFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/Platform/MacOSFunctions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/Platform/PlatformFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/Platform/PlatformFunctions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/Platform/WindowsFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/Platform/WindowsFunctions.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Utilities/SigParser/SigParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Utilities/SigParser/SigParser.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/AWEBasedCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/AWEBasedCacheEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/AWEBasedCacheEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/AWEBasedCacheEntryFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/ArrayPoolBasedCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/ArrayPoolBasedCacheEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/ArrayPoolBasedCacheEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/ArrayPoolBasedCacheEntryFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/CacheEntryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/CacheEntryBase.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/CacheNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/CacheNativeMethods.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/CachePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/CachePage.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/CacheTechnology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/CacheTechnology.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/CachedMemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/CachedMemoryReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/FixedFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/FixedFileInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/HeapSegmentCacheEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/HeapSegmentCacheEventSource.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/HeapSegmentDataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/HeapSegmentDataCache.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/Minidump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/Minidump.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpDirectory.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpHeader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpLocationDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpLocationDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpMemory64List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpMemory64List.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpMemoryDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpMemoryDescriptor.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpMemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpMemoryReader.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpModule.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpModuleInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpProcessorArchitecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpProcessorArchitecture.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpSegment.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpStreamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpStreamType.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpThread.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpThreadEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpThreadEx.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpThreadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpThreadInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/MinidumpThreadInfoList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/MinidumpThreadInfoList.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/SegmentCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/SegmentCacheEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/SegmentCacheEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/SegmentCacheEntryFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/TokenAccessLevels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/TokenAccessLevels.cs -------------------------------------------------------------------------------- /src/Microsoft.Diagnostics.Runtime/Windows/UncachedMemoryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Microsoft.Diagnostics.Runtime/Windows/UncachedMemoryReader.cs -------------------------------------------------------------------------------- /src/Samples/ClrStack/ClrStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/ClrStack/ClrStack.cs -------------------------------------------------------------------------------- /src/Samples/ClrStack/ClrStack.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/ClrStack/ClrStack.csproj -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/DbgEngExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/DbgEngExtension.csproj -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/Exports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/Exports.cs -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/FindPointersIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/FindPointersIn.cs -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/GCToNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/GCToNative.cs -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/Help.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/Help.cs -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/Help/findpointersin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/Help/findpointersin.txt -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/Help/gctonative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/Help/gctonative.txt -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/Help/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/Help/help.txt -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/Help/maddress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/Help/maddress.txt -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/MAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/MAddress.cs -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/MHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/MHeap.cs -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Samples/DbgEngExtension/TableOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngExtension/TableOutput.cs -------------------------------------------------------------------------------- /src/Samples/DbgEngStandalone/DbgEngStandalone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngStandalone/DbgEngStandalone.csproj -------------------------------------------------------------------------------- /src/Samples/DbgEngStandalone/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngStandalone/Program.cs -------------------------------------------------------------------------------- /src/Samples/DbgEngStandalone/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DbgEngStandalone/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Samples/DumpDict/DumpDict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DumpDict/DumpDict.cs -------------------------------------------------------------------------------- /src/Samples/DumpDict/DumpDict.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DumpDict/DumpDict.csproj -------------------------------------------------------------------------------- /src/Samples/DumpHeap/DumpHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DumpHeap/DumpHeap.cs -------------------------------------------------------------------------------- /src/Samples/DumpHeap/DumpHeap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/DumpHeap/DumpHeap.csproj -------------------------------------------------------------------------------- /src/Samples/GCRoot/GCRoot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/GCRoot/GCRoot.csproj -------------------------------------------------------------------------------- /src/Samples/GCRoot/GCRootDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/GCRoot/GCRootDemo.cs -------------------------------------------------------------------------------- /src/Samples/Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/Samples.sln -------------------------------------------------------------------------------- /src/Samples/SelfAttach/SelfAttach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/SelfAttach/SelfAttach.cs -------------------------------------------------------------------------------- /src/Samples/SelfAttach/SelfAttach.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/Samples/SelfAttach/SelfAttach.csproj -------------------------------------------------------------------------------- /src/TestTargets/AppDomains/AppDomains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/AppDomains/AppDomains.cs -------------------------------------------------------------------------------- /src/TestTargets/AppDomains/AppDomains.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/AppDomains/AppDomains.csproj -------------------------------------------------------------------------------- /src/TestTargets/Arrays/Arrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/Arrays/Arrays.cs -------------------------------------------------------------------------------- /src/TestTargets/Arrays/Arrays.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/Arrays/Arrays.csproj -------------------------------------------------------------------------------- /src/TestTargets/ByReference/ByReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/ByReference/ByReference.cs -------------------------------------------------------------------------------- /src/TestTargets/ByReference/ByReference.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/ByReference/ByReference.csproj -------------------------------------------------------------------------------- /src/TestTargets/ClrObjects/ClrObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/ClrObjects/ClrObjects.cs -------------------------------------------------------------------------------- /src/TestTargets/ClrObjects/ClrObjects.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/ClrObjects/ClrObjects.csproj -------------------------------------------------------------------------------- /src/TestTargets/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/Directory.Build.props -------------------------------------------------------------------------------- /src/TestTargets/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/Directory.Build.targets -------------------------------------------------------------------------------- /src/TestTargets/FinalizationQueue/FinalizationQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/FinalizationQueue/FinalizationQueue.cs -------------------------------------------------------------------------------- /src/TestTargets/FinalizationQueue/FinalizationQueue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/FinalizationQueue/FinalizationQueue.csproj -------------------------------------------------------------------------------- /src/TestTargets/GCHandles/GCHandles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/GCHandles/GCHandles.cs -------------------------------------------------------------------------------- /src/TestTargets/GCHandles/GCHandles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/GCHandles/GCHandles.csproj -------------------------------------------------------------------------------- /src/TestTargets/GCRoot/GCRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/GCRoot/GCRoot.cs -------------------------------------------------------------------------------- /src/TestTargets/GCRoot/GCRoot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/GCRoot/GCRoot.csproj -------------------------------------------------------------------------------- /src/TestTargets/GCRoot2/GCRoot2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/GCRoot2/GCRoot2.cs -------------------------------------------------------------------------------- /src/TestTargets/GCRoot2/GCRoot2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/GCRoot2/GCRoot2.csproj -------------------------------------------------------------------------------- /src/TestTargets/NestedException/NestedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/NestedException/NestedException.cs -------------------------------------------------------------------------------- /src/TestTargets/NestedException/NestedException.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/NestedException/NestedException.csproj -------------------------------------------------------------------------------- /src/TestTargets/NestedTypes/NestedTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/NestedTypes/NestedTypes.cs -------------------------------------------------------------------------------- /src/TestTargets/NestedTypes/NestedTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/NestedTypes/NestedTypes.csproj -------------------------------------------------------------------------------- /src/TestTargets/Shared/SharedLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/Shared/SharedLibrary.cs -------------------------------------------------------------------------------- /src/TestTargets/Shared/SharedLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/Shared/SharedLibrary.csproj -------------------------------------------------------------------------------- /src/TestTargets/TestTargets.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/TestTargets.proj -------------------------------------------------------------------------------- /src/TestTargets/Types/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/Types/Types.cs -------------------------------------------------------------------------------- /src/TestTargets/Types/Types.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/Types/Types.csproj -------------------------------------------------------------------------------- /src/TestTargets/single-file/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/single-file/Program.cs -------------------------------------------------------------------------------- /src/TestTargets/single-file/single-file.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTargets/single-file/single-file.csproj -------------------------------------------------------------------------------- /src/TestTasks/TestTasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTasks/TestTasks.csproj -------------------------------------------------------------------------------- /src/TestTasks/src/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTasks/src/Debugger.cs -------------------------------------------------------------------------------- /src/TestTasks/src/Dump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/src/TestTasks/src/Dump.cs -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/test.sh -------------------------------------------------------------------------------- /test_artifacts/arrays_wks_mini.coredump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/test_artifacts/arrays_wks_mini.coredump -------------------------------------------------------------------------------- /test_artifacts/big_file_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/test_artifacts/big_file_readme.txt -------------------------------------------------------------------------------- /test_artifacts/single_file_full.dmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/clrmd/HEAD/test_artifacts/single_file_full.dmp --------------------------------------------------------------------------------