├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── USERGUIDE.md ├── doc └── img │ ├── BluePlusTwoFromBlue.png │ ├── OrangePlusGreenReferencedByOrange.png │ ├── OrangePlusReachableFromOrange.png │ ├── OrangePlusReferencedFromOrange.png │ ├── OrangePlusReferencedGreen.png │ ├── OrangePlusReferrersToOrange.png │ ├── OrangePlusUnsignedReferencedByOrange.png │ ├── OrangePlusUnsignedThenCOWStringBody.png │ ├── UnlabeledGraph.png │ ├── chap-logo-large.png │ ├── chap-logo-small.png │ └── chap-logo.eps ├── src ├── Allocations │ ├── AnchorChainLister.h │ ├── AnchorDirectory.h │ ├── ContiguousImage.h │ ├── Describer.h │ ├── Directory.h │ ├── EdgePredicate.h │ ├── ExtendedVisitor.h │ ├── ExternalAnchorPointChecker.h │ ├── Graph.h │ ├── IndexedDistances.h │ ├── Iterators │ │ ├── Allocations.h │ │ ├── AnchorPoints.h │ │ ├── Anchored.h │ │ ├── Chain.h │ │ ├── Derived.h │ │ ├── ExactIncoming.h │ │ ├── ExternalAnchorPoints.h │ │ ├── ExternalAnchored.h │ │ ├── Free.h │ │ ├── FreeOutgoing.h │ │ ├── Incoming.h │ │ ├── Leaked.h │ │ ├── Outgoing.h │ │ ├── RegisterAnchorPoints.h │ │ ├── RegisterAnchored.h │ │ ├── ReverseChain.h │ │ ├── SingleAllocation.h │ │ ├── StackAnchorPoints.h │ │ ├── StackAnchored.h │ │ ├── StaticAnchorPoints.h │ │ ├── StaticAnchored.h │ │ ├── ThreadCached.h │ │ ├── ThreadOnlyAnchorPoints.h │ │ ├── ThreadOnlyAnchored.h │ │ ├── Unreferenced.h │ │ └── Used.h │ ├── ObscuredReferenceChecker.h │ ├── PatternDescriber.h │ ├── PatternDescriberRegistry.h │ ├── ReferenceConstraint.h │ ├── Set.h │ ├── SetCache.h │ ├── SignatureChecker.h │ ├── SignatureDirectory.h │ ├── SignatureSummary.h │ ├── Subcommands │ │ ├── DefaultSubcommands.h │ │ ├── Subcommand.h │ │ ├── SubcommandsForOneIterator.h │ │ └── SummarizeSignatures.h │ ├── TagHolder.h │ ├── Tagger.h │ ├── TaggerRunner.h │ └── Visitors │ │ ├── Counter.h │ │ ├── DefaultVisitorFactories.h │ │ ├── Describer.h │ │ ├── Enumerator.h │ │ ├── Explainer.h │ │ ├── Lister.h │ │ ├── Shower.h │ │ └── Summarizer.h ├── Annotator.h ├── AnnotatorRegistry.h ├── CPlusPlus │ ├── COWStringAllocationsTagger.h │ ├── COWStringBodyDescriber.h │ ├── DequeAllocationsTagger.h │ ├── DequeBlockDescriber.h │ ├── DequeMapDescriber.h │ ├── ListAllocationsTagger.h │ ├── ListNodeDescriber.h │ ├── LongStringAllocationsTagger.h │ ├── LongStringDescriber.h │ ├── MapOrSetAllocationsTagger.h │ ├── MapOrSetNodeDescriber.h │ ├── SSOStringAnnotator.h │ ├── Subcommands │ │ └── SummarizeStringUsers.h │ ├── TypeInfoDirectory.h │ ├── Unmangler.h │ ├── UnorderedMapOrSetAllocationsTagger.h │ ├── UnorderedMapOrSetBucketsDescriber.h │ ├── UnorderedMapOrSetNodeDescriber.h │ ├── VectorAllocationsTagger.h │ └── VectorBodyDescriber.h ├── Commands │ ├── CountCommand.h │ ├── DescribeCommand.h │ ├── EnumerateCommand.h │ ├── ExplainCommand.h │ ├── LineInfo.h │ ├── ListCommand.h │ ├── Runner.h │ ├── SetBasedCommand.h │ ├── ShowCommand.h │ ├── Subcommand.h │ └── SummarizeCommand.h ├── CompoundDescriber.h ├── Describer.h ├── FileAnalyzer.cpp ├── FileAnalyzer.h ├── FileAnalyzerFactory.h ├── FileImage.h ├── FileMappedRangeDirectory.h ├── FollyFibers │ ├── InfrastructureFinder.h │ └── StackOverflowGuardDescriber.h ├── GoLang │ ├── AllocationsTagger.h │ ├── FinderGroup.h │ ├── GoChannelBufferDescriber.h │ ├── GoChannelDescriber.h │ ├── GoRoutineDescriber.h │ ├── GoRoutineStackDescriber.h │ ├── InfrastructureFinder.h │ ├── MappedPageRangeAllocationFinder.h │ └── MappedPageRangeIterator.h ├── InModuleDescriber.h ├── KnownAddressDescriber.h ├── LibcMalloc │ ├── CorruptionSkipper.h │ ├── DoublyLinkedListCorruptionChecker.h │ ├── FastBinFreeStatusFixer.h │ ├── FinderGroup.h │ ├── HeapAllocationFinder.h │ ├── HeapDescriber.h │ ├── InfrastructureFinder.h │ ├── MainArenaAllocationFinder.h │ ├── MainArenaRunDescriber.h │ ├── MmappedAllocationDescriber.h │ ├── MmappedAllocationFinder.h │ └── Subcommands │ │ └── DescribeArenas.h ├── Linux │ ├── ELFCore32FileAnalyzerFactory.h │ ├── ELFCore64FileAnalyzerFactory.h │ ├── ELFCoreFileAnalyzer.h │ ├── ELFImage.h │ ├── ELFModuleImage.h │ ├── ELFModuleImageFactory.h │ ├── LinuxProcessImage.h │ ├── ModuleFinder.h │ └── ProcessImageCommandHandler.h ├── ModuleAddressAnnotator.h ├── ModuleAlignmentGapDescriber.h ├── ModuleCommands │ ├── DescribeModules.h │ └── ListModules.h ├── ModuleDirectory.h ├── ModuleImage.h ├── ModuleImageFactory.h ├── ModuleImageReader.h ├── OpenSSLAllocationsTagger.h ├── PThread │ ├── InfrastructureFinder.h │ └── StackOverflowGuardDescriber.h ├── ProcessImage.h ├── ProcessImageCommandHandler.h ├── Python │ ├── AllocationsTagger.h │ ├── ArenaDescriber.h │ ├── ArenaStructArrayDescriber.h │ ├── BlockAllocationFinder.h │ ├── ContainerPythonObjectDescriber.h │ ├── DequeBlockDescriber.h │ ├── FinderGroup.h │ ├── InfrastructureFinder.h │ ├── ListItemsDescriber.h │ ├── MallocedArenaDescriber.h │ ├── PyDictKeysObjectDescriber.h │ ├── PyDictValuesArrayDescriber.h │ ├── SimplePythonObjectDescriber.h │ └── TypeDirectory.h ├── RangeMapper.h ├── SSLDescriber.h ├── SSL_CTXDescriber.h ├── SizedTally.h ├── StackCommands │ ├── CountStacks.h │ ├── DescribeStacks.h │ ├── ListStacks.h │ └── SummarizeStacks.h ├── StackDescriber.h ├── StackRegistry.h ├── TCMalloc │ ├── FinderGroup.h │ ├── InfrastructureFinder.h │ ├── PageMapAllocationFinder.h │ └── PageMapIterator.h ├── ThreadMap.h ├── UnfilledImages.h ├── VirtualAddressMap.h ├── VirtualAddressMapCommandHandler.h ├── VirtualAddressMapCommands │ ├── AddressFilter.h │ ├── CountRanges.h │ ├── DescribePointers.h │ ├── DescribeRangeRefs.h │ ├── DescribeRanges.h │ ├── DescribeRelRefs.h │ ├── DumpCommand.h │ ├── EnumeratePointers.h │ ├── EnumerateRangeRefs.h │ ├── EnumerateRelRefs.h │ ├── ListRanges.h │ └── SummarizeRanges.h └── VirtualMemoryPartition.h ├── test ├── README ├── expectedOutput │ ├── CMakeLists.txt │ ├── ELF32 │ │ └── LibcMalloc │ │ │ ├── DequePatternTest │ │ │ ├── core.24263 │ │ │ ├── core.24263.count_used_%DequeBlock │ │ │ ├── core.24263.count_used_%DequeBlock::maxincoming:%DequeMap=0::skipUnfavoredReferences:true │ │ │ ├── core.24263.count_used_%DequeBlock::maxincoming:%DequeMap=1::skipUnfavoredReferences:true │ │ │ ├── core.24263.count_used_%DequeBlock::minincoming:%DequeMap=1::skipUnfavoredReferences:true │ │ │ ├── core.24263.count_used_%DequeBlock::minincoming:%DequeMap=2::skipUnfavoredReferences:true │ │ │ ├── core.24263.count_used_%DequeMap │ │ │ ├── core.24263.count_used_%DequeMap::maxfreeoutgoing:%DequeBlock=0::skipTaintedReferences:true │ │ │ ├── core.24263.count_used_%DequeMap::maxoutgoing:%DequeBlock=0::skipTaintedReferences:true │ │ │ ├── core.24263.count_used_%DequeMap::minfreeoutgoing:%DequeBlock=1::skipTaintedReferences:true │ │ │ ├── core.24263.count_used_%DequeMap::minoutgoing:%DequeBlock=1::skipTaintedReferences:true │ │ │ ├── core.24263.describe_exactincoming_8061a50::skipUnfavoredReferences:true │ │ │ ├── core.24263.describe_freeoutgoing_8060fb0 │ │ │ ├── core.24263.describe_freeoutgoing_8060fb0::skipTaintedReferences:true │ │ │ ├── core.24263.describe_incoming_8061a50::skipUnfavoredReferences:true │ │ │ ├── core.24263.describe_outgoing_8060fb0 │ │ │ ├── core.24263.describe_outgoing_8060fb0::skipTaintedReferences:true │ │ │ ├── core.24263.describe_used │ │ │ ├── core.24263.describe_used_%DequeBlock │ │ │ ├── core.24263.describe_used_%DequeMap │ │ │ ├── core.24263.describe_used_%DequeMap::extend:%DequeMap->%DequeBlock::skipTaintedReferences:true │ │ │ ├── core.24263.explain_used │ │ │ ├── core.24263.explain_used_%DequeBlock │ │ │ ├── core.24263.explain_used_%DequeMap │ │ │ ├── core.24263.summarize_used_%DequeBlock::extend:%DequeBlock->::skipTaintedReferences:true │ │ │ ├── core.24263.summarize_used_%DequeBlock::extend:%DequeBlock<-::skipUnfavoredReferences:true │ │ │ ├── core.24263.summarize_used_%DequeMap::extend:%DequeMap->%DequeBlock::skipTaintedReferences:true │ │ │ ├── core.24263.symreqs │ │ │ └── run │ │ │ ├── LongStringTest │ │ │ ├── core.26548 │ │ │ ├── core.26548.describe_used │ │ │ ├── core.26548.describe_used_%LongString │ │ │ ├── core.26548.explain_used │ │ │ ├── core.26548.explain_used_%LongString │ │ │ ├── core.26548.list_used::extend:->%LongString=>StopHere::minoutgoing:%LongString=1 │ │ │ ├── core.26548.list_used::minoutgoing:%LongString=1 │ │ │ ├── core.26548.symreqs │ │ │ └── run │ │ │ ├── OneAllocated │ │ │ ├── core.2088 │ │ │ ├── core.2088.count_anchored │ │ │ ├── core.2088.count_anchorpoints │ │ │ ├── core.2088.count_exactincoming_804a008 │ │ │ ├── core.2088.count_free │ │ │ ├── core.2088.count_incoming_804a008 │ │ │ ├── core.2088.count_leaked │ │ │ ├── core.2088.count_outgoing_804a008 │ │ │ ├── core.2088.count_registeranchored │ │ │ ├── core.2088.count_registeranchorpoints │ │ │ ├── core.2088.count_stackanchored │ │ │ ├── core.2088.count_stackanchorpoints │ │ │ ├── core.2088.count_staticanchored │ │ │ ├── core.2088.count_staticanchorpoints │ │ │ ├── core.2088.count_used │ │ │ ├── core.2088.enumerate_anchored │ │ │ ├── core.2088.enumerate_anchorpoints │ │ │ ├── core.2088.enumerate_exactincoming_804a008 │ │ │ ├── core.2088.enumerate_free │ │ │ ├── core.2088.enumerate_incoming_804a008 │ │ │ ├── core.2088.enumerate_leaked │ │ │ ├── core.2088.enumerate_outgoing_804a008 │ │ │ ├── core.2088.enumerate_pointers_804a008 │ │ │ ├── core.2088.enumerate_registeranchored │ │ │ ├── core.2088.enumerate_registeranchorpoints │ │ │ ├── core.2088.enumerate_stackanchored │ │ │ ├── core.2088.enumerate_stackanchorpoints │ │ │ ├── core.2088.enumerate_staticanchored │ │ │ ├── core.2088.enumerate_staticanchorpoints │ │ │ ├── core.2088.enumerate_used │ │ │ ├── core.2088.list_anchored │ │ │ ├── core.2088.list_anchorpoints │ │ │ ├── core.2088.list_exactincoming_804a008 │ │ │ ├── core.2088.list_free │ │ │ ├── core.2088.list_incoming_804a008 │ │ │ ├── core.2088.list_leaked │ │ │ ├── core.2088.list_outgoing_804a008 │ │ │ ├── core.2088.list_registeranchored │ │ │ ├── core.2088.list_registeranchorpoints │ │ │ ├── core.2088.list_stackanchored │ │ │ ├── core.2088.list_stackanchorpoints │ │ │ ├── core.2088.list_staticanchored │ │ │ ├── core.2088.list_staticanchorpoints │ │ │ ├── core.2088.list_used │ │ │ ├── core.2088.show_anchored │ │ │ ├── core.2088.show_anchorpoints │ │ │ ├── core.2088.show_exactincoming_804a008 │ │ │ ├── core.2088.show_incoming_804a008 │ │ │ ├── core.2088.show_leaked │ │ │ ├── core.2088.show_outgoing_804a008 │ │ │ ├── core.2088.show_registeranchored │ │ │ ├── core.2088.show_registeranchorpoints │ │ │ ├── core.2088.show_stackanchored │ │ │ ├── core.2088.show_stackanchorpoints │ │ │ ├── core.2088.show_staticanchored │ │ │ ├── core.2088.show_staticanchorpoints │ │ │ ├── core.2088.show_used │ │ │ ├── core.2088.summarize_anchored │ │ │ ├── core.2088.summarize_anchorpoints │ │ │ ├── core.2088.summarize_exactincoming_804a008 │ │ │ ├── core.2088.summarize_free │ │ │ ├── core.2088.summarize_incoming_804a008 │ │ │ ├── core.2088.summarize_leaked │ │ │ ├── core.2088.summarize_outgoing_804a008 │ │ │ ├── core.2088.summarize_registeranchored │ │ │ ├── core.2088.summarize_registeranchorpoints │ │ │ ├── core.2088.summarize_stackanchored │ │ │ ├── core.2088.summarize_stackanchorpoints │ │ │ ├── core.2088.summarize_staticanchored │ │ │ ├── core.2088.summarize_staticanchorpoints │ │ │ ├── core.2088.summarize_used │ │ │ ├── core.2088.symreqs │ │ │ └── run │ │ │ ├── OneLeaked │ │ │ ├── core.51504 │ │ │ ├── core.51504.count_anchored │ │ │ ├── core.51504.count_anchorpoints │ │ │ ├── core.51504.count_exactincoming_804a008 │ │ │ ├── core.51504.count_exactincoming_804a018 │ │ │ ├── core.51504.count_free │ │ │ ├── core.51504.count_incoming_804a008 │ │ │ ├── core.51504.count_incoming_804a018 │ │ │ ├── core.51504.count_leaked │ │ │ ├── core.51504.count_outgoing_804a008 │ │ │ ├── core.51504.count_outgoing_804a018 │ │ │ ├── core.51504.count_registeranchored │ │ │ ├── core.51504.count_registeranchorpoints │ │ │ ├── core.51504.count_stackanchored │ │ │ ├── core.51504.count_stackanchorpoints │ │ │ ├── core.51504.count_staticanchored │ │ │ ├── core.51504.count_staticanchorpoints │ │ │ ├── core.51504.count_used │ │ │ ├── core.51504.enumerate_anchored │ │ │ ├── core.51504.enumerate_anchorpoints │ │ │ ├── core.51504.enumerate_exactincoming_804a008 │ │ │ ├── core.51504.enumerate_exactincoming_804a018 │ │ │ ├── core.51504.enumerate_free │ │ │ ├── core.51504.enumerate_incoming_804a008 │ │ │ ├── core.51504.enumerate_incoming_804a018 │ │ │ ├── core.51504.enumerate_leaked │ │ │ ├── core.51504.enumerate_outgoing_804a008 │ │ │ ├── core.51504.enumerate_outgoing_804a018 │ │ │ ├── core.51504.enumerate_pointers_804a008 │ │ │ ├── core.51504.enumerate_pointers_804a018 │ │ │ ├── core.51504.enumerate_registeranchored │ │ │ ├── core.51504.enumerate_registeranchorpoints │ │ │ ├── core.51504.enumerate_stackanchored │ │ │ ├── core.51504.enumerate_stackanchorpoints │ │ │ ├── core.51504.enumerate_staticanchored │ │ │ ├── core.51504.enumerate_staticanchorpoints │ │ │ ├── core.51504.enumerate_used │ │ │ ├── core.51504.list_anchored │ │ │ ├── core.51504.list_anchorpoints │ │ │ ├── core.51504.list_exactincoming_804a008 │ │ │ ├── core.51504.list_exactincoming_804a018 │ │ │ ├── core.51504.list_free │ │ │ ├── core.51504.list_incoming_804a008 │ │ │ ├── core.51504.list_incoming_804a018 │ │ │ ├── core.51504.list_leaked │ │ │ ├── core.51504.list_outgoing_804a008 │ │ │ ├── core.51504.list_outgoing_804a018 │ │ │ ├── core.51504.list_registeranchored │ │ │ ├── core.51504.list_registeranchorpoints │ │ │ ├── core.51504.list_stackanchored │ │ │ ├── core.51504.list_stackanchorpoints │ │ │ ├── core.51504.list_staticanchored │ │ │ ├── core.51504.list_staticanchorpoints │ │ │ ├── core.51504.list_used │ │ │ ├── core.51504.show_anchored │ │ │ ├── core.51504.show_anchorpoints │ │ │ ├── core.51504.show_exactincoming_804a008 │ │ │ ├── core.51504.show_exactincoming_804a018 │ │ │ ├── core.51504.show_incoming_804a008 │ │ │ ├── core.51504.show_incoming_804a018 │ │ │ ├── core.51504.show_leaked │ │ │ ├── core.51504.show_outgoing_804a008 │ │ │ ├── core.51504.show_outgoing_804a018 │ │ │ ├── core.51504.show_registeranchored │ │ │ ├── core.51504.show_registeranchorpoints │ │ │ ├── core.51504.show_stackanchored │ │ │ ├── core.51504.show_stackanchorpoints │ │ │ ├── core.51504.show_staticanchored │ │ │ ├── core.51504.show_staticanchorpoints │ │ │ ├── core.51504.show_used │ │ │ ├── core.51504.summarize_anchored │ │ │ ├── core.51504.summarize_anchorpoints │ │ │ ├── core.51504.summarize_exactincoming_804a008 │ │ │ ├── core.51504.summarize_exactincoming_804a018 │ │ │ ├── core.51504.summarize_free │ │ │ ├── core.51504.summarize_incoming_804a008 │ │ │ ├── core.51504.summarize_incoming_804a018 │ │ │ ├── core.51504.summarize_leaked │ │ │ ├── core.51504.summarize_outgoing_804a008 │ │ │ ├── core.51504.summarize_outgoing_804a018 │ │ │ ├── core.51504.summarize_registeranchored │ │ │ ├── core.51504.summarize_registeranchorpoints │ │ │ ├── core.51504.summarize_stackanchored │ │ │ ├── core.51504.summarize_stackanchorpoints │ │ │ ├── core.51504.summarize_staticanchored │ │ │ ├── core.51504.summarize_staticanchorpoints │ │ │ ├── core.51504.summarize_used │ │ │ ├── core.51504.symreqs │ │ │ └── run │ │ │ └── UnmanglingTest │ │ │ ├── core.27709 │ │ │ ├── core.27709.summarize_signatures │ │ │ ├── core.27709.summarize_used │ │ │ ├── core.27709.symreqs │ │ │ └── run │ ├── ELF64 │ │ ├── LibcMalloc │ │ │ ├── Demo6 │ │ │ │ ├── core.Demo6 │ │ │ │ ├── core.Demo6.count_inaccessible │ │ │ │ ├── core.Demo6.count_readonly │ │ │ │ ├── core.Demo6.count_rxonly │ │ │ │ ├── core.Demo6.count_writable │ │ │ │ ├── core.Demo6.describe_7ff37da7b000 │ │ │ │ ├── core.Demo6.describe_7ff37dc79fff │ │ │ │ ├── core.Demo6.describe_arenas │ │ │ │ ├── core.Demo6.describe_inaccessible │ │ │ │ ├── core.Demo6.describe_readonly │ │ │ │ ├── core.Demo6.describe_rxonly │ │ │ │ ├── core.Demo6.describe_stacks │ │ │ │ ├── core.Demo6.describe_used │ │ │ │ ├── core.Demo6.describe_writable │ │ │ │ ├── core.Demo6.explain_7ff37da7b000 │ │ │ │ ├── core.Demo6.explain_7ff37dc79fff │ │ │ │ ├── core.Demo6.explain_used │ │ │ │ ├── core.Demo6.find32_464c457f │ │ │ │ ├── core.Demo6.list_inaccessible │ │ │ │ ├── core.Demo6.list_modules │ │ │ │ ├── core.Demo6.list_readonly │ │ │ │ ├── core.Demo6.list_rxonly │ │ │ │ ├── core.Demo6.list_stacks │ │ │ │ ├── core.Demo6.list_staticanchorpoints │ │ │ │ ├── core.Demo6.list_writable │ │ │ │ ├── core.Demo6.show_used │ │ │ │ ├── core.Demo6.summarize_inaccessible │ │ │ │ ├── core.Demo6.summarize_readonly │ │ │ │ ├── core.Demo6.summarize_rxonly │ │ │ │ ├── core.Demo6.summarize_signatures │ │ │ │ ├── core.Demo6.summarize_writable │ │ │ │ ├── core.Demo6.symreqs │ │ │ │ └── run │ │ │ ├── DequePatternTest │ │ │ │ ├── core.14644 │ │ │ │ ├── core.14644.count_used_%DequeBlock │ │ │ │ ├── core.14644.count_used_%DequeBlock::maxincoming:%DequeMap=0::skipUnfavoredReferences:true │ │ │ │ ├── core.14644.count_used_%DequeBlock::maxincoming:%DequeMap=1::skipUnfavoredReferences:true │ │ │ │ ├── core.14644.count_used_%DequeBlock::minincoming:%DequeMap=1::skipUnfavoredReferences:true │ │ │ │ ├── core.14644.count_used_%DequeBlock::minincoming:%DequeMap=2::skipUnfavoredReferences:true │ │ │ │ ├── core.14644.count_used_%DequeMap │ │ │ │ ├── core.14644.count_used_%DequeMap::maxfreeoutgoing:%DequeBlock=0::skipTaintedReferences:true │ │ │ │ ├── core.14644.count_used_%DequeMap::maxoutgoing:%DequeBlock=0::skipTaintedReferences:true │ │ │ │ ├── core.14644.count_used_%DequeMap::minfreeoutgoing:%DequeBlock=1::skipTaintedReferences:true │ │ │ │ ├── core.14644.count_used_%DequeMap::minoutgoing:%DequeBlock=1::skipTaintedReferences:true │ │ │ │ ├── core.14644.describe_allocation_61e1a0::showUpTo:100 │ │ │ │ ├── core.14644.describe_exactincoming_61e450::skipUnfavoredReferences:true │ │ │ │ ├── core.14644.describe_freeoutgoing_61c980 │ │ │ │ ├── core.14644.describe_freeoutgoing_61c980::skipTaintedReferences:true │ │ │ │ ├── core.14644.describe_incoming_61e450::skipUnfavoredReferences:true │ │ │ │ ├── core.14644.describe_outgoing_61e1a0 │ │ │ │ ├── core.14644.describe_outgoing_61e1a0::skipTaintedReferences:true │ │ │ │ ├── core.14644.describe_used │ │ │ │ ├── core.14644.describe_used_%DequeBlock │ │ │ │ ├── core.14644.describe_used_%DequeMap │ │ │ │ ├── core.14644.describe_used_%DequeMap::extend:%DequeMap->%DequeBlock::skipTaintedReferences:true │ │ │ │ ├── core.14644.explain_used │ │ │ │ ├── core.14644.explain_used_%DequeBlock │ │ │ │ ├── core.14644.explain_used_%DequeMap │ │ │ │ ├── core.14644.summarize_used_%DequeBlock::extend:%DequeBlock->::skipTaintedReferences:true │ │ │ │ ├── core.14644.summarize_used_%DequeBlock::extend:%DequeBlock<-::skipUnfavoredReferences:true │ │ │ │ ├── core.14644.summarize_used_%DequeMap::extend:%DequeMap->%DequeBlock::skipTaintedReferences:true │ │ │ │ ├── core.14644.symreqs │ │ │ │ └── run │ │ │ ├── HasContainersAndSymbols │ │ │ │ ├── core.38066 │ │ │ │ ├── core.38066.count_used │ │ │ │ ├── core.38066.count_used::extend:-> │ │ │ │ ├── core.38066.count_used::extend:<- │ │ │ │ ├── core.38066.describe_used │ │ │ │ ├── core.38066.enumerate_used │ │ │ │ ├── core.38066.enumerate_used_HasPair::extend:HasPair-> │ │ │ │ ├── core.38066.enumerate_used_HasPair::extend:HasPair<- │ │ │ │ ├── core.38066.list_used │ │ │ │ ├── core.38066.list_used_HasPair::extend:-> │ │ │ │ ├── core.38066.list_used_HasPair::extend:<- │ │ │ │ ├── core.38066.show_used │ │ │ │ ├── core.38066.show_used::commentExtensions:true::extend:-> │ │ │ │ ├── core.38066.show_used::commentExtensions:true::extend:<- │ │ │ │ ├── core.38066.show_used::extend:-> │ │ │ │ ├── core.38066.show_used::extend:<- │ │ │ │ ├── core.38066.show_used_HasPair::extend:->@0 │ │ │ │ ├── core.38066.show_used_HasPair::extend:->@100 │ │ │ │ ├── core.38066.show_used_HasPair::extend:->HasList │ │ │ │ ├── core.38066.show_used_HasPair::extend:->HasSet │ │ │ │ ├── core.38066.show_used_HasPair::extend:@10-> │ │ │ │ ├── core.38066.show_used_HasPair::extend:@8-> │ │ │ │ ├── core.38066.show_used_HasPair::extend:HasPair->HasSet:HasSet->- │ │ │ │ ├── core.38066.show_used_HasPair::extend:HasPair@10->HasList@0 │ │ │ │ ├── core.38066.show_used_HasPair::extend:HasPair@10->HasSet@0 │ │ │ │ ├── core.38066.show_used_HasPair::extend:HasPair@8->HasList@0 │ │ │ │ ├── core.38066.show_used_HasPair::extend:HasPair@8->HasSet@0 │ │ │ │ ├── core.38066.show_used_HasSet::commentExtensions:true::extend:HasSet@18->@0=>mapNode:mapNode@10->@0=>mapNode:mapNode@18->@0=>mapNode:mapNode@20->=>StopHere │ │ │ │ ├── core.38066.show_used_HasSet::extend:HasSet@18->@0=>mapNode:mapNode@10->@0=>mapNode:mapNode@18->@0=>mapNode:mapNode@20->=>StopHere │ │ │ │ ├── core.38066.show_used_HasVector::extend:<- │ │ │ │ ├── core.38066.summarize_used │ │ │ │ ├── core.38066.summarize_used::sortby:bytes │ │ │ │ ├── core.38066.symreqs │ │ │ │ └── run │ │ │ ├── HasInheritance │ │ │ │ ├── core.HasInheritance.37 │ │ │ │ ├── core.HasInheritance.37.describe_used::minoutgoing:S1=4 │ │ │ │ ├── core.HasInheritance.37.describe_used::minoutgoing:S2=2 │ │ │ │ ├── core.HasInheritance.37.describe_used::minoutgoing:S2=3 │ │ │ │ ├── core.HasInheritance.37.describe_used_%VectorBody::extend:->S1 │ │ │ │ ├── core.HasInheritance.37.describe_used_%VectorBody::extend:->S2 │ │ │ │ ├── core.HasInheritance.37.describe_used_%VectorBody::extend:->S3 │ │ │ │ ├── core.HasInheritance.37.describe_used_%VectorBody::extend:->S4 │ │ │ │ ├── core.HasInheritance.37.describe_used_%VectorBody::maxoutgoing:S1=3 │ │ │ │ ├── core.HasInheritance.37.describe_used_%VectorBody::maxoutgoing:S2=1 │ │ │ │ ├── core.HasInheritance.37.describe_used_%VectorBody::maxoutgoing:S2=2 │ │ │ │ ├── core.HasInheritance.37.describe_used_S1 │ │ │ │ ├── core.HasInheritance.37.describe_used_S2 │ │ │ │ ├── core.HasInheritance.37.describe_used_S3 │ │ │ │ ├── core.HasInheritance.37.describe_used_S4 │ │ │ │ ├── core.HasInheritance.37.summarize_signatures │ │ │ │ ├── core.HasInheritance.37.symreqs │ │ │ │ └── run │ │ │ ├── HasStatic │ │ │ │ ├── core.26574 │ │ │ │ ├── core.26574.describe_used_%COWStringBody │ │ │ │ ├── core.26574.describe_used_%COWStringBody::extend:%COWStringBody<- │ │ │ │ ├── core.26574.explain_used │ │ │ │ ├── core.26574.list_staticanchorpoints │ │ │ │ ├── core.26574.list_used::minoutgoing:%COWStringBody=1 │ │ │ │ ├── core.26574.show_used │ │ │ │ ├── core.26574.symdefs │ │ │ │ ├── core.26574.symreqs │ │ │ │ └── run │ │ │ ├── HasSymbols_CoreHasMangledTypeNames_NoSymdefs │ │ │ │ ├── core.34218 │ │ │ │ ├── core.34218.count_anchored │ │ │ │ ├── core.34218.count_anchorpoints │ │ │ │ ├── core.34218.count_exactincoming_602010 │ │ │ │ ├── core.34218.count_exactincoming_613c20 │ │ │ │ ├── core.34218.count_exactincoming_613c40 │ │ │ │ ├── core.34218.count_free │ │ │ │ ├── core.34218.count_incoming_602010 │ │ │ │ ├── core.34218.count_incoming_613c20 │ │ │ │ ├── core.34218.count_incoming_613c40 │ │ │ │ ├── core.34218.count_leaked │ │ │ │ ├── core.34218.count_outgoing_602010 │ │ │ │ ├── core.34218.count_outgoing_613c20 │ │ │ │ ├── core.34218.count_outgoing_613c40 │ │ │ │ ├── core.34218.count_registeranchored │ │ │ │ ├── core.34218.count_registeranchorpoints │ │ │ │ ├── core.34218.count_stackanchored │ │ │ │ ├── core.34218.count_stackanchorpoints │ │ │ │ ├── core.34218.count_staticanchored │ │ │ │ ├── core.34218.count_staticanchorpoints │ │ │ │ ├── core.34218.count_used │ │ │ │ ├── core.34218.count_used_B │ │ │ │ ├── core.34218.count_used_D │ │ │ │ ├── core.34218.count_used_b │ │ │ │ ├── core.34218.count_used_d │ │ │ │ ├── core.34218.describe_pointers_602010 │ │ │ │ ├── core.34218.describe_pointers_613c20 │ │ │ │ ├── core.34218.describe_pointers_613c40 │ │ │ │ ├── core.34218.enumerate_anchored │ │ │ │ ├── core.34218.enumerate_anchorpoints │ │ │ │ ├── core.34218.enumerate_exactincoming_602010 │ │ │ │ ├── core.34218.enumerate_exactincoming_613c20 │ │ │ │ ├── core.34218.enumerate_exactincoming_613c40 │ │ │ │ ├── core.34218.enumerate_free │ │ │ │ ├── core.34218.enumerate_incoming_602010 │ │ │ │ ├── core.34218.enumerate_incoming_613c20 │ │ │ │ ├── core.34218.enumerate_incoming_613c40 │ │ │ │ ├── core.34218.enumerate_leaked │ │ │ │ ├── core.34218.enumerate_outgoing_602010 │ │ │ │ ├── core.34218.enumerate_outgoing_613c20 │ │ │ │ ├── core.34218.enumerate_outgoing_613c40 │ │ │ │ ├── core.34218.enumerate_pointers_602010 │ │ │ │ ├── core.34218.enumerate_pointers_613c20 │ │ │ │ ├── core.34218.enumerate_pointers_613c40 │ │ │ │ ├── core.34218.enumerate_registeranchored │ │ │ │ ├── core.34218.enumerate_registeranchorpoints │ │ │ │ ├── core.34218.enumerate_stackanchored │ │ │ │ ├── core.34218.enumerate_stackanchorpoints │ │ │ │ ├── core.34218.enumerate_staticanchored │ │ │ │ ├── core.34218.enumerate_staticanchorpoints │ │ │ │ ├── core.34218.enumerate_used │ │ │ │ ├── core.34218.list_anchored │ │ │ │ ├── core.34218.list_anchorpoints │ │ │ │ ├── core.34218.list_exactincoming_602010 │ │ │ │ ├── core.34218.list_exactincoming_613c20 │ │ │ │ ├── core.34218.list_exactincoming_613c40 │ │ │ │ ├── core.34218.list_free │ │ │ │ ├── core.34218.list_incoming_602010 │ │ │ │ ├── core.34218.list_incoming_613c20 │ │ │ │ ├── core.34218.list_incoming_613c40 │ │ │ │ ├── core.34218.list_leaked │ │ │ │ ├── core.34218.list_outgoing_602010 │ │ │ │ ├── core.34218.list_outgoing_613c20 │ │ │ │ ├── core.34218.list_outgoing_613c40 │ │ │ │ ├── core.34218.list_registeranchored │ │ │ │ ├── core.34218.list_registeranchorpoints │ │ │ │ ├── core.34218.list_stackanchored │ │ │ │ ├── core.34218.list_stackanchorpoints │ │ │ │ ├── core.34218.list_staticanchored │ │ │ │ ├── core.34218.list_staticanchorpoints │ │ │ │ ├── core.34218.list_used │ │ │ │ ├── core.34218.show_anchored │ │ │ │ ├── core.34218.show_anchorpoints │ │ │ │ ├── core.34218.show_exactincoming_602010 │ │ │ │ ├── core.34218.show_exactincoming_613c20 │ │ │ │ ├── core.34218.show_exactincoming_613c40 │ │ │ │ ├── core.34218.show_incoming_602010 │ │ │ │ ├── core.34218.show_incoming_613c20 │ │ │ │ ├── core.34218.show_incoming_613c40 │ │ │ │ ├── core.34218.show_leaked │ │ │ │ ├── core.34218.show_outgoing_602010 │ │ │ │ ├── core.34218.show_outgoing_613c20 │ │ │ │ ├── core.34218.show_outgoing_613c40 │ │ │ │ ├── core.34218.show_registeranchored │ │ │ │ ├── core.34218.show_registeranchorpoints │ │ │ │ ├── core.34218.show_stackanchored │ │ │ │ ├── core.34218.show_stackanchorpoints │ │ │ │ ├── core.34218.show_staticanchored │ │ │ │ ├── core.34218.show_staticanchorpoints │ │ │ │ ├── core.34218.show_used │ │ │ │ ├── core.34218.summarize_anchored │ │ │ │ ├── core.34218.summarize_anchorpoints │ │ │ │ ├── core.34218.summarize_exactincoming_602010 │ │ │ │ ├── core.34218.summarize_exactincoming_613c20 │ │ │ │ ├── core.34218.summarize_exactincoming_613c40 │ │ │ │ ├── core.34218.summarize_free │ │ │ │ ├── core.34218.summarize_incoming_602010 │ │ │ │ ├── core.34218.summarize_incoming_613c20 │ │ │ │ ├── core.34218.summarize_incoming_613c40 │ │ │ │ ├── core.34218.summarize_leaked │ │ │ │ ├── core.34218.summarize_outgoing_602010 │ │ │ │ ├── core.34218.summarize_outgoing_613c20 │ │ │ │ ├── core.34218.summarize_outgoing_613c40 │ │ │ │ ├── core.34218.summarize_registeranchored │ │ │ │ ├── core.34218.summarize_registeranchorpoints │ │ │ │ ├── core.34218.summarize_stackanchored │ │ │ │ ├── core.34218.summarize_stackanchorpoints │ │ │ │ ├── core.34218.summarize_staticanchored │ │ │ │ ├── core.34218.summarize_staticanchorpoints │ │ │ │ ├── core.34218.summarize_used │ │ │ │ ├── core.34218.symreqs │ │ │ │ └── run │ │ │ ├── JustABigOne │ │ │ │ ├── core.justABigOne │ │ │ │ ├── core.justABigOne.list_used │ │ │ │ ├── core.justABigOne.symreqs │ │ │ │ └── run │ │ │ ├── ListTest │ │ │ │ ├── core.52238 │ │ │ │ ├── core.52238.describe_used_%ListNode │ │ │ │ ├── core.52238.describe_used_%ListNode::commentExtensions:true::extend:%ListNode->%ListNode::maxincoming:%ListNode=0::skipUnfavoredReferences:true │ │ │ │ ├── core.52238.explain_used_%ListNode │ │ │ │ ├── core.52238.show_used │ │ │ │ ├── core.52238.show_used_%ListNode │ │ │ │ ├── core.52238.symreqs │ │ │ │ └── run │ │ │ ├── LongStringTest │ │ │ │ ├── core.26368 │ │ │ │ ├── core.26368.describe_used │ │ │ │ ├── core.26368.describe_used_%LongString │ │ │ │ ├── core.26368.explain_used │ │ │ │ ├── core.26368.explain_used_%LongString │ │ │ │ ├── core.26368.list_used::extend:->%LongString=>StopHere::minoutgoing:%LongString=1 │ │ │ │ ├── core.26368.list_used::minoutgoing:%LongString=1 │ │ │ │ ├── core.26368.symreqs │ │ │ │ └── run │ │ │ ├── MallocedPythonArenasTest │ │ │ │ ├── core.6792.bz2 │ │ │ │ ├── core.6792.count_used_%ContainerPythonObject │ │ │ │ ├── core.6792.count_used_%PyDictKeysObject │ │ │ │ ├── core.6792.count_used_%PythonListItems │ │ │ │ ├── core.6792.count_used_%SimplePythonObject │ │ │ │ ├── core.6792.describe_7f4026141010 │ │ │ │ ├── core.6792.describe_7f402618100f │ │ │ │ ├── core.6792.describe_used_%ContainerPythonObject │ │ │ │ ├── core.6792.describe_used_%PyDictKeysObject │ │ │ │ ├── core.6792.describe_used_%PythonArenaStructArray │ │ │ │ ├── core.6792.describe_used_%PythonArenaStructArray::extend:%PythonArenaStructArray->%PythonMallocedArena │ │ │ │ ├── core.6792.describe_used_%PythonListItems │ │ │ │ ├── core.6792.describe_used_%SimplePythonObject │ │ │ │ ├── core.6792.describe_writable │ │ │ │ ├── core.6792.list_used_%ContainerPythonObject │ │ │ │ ├── core.6792.list_used_%PyDictKeysObject │ │ │ │ ├── core.6792.list_used_%PythonListItems │ │ │ │ ├── core.6792.list_used_%SimplePythonObject │ │ │ │ ├── core.6792.symreqs │ │ │ │ └── run │ │ │ ├── MapOrSetPatternTest │ │ │ │ ├── core.59709 │ │ │ │ ├── core.59709.describe_used │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::extend:%MapOrSetNode->%MapOrSetNode::maxincoming:%MapOrSetNode=0::minincoming:1::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::extend:%MapOrSetNode->%MapOrSetNode::maxincoming:%MapOrSetNode=0::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::extend:%MapOrSetNode->%MapOrSetNode::maxincoming:0::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::extend:%MapOrSetNode<-::maxincoming:%MapOrSetNode=0::minincoming:1::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::extend:%MapOrSetNode<-::maxincoming:%MapOrSetNode=0::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::extend:%MapOrSetNode@8->::maxincoming:%MapOrSetNode=0:0::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::extend:%MapOrSetNode@8->::maxincoming:%MapOrSetNode=0::minincoming:1::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::maxincoming:%MapOrSetNode=0:0::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::maxincoming:%MapOrSetNode=0::minincoming:1::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::maxincoming:%MapOrSetNode=0::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.describe_used_%MapOrSetNode::commentExtensions:true::maxincoming:0::skipUnfavoredReferences:true │ │ │ │ ├── core.59709.explain_used │ │ │ │ ├── core.59709.explain_used_%MapOrSetNode │ │ │ │ ├── core.59709.list_used::minoutgoing:%MapOrSetNode=1 │ │ │ │ ├── core.59709.show_used::extend:->%MapOrSetNode=>StopHere::minoutgoing:%MapOrSetNode=1 │ │ │ │ ├── core.59709.show_used_%MapOrSetNode │ │ │ │ ├── core.59709.symreqs │ │ │ │ └── run │ │ │ ├── MmappedPythonArenasTest │ │ │ │ ├── core.63767.bz2 │ │ │ │ ├── core.63767.count_used_%ContainerPythonObject │ │ │ │ ├── core.63767.count_used_%PyDictKeysObject │ │ │ │ ├── core.63767.count_used_%PythonListItems │ │ │ │ ├── core.63767.count_used_%SimplePythonObject │ │ │ │ ├── core.63767.describe_7f5e7c166000 │ │ │ │ ├── core.63767.describe_7f5e7c1a5fff │ │ │ │ ├── core.63767.describe_used_%ContainerPythonObject │ │ │ │ ├── core.63767.describe_used_%PyDictKeysObject │ │ │ │ ├── core.63767.describe_used_%PythonArenaStructArray │ │ │ │ ├── core.63767.describe_used_%PythonArenaStructArray::extend:%PythonArenaStructArray->%PythonMallocedArena │ │ │ │ ├── core.63767.describe_used_%PythonListItems │ │ │ │ ├── core.63767.describe_used_%SimplePythonObject │ │ │ │ ├── core.63767.describe_writable │ │ │ │ ├── core.63767.list_used_%ContainerPythonObject │ │ │ │ ├── core.63767.list_used_%PyDictKeysObject │ │ │ │ ├── core.63767.list_used_%PythonListItems │ │ │ │ ├── core.63767.list_used_%SimplePythonObject │ │ │ │ ├── core.63767.symreqs │ │ │ │ └── run │ │ │ ├── OneAllocated │ │ │ │ ├── core.48555 │ │ │ │ ├── core.48555.count_anchored │ │ │ │ ├── core.48555.count_anchorpoints │ │ │ │ ├── core.48555.count_exactincoming_601010 │ │ │ │ ├── core.48555.count_free │ │ │ │ ├── core.48555.count_incoming_601010 │ │ │ │ ├── core.48555.count_leaked │ │ │ │ ├── core.48555.count_outgoing_601010 │ │ │ │ ├── core.48555.count_registeranchored │ │ │ │ ├── core.48555.count_registeranchorpoints │ │ │ │ ├── core.48555.count_stackanchored │ │ │ │ ├── core.48555.count_stackanchorpoints │ │ │ │ ├── core.48555.count_staticanchored │ │ │ │ ├── core.48555.count_staticanchorpoints │ │ │ │ ├── core.48555.count_used │ │ │ │ ├── core.48555.enumerate_anchored │ │ │ │ ├── core.48555.enumerate_anchorpoints │ │ │ │ ├── core.48555.enumerate_exactincoming_601010 │ │ │ │ ├── core.48555.enumerate_free │ │ │ │ ├── core.48555.enumerate_incoming_601010 │ │ │ │ ├── core.48555.enumerate_leaked │ │ │ │ ├── core.48555.enumerate_outgoing_601010 │ │ │ │ ├── core.48555.enumerate_pointers_601010 │ │ │ │ ├── core.48555.enumerate_registeranchored │ │ │ │ ├── core.48555.enumerate_registeranchorpoints │ │ │ │ ├── core.48555.enumerate_stackanchored │ │ │ │ ├── core.48555.enumerate_stackanchorpoints │ │ │ │ ├── core.48555.enumerate_staticanchored │ │ │ │ ├── core.48555.enumerate_staticanchorpoints │ │ │ │ ├── core.48555.enumerate_used │ │ │ │ ├── core.48555.list_anchored │ │ │ │ ├── core.48555.list_anchorpoints │ │ │ │ ├── core.48555.list_exactincoming_601010 │ │ │ │ ├── core.48555.list_free │ │ │ │ ├── core.48555.list_incoming_601010 │ │ │ │ ├── core.48555.list_leaked │ │ │ │ ├── core.48555.list_outgoing_601010 │ │ │ │ ├── core.48555.list_registeranchored │ │ │ │ ├── core.48555.list_registeranchorpoints │ │ │ │ ├── core.48555.list_stackanchored │ │ │ │ ├── core.48555.list_stackanchorpoints │ │ │ │ ├── core.48555.list_staticanchored │ │ │ │ ├── core.48555.list_staticanchorpoints │ │ │ │ ├── core.48555.list_used │ │ │ │ ├── core.48555.show_anchored │ │ │ │ ├── core.48555.show_anchorpoints │ │ │ │ ├── core.48555.show_exactincoming_601010 │ │ │ │ ├── core.48555.show_incoming_601010 │ │ │ │ ├── core.48555.show_leaked │ │ │ │ ├── core.48555.show_outgoing_601010 │ │ │ │ ├── core.48555.show_registeranchored │ │ │ │ ├── core.48555.show_registeranchorpoints │ │ │ │ ├── core.48555.show_stackanchored │ │ │ │ ├── core.48555.show_stackanchorpoints │ │ │ │ ├── core.48555.show_staticanchored │ │ │ │ ├── core.48555.show_staticanchorpoints │ │ │ │ ├── core.48555.show_used │ │ │ │ ├── core.48555.summarize_anchored │ │ │ │ ├── core.48555.summarize_anchorpoints │ │ │ │ ├── core.48555.summarize_exactincoming_601010 │ │ │ │ ├── core.48555.summarize_free │ │ │ │ ├── core.48555.summarize_incoming_601010 │ │ │ │ ├── core.48555.summarize_leaked │ │ │ │ ├── core.48555.summarize_outgoing_601010 │ │ │ │ ├── core.48555.summarize_registeranchored │ │ │ │ ├── core.48555.summarize_registeranchorpoints │ │ │ │ ├── core.48555.summarize_stackanchored │ │ │ │ ├── core.48555.summarize_stackanchorpoints │ │ │ │ ├── core.48555.summarize_staticanchored │ │ │ │ ├── core.48555.summarize_staticanchorpoints │ │ │ │ ├── core.48555.summarize_used │ │ │ │ ├── core.48555.symreqs │ │ │ │ └── run │ │ │ ├── OneHasFreeOutgoing │ │ │ │ ├── core.5661 │ │ │ │ ├── core.5661.count_freeoutgoing_6030b0 │ │ │ │ ├── core.5661.count_outgoing_6030b0 │ │ │ │ ├── core.5661.enumerate_freeoutgoing_6030b0 │ │ │ │ ├── core.5661.enumerate_outgoing_6030b0 │ │ │ │ ├── core.5661.list_free │ │ │ │ ├── core.5661.list_freeoutgoing_6030b0 │ │ │ │ ├── core.5661.list_outgoing_6030b0 │ │ │ │ ├── core.5661.show_free::maxsize:100 │ │ │ │ ├── core.5661.show_freeoutgoing_6030b0 │ │ │ │ ├── core.5661.show_outgoing_6030b0 │ │ │ │ ├── core.5661.show_used │ │ │ │ ├── core.5661.summarize_freeoutgoing_6030b0 │ │ │ │ ├── core.5661.summarize_outgoing_6030b0 │ │ │ │ ├── core.5661.symreqs │ │ │ │ └── run │ │ │ ├── OneLeaked │ │ │ │ ├── core.20675 │ │ │ │ ├── core.20675.count_anchored │ │ │ │ ├── core.20675.count_anchorpoints │ │ │ │ ├── core.20675.count_exactincoming_601010 │ │ │ │ ├── core.20675.count_exactincoming_601030 │ │ │ │ ├── core.20675.count_free │ │ │ │ ├── core.20675.count_incoming_601010 │ │ │ │ ├── core.20675.count_incoming_601030 │ │ │ │ ├── core.20675.count_leaked │ │ │ │ ├── core.20675.count_outgoing_601010 │ │ │ │ ├── core.20675.count_outgoing_601030 │ │ │ │ ├── core.20675.count_registeranchored │ │ │ │ ├── core.20675.count_registeranchorpoints │ │ │ │ ├── core.20675.count_stackanchored │ │ │ │ ├── core.20675.count_stackanchorpoints │ │ │ │ ├── core.20675.count_staticanchored │ │ │ │ ├── core.20675.count_staticanchorpoints │ │ │ │ ├── core.20675.count_used │ │ │ │ ├── core.20675.enumerate_anchored │ │ │ │ ├── core.20675.enumerate_anchorpoints │ │ │ │ ├── core.20675.enumerate_exactincoming_601010 │ │ │ │ ├── core.20675.enumerate_exactincoming_601030 │ │ │ │ ├── core.20675.enumerate_free │ │ │ │ ├── core.20675.enumerate_incoming_601010 │ │ │ │ ├── core.20675.enumerate_incoming_601030 │ │ │ │ ├── core.20675.enumerate_leaked │ │ │ │ ├── core.20675.enumerate_outgoing_601010 │ │ │ │ ├── core.20675.enumerate_outgoing_601030 │ │ │ │ ├── core.20675.enumerate_pointers_601010 │ │ │ │ ├── core.20675.enumerate_pointers_601030 │ │ │ │ ├── core.20675.enumerate_registeranchored │ │ │ │ ├── core.20675.enumerate_registeranchorpoints │ │ │ │ ├── core.20675.enumerate_stackanchored │ │ │ │ ├── core.20675.enumerate_stackanchorpoints │ │ │ │ ├── core.20675.enumerate_staticanchored │ │ │ │ ├── core.20675.enumerate_staticanchorpoints │ │ │ │ ├── core.20675.enumerate_used │ │ │ │ ├── core.20675.list_anchored │ │ │ │ ├── core.20675.list_anchorpoints │ │ │ │ ├── core.20675.list_exactincoming_601010 │ │ │ │ ├── core.20675.list_exactincoming_601030 │ │ │ │ ├── core.20675.list_free │ │ │ │ ├── core.20675.list_incoming_601010 │ │ │ │ ├── core.20675.list_incoming_601030 │ │ │ │ ├── core.20675.list_leaked │ │ │ │ ├── core.20675.list_outgoing_601010 │ │ │ │ ├── core.20675.list_outgoing_601030 │ │ │ │ ├── core.20675.list_registeranchored │ │ │ │ ├── core.20675.list_registeranchorpoints │ │ │ │ ├── core.20675.list_stackanchored │ │ │ │ ├── core.20675.list_stackanchorpoints │ │ │ │ ├── core.20675.list_staticanchored │ │ │ │ ├── core.20675.list_staticanchorpoints │ │ │ │ ├── core.20675.list_used │ │ │ │ ├── core.20675.show_anchored │ │ │ │ ├── core.20675.show_anchorpoints │ │ │ │ ├── core.20675.show_exactincoming_601010 │ │ │ │ ├── core.20675.show_exactincoming_601030 │ │ │ │ ├── core.20675.show_incoming_601010 │ │ │ │ ├── core.20675.show_incoming_601030 │ │ │ │ ├── core.20675.show_leaked │ │ │ │ ├── core.20675.show_outgoing_601010 │ │ │ │ ├── core.20675.show_outgoing_601030 │ │ │ │ ├── core.20675.show_registeranchored │ │ │ │ ├── core.20675.show_registeranchorpoints │ │ │ │ ├── core.20675.show_stackanchored │ │ │ │ ├── core.20675.show_stackanchorpoints │ │ │ │ ├── core.20675.show_staticanchored │ │ │ │ ├── core.20675.show_staticanchorpoints │ │ │ │ ├── core.20675.show_used │ │ │ │ ├── core.20675.summarize_anchored │ │ │ │ ├── core.20675.summarize_anchorpoints │ │ │ │ ├── core.20675.summarize_exactincoming_601010 │ │ │ │ ├── core.20675.summarize_exactincoming_601030 │ │ │ │ ├── core.20675.summarize_free │ │ │ │ ├── core.20675.summarize_incoming_601010 │ │ │ │ ├── core.20675.summarize_incoming_601030 │ │ │ │ ├── core.20675.summarize_leaked │ │ │ │ ├── core.20675.summarize_outgoing_601010 │ │ │ │ ├── core.20675.summarize_outgoing_601030 │ │ │ │ ├── core.20675.summarize_registeranchored │ │ │ │ ├── core.20675.summarize_registeranchorpoints │ │ │ │ ├── core.20675.summarize_stackanchored │ │ │ │ ├── core.20675.summarize_stackanchorpoints │ │ │ │ ├── core.20675.summarize_staticanchored │ │ │ │ ├── core.20675.summarize_staticanchorpoints │ │ │ │ ├── core.20675.summarize_used │ │ │ │ ├── core.20675.symreqs │ │ │ │ └── run │ │ │ ├── PyDictKeysObjectTest │ │ │ │ ├── core.21887 │ │ │ │ ├── core.21887.count_used_%ContainerPythonObject │ │ │ │ ├── core.21887.count_used_%PyDictKeysObject │ │ │ │ ├── core.21887.count_used_%PythonListItems │ │ │ │ ├── core.21887.count_used_%SimplePythonObject │ │ │ │ ├── core.21887.describe_used_%ContainerPythonObject │ │ │ │ ├── core.21887.describe_used_%PyDictKeysObject │ │ │ │ ├── core.21887.describe_used_%PythonArenaStructArray │ │ │ │ ├── core.21887.describe_used_%PythonListItems │ │ │ │ ├── core.21887.describe_used_%SimplePythonObject │ │ │ │ ├── core.21887.enumerate_used_%PyDictKeysObject │ │ │ │ ├── core.21887.list_used_%ContainerPythonObject │ │ │ │ ├── core.21887.list_used_%PythonListItems │ │ │ │ ├── core.21887.list_used_%SimplePythonObject │ │ │ │ ├── core.21887.show_used_%PyDictKeysObject │ │ │ │ ├── core.21887.symreqs │ │ │ │ └── run │ │ │ ├── SpinningThreads │ │ │ │ ├── core.SpinningThreads.bz2 │ │ │ │ ├── core.SpinningThreads.describe_arenas │ │ │ │ ├── core.SpinningThreads.describe_stacks │ │ │ │ ├── core.SpinningThreads.describe_writable │ │ │ │ ├── core.SpinningThreads.list_free │ │ │ │ ├── core.SpinningThreads.list_used │ │ │ │ ├── core.SpinningThreads.summarize_writable │ │ │ │ ├── core.SpinningThreads.symreqs │ │ │ │ └── run │ │ │ ├── SpinningThreads_longHeapHeader │ │ │ │ ├── core.SpinningThreads.bz2 │ │ │ │ ├── core.SpinningThreads.describe_arenas │ │ │ │ ├── core.SpinningThreads.describe_stacks │ │ │ │ ├── core.SpinningThreads.describe_writable │ │ │ │ ├── core.SpinningThreads.list_free │ │ │ │ ├── core.SpinningThreads.list_used │ │ │ │ ├── core.SpinningThreads.summarize_writable │ │ │ │ ├── core.SpinningThreads.symreqs │ │ │ │ └── run │ │ │ ├── Truncated │ │ │ │ ├── core.48555 │ │ │ │ ├── core.48555.1M │ │ │ │ ├── core.48555.512K │ │ │ │ ├── core.48555.512K.symreqs │ │ │ │ ├── emptyRun.err │ │ │ │ ├── emptyRun.out │ │ │ │ ├── expectFail.err │ │ │ │ ├── expectFail.exit │ │ │ │ ├── expectFail.out │ │ │ │ ├── expectPass.err │ │ │ │ ├── expectPass.exit │ │ │ │ ├── expectPass.out │ │ │ │ └── run │ │ │ ├── UnmanglingTest │ │ │ │ ├── core.26735 │ │ │ │ ├── core.26735.summarize_signatures │ │ │ │ ├── core.26735.summarize_used │ │ │ │ ├── core.26735.symreqs │ │ │ │ └── run │ │ │ ├── UnorderedMapOrSetPatternTest │ │ │ │ ├── core.3522 │ │ │ │ ├── core.3522.describe_used │ │ │ │ ├── core.3522.describe_used_%UnorderedMapOrSetBuckets │ │ │ │ ├── core.3522.describe_used_%UnorderedMapOrSetNode │ │ │ │ ├── core.3522.describe_used_%UnorderedMapOrSetNode::commentExtensions:true::extend:%UnorderedMapOrSetNode->%UnorderedMapOrSetNode::maxincoming:%UnorderedMapOrSetNode=0::skipUnfavoredReferences:true │ │ │ │ ├── core.3522.explain_used │ │ │ │ ├── core.3522.explain_used_%UnorderedMapOrSetBuckets │ │ │ │ ├── core.3522.explain_used_%UnorderedMapOrSetNode │ │ │ │ ├── core.3522.list_used::minoutgoing:%UnorderedMapOrSetBuckets=1 │ │ │ │ ├── core.3522.list_used::minoutgoing:%UnorderedMapOrSetNode=1 │ │ │ │ ├── core.3522.show_used::extend:->%UnorderedMapOrSetBuckets=>StopHere::minoutgoing:%UnorderedMapOrSetBuckets=1 │ │ │ │ ├── core.3522.show_used::extend:->%UnorderedMapOrSetNode=>StopHere::minoutgoing:%UnorderedMapOrSetNode=1 │ │ │ │ ├── core.3522.show_used_%UnorderedMapOrSetBuckets │ │ │ │ ├── core.3522.show_used_%UnorderedMapOrSetNode │ │ │ │ ├── core.3522.symreqs │ │ │ │ └── run │ │ │ └── WrongPhdrsForInaccessible │ │ │ │ ├── core.python_5_threads.bz2 │ │ │ │ ├── core.python_5_threads.count_free │ │ │ │ ├── core.python_5_threads.count_inaccessible │ │ │ │ ├── core.python_5_threads.count_readonly │ │ │ │ ├── core.python_5_threads.count_rxonly │ │ │ │ ├── core.python_5_threads.count_stacks │ │ │ │ ├── core.python_5_threads.count_used │ │ │ │ ├── core.python_5_threads.count_used_%ContainerPythonObject │ │ │ │ ├── core.python_5_threads.count_used_%PyDictKeysObject │ │ │ │ ├── core.python_5_threads.count_used_%PythonListItems │ │ │ │ ├── core.python_5_threads.count_used_%SimplePythonObject │ │ │ │ ├── core.python_5_threads.count_writable │ │ │ │ ├── core.python_5_threads.describe_235c000 │ │ │ │ ├── core.python_5_threads.describe_235c008 │ │ │ │ ├── core.python_5_threads.describe_235c010 │ │ │ │ ├── core.python_5_threads.describe_235c068 │ │ │ │ ├── core.python_5_threads.describe_243cfff │ │ │ │ ├── core.python_5_threads.describe_243d000 │ │ │ │ ├── core.python_5_threads.describe_7f51e8000000 │ │ │ │ ├── core.python_5_threads.describe_7f51e800001f │ │ │ │ ├── core.python_5_threads.describe_7f51e8000020 │ │ │ │ ├── core.python_5_threads.describe_7f51e8000b08 │ │ │ │ ├── core.python_5_threads.describe_7f51e8020fff │ │ │ │ ├── core.python_5_threads.describe_7f51e8021000 │ │ │ │ ├── core.python_5_threads.describe_7f51ec07b000 │ │ │ │ ├── core.python_5_threads.describe_7f51ec07bfff │ │ │ │ ├── core.python_5_threads.describe_7f51ec07c000 │ │ │ │ ├── core.python_5_threads.describe_7f51edb7b000 │ │ │ │ ├── core.python_5_threads.describe_7f51edb7b008 │ │ │ │ ├── core.python_5_threads.describe_7f51edb7b010 │ │ │ │ ├── core.python_5_threads.describe_7f51edbabfff │ │ │ │ ├── core.python_5_threads.describe_inaccessible │ │ │ │ ├── core.python_5_threads.describe_readonly │ │ │ │ ├── core.python_5_threads.describe_rxonly │ │ │ │ ├── core.python_5_threads.describe_used_%ContainerPythonObject │ │ │ │ ├── core.python_5_threads.describe_used_%PyDictKeysObject │ │ │ │ ├── core.python_5_threads.describe_used_%PythonArenaStructArray │ │ │ │ ├── core.python_5_threads.describe_used_%PythonListItems │ │ │ │ ├── core.python_5_threads.describe_used_%SimplePythonObject │ │ │ │ ├── core.python_5_threads.describe_writable │ │ │ │ ├── core.python_5_threads.explain_235c000 │ │ │ │ ├── core.python_5_threads.explain_235c008 │ │ │ │ ├── core.python_5_threads.explain_235c010 │ │ │ │ ├── core.python_5_threads.explain_235c068 │ │ │ │ ├── core.python_5_threads.explain_243cfff │ │ │ │ ├── core.python_5_threads.explain_243d000 │ │ │ │ ├── core.python_5_threads.explain_7f51e8000000 │ │ │ │ ├── core.python_5_threads.explain_7f51e800001f │ │ │ │ ├── core.python_5_threads.explain_7f51e8000020 │ │ │ │ ├── core.python_5_threads.explain_7f51e8000b08 │ │ │ │ ├── core.python_5_threads.explain_7f51e8020fff │ │ │ │ ├── core.python_5_threads.explain_7f51e8021000 │ │ │ │ ├── core.python_5_threads.explain_7f51ebffffff │ │ │ │ ├── core.python_5_threads.explain_7f51ec07b000 │ │ │ │ ├── core.python_5_threads.explain_7f51ec07bfff │ │ │ │ ├── core.python_5_threads.explain_7f51ec07c000 │ │ │ │ ├── core.python_5_threads.explain_7f51edb7b000 │ │ │ │ ├── core.python_5_threads.explain_7f51edb7b008 │ │ │ │ ├── core.python_5_threads.explain_7f51edb7b010 │ │ │ │ ├── core.python_5_threads.explain_7f51edbabfff │ │ │ │ ├── core.python_5_threads.list_inaccessible │ │ │ │ ├── core.python_5_threads.list_readonly │ │ │ │ ├── core.python_5_threads.list_rxonly │ │ │ │ ├── core.python_5_threads.list_used_%ContainerPythonObject │ │ │ │ ├── core.python_5_threads.list_used_%PyDictKeysObject │ │ │ │ ├── core.python_5_threads.list_used_%PythonListItems │ │ │ │ ├── core.python_5_threads.list_used_%SimplePythonObject │ │ │ │ ├── core.python_5_threads.list_writable │ │ │ │ ├── core.python_5_threads.summarize_inaccessible │ │ │ │ ├── core.python_5_threads.summarize_readonly │ │ │ │ ├── core.python_5_threads.summarize_rxonly │ │ │ │ ├── core.python_5_threads.summarize_writable │ │ │ │ ├── core.python_5_threads.symreqs │ │ │ │ └── run │ │ └── gperftools │ │ │ ├── gperftools-2.10 │ │ │ └── OneAllocated │ │ │ │ ├── core.193373 │ │ │ │ ├── core.193373.count_anchored │ │ │ │ ├── core.193373.count_anchorpoints │ │ │ │ ├── core.193373.count_exactincoming_fe0008 │ │ │ │ ├── core.193373.count_free │ │ │ │ ├── core.193373.count_incoming_fe0008 │ │ │ │ ├── core.193373.count_leaked │ │ │ │ ├── core.193373.count_outgoing_fe0008 │ │ │ │ ├── core.193373.count_registeranchored │ │ │ │ ├── core.193373.count_registeranchorpoints │ │ │ │ ├── core.193373.count_stackanchored │ │ │ │ ├── core.193373.count_stackanchorpoints │ │ │ │ ├── core.193373.count_staticanchored │ │ │ │ ├── core.193373.count_staticanchorpoints │ │ │ │ ├── core.193373.count_used │ │ │ │ ├── core.193373.enumerate_anchored │ │ │ │ ├── core.193373.enumerate_anchorpoints │ │ │ │ ├── core.193373.enumerate_exactincoming_fe0008 │ │ │ │ ├── core.193373.enumerate_free │ │ │ │ ├── core.193373.enumerate_incoming_fe0008 │ │ │ │ ├── core.193373.enumerate_leaked │ │ │ │ ├── core.193373.enumerate_outgoing_fe0008 │ │ │ │ ├── core.193373.enumerate_pointers_fe0008 │ │ │ │ ├── core.193373.enumerate_registeranchored │ │ │ │ ├── core.193373.enumerate_registeranchorpoints │ │ │ │ ├── core.193373.enumerate_stackanchored │ │ │ │ ├── core.193373.enumerate_stackanchorpoints │ │ │ │ ├── core.193373.enumerate_staticanchored │ │ │ │ ├── core.193373.enumerate_staticanchorpoints │ │ │ │ ├── core.193373.enumerate_used │ │ │ │ ├── core.193373.list_anchored │ │ │ │ ├── core.193373.list_anchorpoints │ │ │ │ ├── core.193373.list_exactincoming_fe0008 │ │ │ │ ├── core.193373.list_free │ │ │ │ ├── core.193373.list_incoming_fe0008 │ │ │ │ ├── core.193373.list_leaked │ │ │ │ ├── core.193373.list_outgoing_fe0008 │ │ │ │ ├── core.193373.list_registeranchored │ │ │ │ ├── core.193373.list_registeranchorpoints │ │ │ │ ├── core.193373.list_stackanchored │ │ │ │ ├── core.193373.list_stackanchorpoints │ │ │ │ ├── core.193373.list_staticanchored │ │ │ │ ├── core.193373.list_staticanchorpoints │ │ │ │ ├── core.193373.list_used │ │ │ │ ├── core.193373.show_anchored │ │ │ │ ├── core.193373.show_anchorpoints │ │ │ │ ├── core.193373.show_exactincoming_fe0008 │ │ │ │ ├── core.193373.show_incoming_fe0008 │ │ │ │ ├── core.193373.show_leaked │ │ │ │ ├── core.193373.show_outgoing_fe0008 │ │ │ │ ├── core.193373.show_registeranchored │ │ │ │ ├── core.193373.show_registeranchorpoints │ │ │ │ ├── core.193373.show_stackanchored │ │ │ │ ├── core.193373.show_stackanchorpoints │ │ │ │ ├── core.193373.show_staticanchored │ │ │ │ ├── core.193373.show_staticanchorpoints │ │ │ │ ├── core.193373.show_used │ │ │ │ ├── core.193373.summarize_anchored │ │ │ │ ├── core.193373.summarize_anchorpoints │ │ │ │ ├── core.193373.summarize_exactincoming_fe0008 │ │ │ │ ├── core.193373.summarize_free │ │ │ │ ├── core.193373.summarize_incoming_fe0008 │ │ │ │ ├── core.193373.summarize_leaked │ │ │ │ ├── core.193373.summarize_outgoing_fe0008 │ │ │ │ ├── core.193373.summarize_registeranchored │ │ │ │ ├── core.193373.summarize_registeranchorpoints │ │ │ │ ├── core.193373.summarize_stackanchored │ │ │ │ ├── core.193373.summarize_stackanchorpoints │ │ │ │ ├── core.193373.summarize_staticanchored │ │ │ │ ├── core.193373.summarize_staticanchorpoints │ │ │ │ ├── core.193373.summarize_used │ │ │ │ ├── core.193373.symreqs │ │ │ │ └── run │ │ │ └── gperftools-2.15 │ │ │ └── OneAllocated │ │ │ ├── core.591414 │ │ │ ├── core.591414.count_anchored │ │ │ ├── core.591414.count_anchorpoints │ │ │ ├── core.591414.count_exactincoming_fdc000 │ │ │ ├── core.591414.count_free │ │ │ ├── core.591414.count_incoming_fdc000 │ │ │ ├── core.591414.count_leaked │ │ │ ├── core.591414.count_outgoing_fdc000 │ │ │ ├── core.591414.count_registeranchored │ │ │ ├── core.591414.count_registeranchorpoints │ │ │ ├── core.591414.count_stackanchored │ │ │ ├── core.591414.count_stackanchorpoints │ │ │ ├── core.591414.count_staticanchored │ │ │ ├── core.591414.count_staticanchorpoints │ │ │ ├── core.591414.count_used │ │ │ ├── core.591414.enumerate_anchored │ │ │ ├── core.591414.enumerate_anchorpoints │ │ │ ├── core.591414.enumerate_exactincoming_fdc000 │ │ │ ├── core.591414.enumerate_free │ │ │ ├── core.591414.enumerate_incoming_fdc000 │ │ │ ├── core.591414.enumerate_leaked │ │ │ ├── core.591414.enumerate_outgoing_fdc000 │ │ │ ├── core.591414.enumerate_pointers_fdc000 │ │ │ ├── core.591414.enumerate_registeranchored │ │ │ ├── core.591414.enumerate_registeranchorpoints │ │ │ ├── core.591414.enumerate_stackanchored │ │ │ ├── core.591414.enumerate_stackanchorpoints │ │ │ ├── core.591414.enumerate_staticanchored │ │ │ ├── core.591414.enumerate_staticanchorpoints │ │ │ ├── core.591414.enumerate_used │ │ │ ├── core.591414.list_anchored │ │ │ ├── core.591414.list_anchorpoints │ │ │ ├── core.591414.list_exactincoming_fdc000 │ │ │ ├── core.591414.list_free │ │ │ ├── core.591414.list_incoming_fdc000 │ │ │ ├── core.591414.list_leaked │ │ │ ├── core.591414.list_outgoing_fdc000 │ │ │ ├── core.591414.list_registeranchored │ │ │ ├── core.591414.list_registeranchorpoints │ │ │ ├── core.591414.list_stackanchored │ │ │ ├── core.591414.list_stackanchorpoints │ │ │ ├── core.591414.list_staticanchored │ │ │ ├── core.591414.list_staticanchorpoints │ │ │ ├── core.591414.list_used │ │ │ ├── core.591414.show_anchored │ │ │ ├── core.591414.show_anchorpoints │ │ │ ├── core.591414.show_exactincoming_fdc000 │ │ │ ├── core.591414.show_incoming_fdc000 │ │ │ ├── core.591414.show_leaked │ │ │ ├── core.591414.show_outgoing_fdc000 │ │ │ ├── core.591414.show_registeranchored │ │ │ ├── core.591414.show_registeranchorpoints │ │ │ ├── core.591414.show_stackanchored │ │ │ ├── core.591414.show_stackanchorpoints │ │ │ ├── core.591414.show_staticanchored │ │ │ ├── core.591414.show_staticanchorpoints │ │ │ ├── core.591414.show_used │ │ │ ├── core.591414.summarize_anchored │ │ │ ├── core.591414.summarize_anchorpoints │ │ │ ├── core.591414.summarize_exactincoming_fdc000 │ │ │ ├── core.591414.summarize_free │ │ │ ├── core.591414.summarize_incoming_fdc000 │ │ │ ├── core.591414.summarize_leaked │ │ │ ├── core.591414.summarize_outgoing_fdc000 │ │ │ ├── core.591414.summarize_registeranchored │ │ │ ├── core.591414.summarize_registeranchorpoints │ │ │ ├── core.591414.summarize_stackanchored │ │ │ ├── core.591414.summarize_stackanchorpoints │ │ │ ├── core.591414.summarize_staticanchored │ │ │ ├── core.591414.summarize_staticanchorpoints │ │ │ ├── core.591414.summarize_used │ │ │ ├── core.591414.symreqs │ │ │ └── run │ └── driver └── generators │ ├── README │ └── generic │ ├── README │ ├── multiThreaded │ ├── Demo6 │ │ └── Demo6.cpp │ ├── README │ └── SpinningThreads │ │ └── SpinningThreads.cpp │ └── singleThreaded │ ├── DequePatternTest │ └── DequePatternTest.cpp │ ├── HasContainersAndSymbols │ └── HasContainersAndSymbols.cpp │ ├── HasInheritance │ └── HasInheritance.cpp │ ├── HasStatic │ └── HasStatic.cpp │ ├── HasSymbols │ └── HasSymbols.cpp │ ├── JustABigOne │ └── justABigOne.c │ ├── ListTest │ └── ListTest.cpp │ ├── LongStringTest │ └── LongStringTest.cpp │ ├── MapOrSetPatternTest │ └── MapOrSetPatternTest.cpp │ ├── OneAllocated │ └── OneAllocated.c │ ├── OneHasFreeOutgoing │ └── OneHasFreeOutgoing.cpp │ ├── OneLeaked │ └── OneLeaked.c │ ├── PyDictKeysObjectTest │ └── limitedDictionaryUse.py │ ├── PythonArenasTest │ ├── sleepy.py │ └── spinny.py │ ├── README │ ├── UnmanglingTest │ └── UnmanglingTest.cpp │ ├── UnorderedMapOrSetPatternTest │ └── UnorderedMapOrSetPatternTest.cpp │ └── UseAfterFree │ └── UseAfterFree.c └── thirdparty └── CMakeLists.txt /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/README.md -------------------------------------------------------------------------------- /USERGUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/USERGUIDE.md -------------------------------------------------------------------------------- /doc/img/BluePlusTwoFromBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/BluePlusTwoFromBlue.png -------------------------------------------------------------------------------- /doc/img/OrangePlusGreenReferencedByOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/OrangePlusGreenReferencedByOrange.png -------------------------------------------------------------------------------- /doc/img/OrangePlusReachableFromOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/OrangePlusReachableFromOrange.png -------------------------------------------------------------------------------- /doc/img/OrangePlusReferencedFromOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/OrangePlusReferencedFromOrange.png -------------------------------------------------------------------------------- /doc/img/OrangePlusReferencedGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/OrangePlusReferencedGreen.png -------------------------------------------------------------------------------- /doc/img/OrangePlusReferrersToOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/OrangePlusReferrersToOrange.png -------------------------------------------------------------------------------- /doc/img/OrangePlusUnsignedReferencedByOrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/OrangePlusUnsignedReferencedByOrange.png -------------------------------------------------------------------------------- /doc/img/OrangePlusUnsignedThenCOWStringBody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/OrangePlusUnsignedThenCOWStringBody.png -------------------------------------------------------------------------------- /doc/img/UnlabeledGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/UnlabeledGraph.png -------------------------------------------------------------------------------- /doc/img/chap-logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/chap-logo-large.png -------------------------------------------------------------------------------- /doc/img/chap-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/chap-logo-small.png -------------------------------------------------------------------------------- /doc/img/chap-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/doc/img/chap-logo.eps -------------------------------------------------------------------------------- /src/Allocations/AnchorChainLister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/AnchorChainLister.h -------------------------------------------------------------------------------- /src/Allocations/AnchorDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/AnchorDirectory.h -------------------------------------------------------------------------------- /src/Allocations/ContiguousImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/ContiguousImage.h -------------------------------------------------------------------------------- /src/Allocations/Describer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Describer.h -------------------------------------------------------------------------------- /src/Allocations/Directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Directory.h -------------------------------------------------------------------------------- /src/Allocations/EdgePredicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/EdgePredicate.h -------------------------------------------------------------------------------- /src/Allocations/ExtendedVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/ExtendedVisitor.h -------------------------------------------------------------------------------- /src/Allocations/ExternalAnchorPointChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/ExternalAnchorPointChecker.h -------------------------------------------------------------------------------- /src/Allocations/Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Graph.h -------------------------------------------------------------------------------- /src/Allocations/IndexedDistances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/IndexedDistances.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/Allocations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/Allocations.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/AnchorPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/AnchorPoints.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/Anchored.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/Anchored.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/Chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/Chain.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/Derived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/Derived.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/ExactIncoming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/ExactIncoming.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/ExternalAnchorPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/ExternalAnchorPoints.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/ExternalAnchored.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/ExternalAnchored.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/Free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/Free.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/FreeOutgoing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/FreeOutgoing.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/Incoming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/Incoming.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/Leaked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/Leaked.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/Outgoing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/Outgoing.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/RegisterAnchorPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/RegisterAnchorPoints.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/RegisterAnchored.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/RegisterAnchored.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/ReverseChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/ReverseChain.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/SingleAllocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/SingleAllocation.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/StackAnchorPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/StackAnchorPoints.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/StackAnchored.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/StackAnchored.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/StaticAnchorPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/StaticAnchorPoints.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/StaticAnchored.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/StaticAnchored.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/ThreadCached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/ThreadCached.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/ThreadOnlyAnchorPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/ThreadOnlyAnchorPoints.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/ThreadOnlyAnchored.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/ThreadOnlyAnchored.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/Unreferenced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/Unreferenced.h -------------------------------------------------------------------------------- /src/Allocations/Iterators/Used.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Iterators/Used.h -------------------------------------------------------------------------------- /src/Allocations/ObscuredReferenceChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/ObscuredReferenceChecker.h -------------------------------------------------------------------------------- /src/Allocations/PatternDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/PatternDescriber.h -------------------------------------------------------------------------------- /src/Allocations/PatternDescriberRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/PatternDescriberRegistry.h -------------------------------------------------------------------------------- /src/Allocations/ReferenceConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/ReferenceConstraint.h -------------------------------------------------------------------------------- /src/Allocations/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Set.h -------------------------------------------------------------------------------- /src/Allocations/SetCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/SetCache.h -------------------------------------------------------------------------------- /src/Allocations/SignatureChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/SignatureChecker.h -------------------------------------------------------------------------------- /src/Allocations/SignatureDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/SignatureDirectory.h -------------------------------------------------------------------------------- /src/Allocations/SignatureSummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/SignatureSummary.h -------------------------------------------------------------------------------- /src/Allocations/Subcommands/DefaultSubcommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Subcommands/DefaultSubcommands.h -------------------------------------------------------------------------------- /src/Allocations/Subcommands/Subcommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Subcommands/Subcommand.h -------------------------------------------------------------------------------- /src/Allocations/Subcommands/SubcommandsForOneIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Subcommands/SubcommandsForOneIterator.h -------------------------------------------------------------------------------- /src/Allocations/Subcommands/SummarizeSignatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Subcommands/SummarizeSignatures.h -------------------------------------------------------------------------------- /src/Allocations/TagHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/TagHolder.h -------------------------------------------------------------------------------- /src/Allocations/Tagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Tagger.h -------------------------------------------------------------------------------- /src/Allocations/TaggerRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/TaggerRunner.h -------------------------------------------------------------------------------- /src/Allocations/Visitors/Counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Visitors/Counter.h -------------------------------------------------------------------------------- /src/Allocations/Visitors/DefaultVisitorFactories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Visitors/DefaultVisitorFactories.h -------------------------------------------------------------------------------- /src/Allocations/Visitors/Describer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Visitors/Describer.h -------------------------------------------------------------------------------- /src/Allocations/Visitors/Enumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Visitors/Enumerator.h -------------------------------------------------------------------------------- /src/Allocations/Visitors/Explainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Visitors/Explainer.h -------------------------------------------------------------------------------- /src/Allocations/Visitors/Lister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Visitors/Lister.h -------------------------------------------------------------------------------- /src/Allocations/Visitors/Shower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Visitors/Shower.h -------------------------------------------------------------------------------- /src/Allocations/Visitors/Summarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Allocations/Visitors/Summarizer.h -------------------------------------------------------------------------------- /src/Annotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Annotator.h -------------------------------------------------------------------------------- /src/AnnotatorRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/AnnotatorRegistry.h -------------------------------------------------------------------------------- /src/CPlusPlus/COWStringAllocationsTagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/COWStringAllocationsTagger.h -------------------------------------------------------------------------------- /src/CPlusPlus/COWStringBodyDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/COWStringBodyDescriber.h -------------------------------------------------------------------------------- /src/CPlusPlus/DequeAllocationsTagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/DequeAllocationsTagger.h -------------------------------------------------------------------------------- /src/CPlusPlus/DequeBlockDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/DequeBlockDescriber.h -------------------------------------------------------------------------------- /src/CPlusPlus/DequeMapDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/DequeMapDescriber.h -------------------------------------------------------------------------------- /src/CPlusPlus/ListAllocationsTagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/ListAllocationsTagger.h -------------------------------------------------------------------------------- /src/CPlusPlus/ListNodeDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/ListNodeDescriber.h -------------------------------------------------------------------------------- /src/CPlusPlus/LongStringAllocationsTagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/LongStringAllocationsTagger.h -------------------------------------------------------------------------------- /src/CPlusPlus/LongStringDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/LongStringDescriber.h -------------------------------------------------------------------------------- /src/CPlusPlus/MapOrSetAllocationsTagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/MapOrSetAllocationsTagger.h -------------------------------------------------------------------------------- /src/CPlusPlus/MapOrSetNodeDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/MapOrSetNodeDescriber.h -------------------------------------------------------------------------------- /src/CPlusPlus/SSOStringAnnotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/SSOStringAnnotator.h -------------------------------------------------------------------------------- /src/CPlusPlus/Subcommands/SummarizeStringUsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/Subcommands/SummarizeStringUsers.h -------------------------------------------------------------------------------- /src/CPlusPlus/TypeInfoDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/TypeInfoDirectory.h -------------------------------------------------------------------------------- /src/CPlusPlus/Unmangler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/Unmangler.h -------------------------------------------------------------------------------- /src/CPlusPlus/UnorderedMapOrSetAllocationsTagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/UnorderedMapOrSetAllocationsTagger.h -------------------------------------------------------------------------------- /src/CPlusPlus/UnorderedMapOrSetBucketsDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/UnorderedMapOrSetBucketsDescriber.h -------------------------------------------------------------------------------- /src/CPlusPlus/UnorderedMapOrSetNodeDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/UnorderedMapOrSetNodeDescriber.h -------------------------------------------------------------------------------- /src/CPlusPlus/VectorAllocationsTagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/VectorAllocationsTagger.h -------------------------------------------------------------------------------- /src/CPlusPlus/VectorBodyDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CPlusPlus/VectorBodyDescriber.h -------------------------------------------------------------------------------- /src/Commands/CountCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/CountCommand.h -------------------------------------------------------------------------------- /src/Commands/DescribeCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/DescribeCommand.h -------------------------------------------------------------------------------- /src/Commands/EnumerateCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/EnumerateCommand.h -------------------------------------------------------------------------------- /src/Commands/ExplainCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/ExplainCommand.h -------------------------------------------------------------------------------- /src/Commands/LineInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/LineInfo.h -------------------------------------------------------------------------------- /src/Commands/ListCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/ListCommand.h -------------------------------------------------------------------------------- /src/Commands/Runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/Runner.h -------------------------------------------------------------------------------- /src/Commands/SetBasedCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/SetBasedCommand.h -------------------------------------------------------------------------------- /src/Commands/ShowCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/ShowCommand.h -------------------------------------------------------------------------------- /src/Commands/Subcommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/Subcommand.h -------------------------------------------------------------------------------- /src/Commands/SummarizeCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Commands/SummarizeCommand.h -------------------------------------------------------------------------------- /src/CompoundDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/CompoundDescriber.h -------------------------------------------------------------------------------- /src/Describer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Describer.h -------------------------------------------------------------------------------- /src/FileAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/FileAnalyzer.cpp -------------------------------------------------------------------------------- /src/FileAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/FileAnalyzer.h -------------------------------------------------------------------------------- /src/FileAnalyzerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/FileAnalyzerFactory.h -------------------------------------------------------------------------------- /src/FileImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/FileImage.h -------------------------------------------------------------------------------- /src/FileMappedRangeDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/FileMappedRangeDirectory.h -------------------------------------------------------------------------------- /src/FollyFibers/InfrastructureFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/FollyFibers/InfrastructureFinder.h -------------------------------------------------------------------------------- /src/FollyFibers/StackOverflowGuardDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/FollyFibers/StackOverflowGuardDescriber.h -------------------------------------------------------------------------------- /src/GoLang/AllocationsTagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/GoLang/AllocationsTagger.h -------------------------------------------------------------------------------- /src/GoLang/FinderGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/GoLang/FinderGroup.h -------------------------------------------------------------------------------- /src/GoLang/GoChannelBufferDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/GoLang/GoChannelBufferDescriber.h -------------------------------------------------------------------------------- /src/GoLang/GoChannelDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/GoLang/GoChannelDescriber.h -------------------------------------------------------------------------------- /src/GoLang/GoRoutineDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/GoLang/GoRoutineDescriber.h -------------------------------------------------------------------------------- /src/GoLang/GoRoutineStackDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/GoLang/GoRoutineStackDescriber.h -------------------------------------------------------------------------------- /src/GoLang/InfrastructureFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/GoLang/InfrastructureFinder.h -------------------------------------------------------------------------------- /src/GoLang/MappedPageRangeAllocationFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/GoLang/MappedPageRangeAllocationFinder.h -------------------------------------------------------------------------------- /src/GoLang/MappedPageRangeIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/GoLang/MappedPageRangeIterator.h -------------------------------------------------------------------------------- /src/InModuleDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/InModuleDescriber.h -------------------------------------------------------------------------------- /src/KnownAddressDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/KnownAddressDescriber.h -------------------------------------------------------------------------------- /src/LibcMalloc/CorruptionSkipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/CorruptionSkipper.h -------------------------------------------------------------------------------- /src/LibcMalloc/DoublyLinkedListCorruptionChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/DoublyLinkedListCorruptionChecker.h -------------------------------------------------------------------------------- /src/LibcMalloc/FastBinFreeStatusFixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/FastBinFreeStatusFixer.h -------------------------------------------------------------------------------- /src/LibcMalloc/FinderGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/FinderGroup.h -------------------------------------------------------------------------------- /src/LibcMalloc/HeapAllocationFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/HeapAllocationFinder.h -------------------------------------------------------------------------------- /src/LibcMalloc/HeapDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/HeapDescriber.h -------------------------------------------------------------------------------- /src/LibcMalloc/InfrastructureFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/InfrastructureFinder.h -------------------------------------------------------------------------------- /src/LibcMalloc/MainArenaAllocationFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/MainArenaAllocationFinder.h -------------------------------------------------------------------------------- /src/LibcMalloc/MainArenaRunDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/MainArenaRunDescriber.h -------------------------------------------------------------------------------- /src/LibcMalloc/MmappedAllocationDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/MmappedAllocationDescriber.h -------------------------------------------------------------------------------- /src/LibcMalloc/MmappedAllocationFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/MmappedAllocationFinder.h -------------------------------------------------------------------------------- /src/LibcMalloc/Subcommands/DescribeArenas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/LibcMalloc/Subcommands/DescribeArenas.h -------------------------------------------------------------------------------- /src/Linux/ELFCore32FileAnalyzerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Linux/ELFCore32FileAnalyzerFactory.h -------------------------------------------------------------------------------- /src/Linux/ELFCore64FileAnalyzerFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Linux/ELFCore64FileAnalyzerFactory.h -------------------------------------------------------------------------------- /src/Linux/ELFCoreFileAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Linux/ELFCoreFileAnalyzer.h -------------------------------------------------------------------------------- /src/Linux/ELFImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Linux/ELFImage.h -------------------------------------------------------------------------------- /src/Linux/ELFModuleImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Linux/ELFModuleImage.h -------------------------------------------------------------------------------- /src/Linux/ELFModuleImageFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Linux/ELFModuleImageFactory.h -------------------------------------------------------------------------------- /src/Linux/LinuxProcessImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Linux/LinuxProcessImage.h -------------------------------------------------------------------------------- /src/Linux/ModuleFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Linux/ModuleFinder.h -------------------------------------------------------------------------------- /src/Linux/ProcessImageCommandHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Linux/ProcessImageCommandHandler.h -------------------------------------------------------------------------------- /src/ModuleAddressAnnotator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ModuleAddressAnnotator.h -------------------------------------------------------------------------------- /src/ModuleAlignmentGapDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ModuleAlignmentGapDescriber.h -------------------------------------------------------------------------------- /src/ModuleCommands/DescribeModules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ModuleCommands/DescribeModules.h -------------------------------------------------------------------------------- /src/ModuleCommands/ListModules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ModuleCommands/ListModules.h -------------------------------------------------------------------------------- /src/ModuleDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ModuleDirectory.h -------------------------------------------------------------------------------- /src/ModuleImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ModuleImage.h -------------------------------------------------------------------------------- /src/ModuleImageFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ModuleImageFactory.h -------------------------------------------------------------------------------- /src/ModuleImageReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ModuleImageReader.h -------------------------------------------------------------------------------- /src/OpenSSLAllocationsTagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/OpenSSLAllocationsTagger.h -------------------------------------------------------------------------------- /src/PThread/InfrastructureFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/PThread/InfrastructureFinder.h -------------------------------------------------------------------------------- /src/PThread/StackOverflowGuardDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/PThread/StackOverflowGuardDescriber.h -------------------------------------------------------------------------------- /src/ProcessImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ProcessImage.h -------------------------------------------------------------------------------- /src/ProcessImageCommandHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ProcessImageCommandHandler.h -------------------------------------------------------------------------------- /src/Python/AllocationsTagger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/AllocationsTagger.h -------------------------------------------------------------------------------- /src/Python/ArenaDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/ArenaDescriber.h -------------------------------------------------------------------------------- /src/Python/ArenaStructArrayDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/ArenaStructArrayDescriber.h -------------------------------------------------------------------------------- /src/Python/BlockAllocationFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/BlockAllocationFinder.h -------------------------------------------------------------------------------- /src/Python/ContainerPythonObjectDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/ContainerPythonObjectDescriber.h -------------------------------------------------------------------------------- /src/Python/DequeBlockDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/DequeBlockDescriber.h -------------------------------------------------------------------------------- /src/Python/FinderGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/FinderGroup.h -------------------------------------------------------------------------------- /src/Python/InfrastructureFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/InfrastructureFinder.h -------------------------------------------------------------------------------- /src/Python/ListItemsDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/ListItemsDescriber.h -------------------------------------------------------------------------------- /src/Python/MallocedArenaDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/MallocedArenaDescriber.h -------------------------------------------------------------------------------- /src/Python/PyDictKeysObjectDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/PyDictKeysObjectDescriber.h -------------------------------------------------------------------------------- /src/Python/PyDictValuesArrayDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/PyDictValuesArrayDescriber.h -------------------------------------------------------------------------------- /src/Python/SimplePythonObjectDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/SimplePythonObjectDescriber.h -------------------------------------------------------------------------------- /src/Python/TypeDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/Python/TypeDirectory.h -------------------------------------------------------------------------------- /src/RangeMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/RangeMapper.h -------------------------------------------------------------------------------- /src/SSLDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/SSLDescriber.h -------------------------------------------------------------------------------- /src/SSL_CTXDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/SSL_CTXDescriber.h -------------------------------------------------------------------------------- /src/SizedTally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/SizedTally.h -------------------------------------------------------------------------------- /src/StackCommands/CountStacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/StackCommands/CountStacks.h -------------------------------------------------------------------------------- /src/StackCommands/DescribeStacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/StackCommands/DescribeStacks.h -------------------------------------------------------------------------------- /src/StackCommands/ListStacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/StackCommands/ListStacks.h -------------------------------------------------------------------------------- /src/StackCommands/SummarizeStacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/StackCommands/SummarizeStacks.h -------------------------------------------------------------------------------- /src/StackDescriber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/StackDescriber.h -------------------------------------------------------------------------------- /src/StackRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/StackRegistry.h -------------------------------------------------------------------------------- /src/TCMalloc/FinderGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/TCMalloc/FinderGroup.h -------------------------------------------------------------------------------- /src/TCMalloc/InfrastructureFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/TCMalloc/InfrastructureFinder.h -------------------------------------------------------------------------------- /src/TCMalloc/PageMapAllocationFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/TCMalloc/PageMapAllocationFinder.h -------------------------------------------------------------------------------- /src/TCMalloc/PageMapIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/TCMalloc/PageMapIterator.h -------------------------------------------------------------------------------- /src/ThreadMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/ThreadMap.h -------------------------------------------------------------------------------- /src/UnfilledImages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/UnfilledImages.h -------------------------------------------------------------------------------- /src/VirtualAddressMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMap.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommandHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommandHandler.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/AddressFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/AddressFilter.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/CountRanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/CountRanges.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/DescribePointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/DescribePointers.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/DescribeRangeRefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/DescribeRangeRefs.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/DescribeRanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/DescribeRanges.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/DescribeRelRefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/DescribeRelRefs.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/DumpCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/DumpCommand.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/EnumeratePointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/EnumeratePointers.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/EnumerateRangeRefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/EnumerateRangeRefs.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/EnumerateRelRefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/EnumerateRelRefs.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/ListRanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/ListRanges.h -------------------------------------------------------------------------------- /src/VirtualAddressMapCommands/SummarizeRanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualAddressMapCommands/SummarizeRanges.h -------------------------------------------------------------------------------- /src/VirtualMemoryPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/src/VirtualMemoryPartition.h -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/README -------------------------------------------------------------------------------- /test/expectedOutput/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/CMakeLists.txt -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263 -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.count_used_%DequeBlock: -------------------------------------------------------------------------------- 1 | 120 allocations use 0xf1e0 (61,920) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.count_used_%DequeBlock::maxincoming:%DequeMap=0::skipUnfavoredReferences:true: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.count_used_%DequeBlock::maxincoming:%DequeMap=1::skipUnfavoredReferences:true: -------------------------------------------------------------------------------- 1 | 120 allocations use 0xf1e0 (61,920) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.count_used_%DequeBlock::minincoming:%DequeMap=1::skipUnfavoredReferences:true: -------------------------------------------------------------------------------- 1 | 120 allocations use 0xf1e0 (61,920) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.count_used_%DequeBlock::minincoming:%DequeMap=2::skipUnfavoredReferences:true: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.count_used_%DequeMap: -------------------------------------------------------------------------------- 1 | 108 allocations use 0xf30 (3,888) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.count_used_%DequeMap::maxfreeoutgoing:%DequeBlock=0::skipTaintedReferences:true: -------------------------------------------------------------------------------- 1 | 108 allocations use 0xf30 (3,888) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.count_used_%DequeMap::maxoutgoing:%DequeBlock=0::skipTaintedReferences:true: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.count_used_%DequeMap::minfreeoutgoing:%DequeBlock=1::skipTaintedReferences:true: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.count_used_%DequeMap::minoutgoing:%DequeBlock=1::skipTaintedReferences:true: -------------------------------------------------------------------------------- 1 | 108 allocations use 0xf30 (3,888) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.describe_freeoutgoing_8060fb0::skipTaintedReferences:true: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.describe_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.describe_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.explain_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.explain_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/core.24263.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/DequePatternTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/LongStringTest/core.26548: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/LongStringTest/core.26548 -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/LongStringTest/core.26548.describe_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/LongStringTest/core.26548.describe_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/LongStringTest/core.26548.explain_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/LongStringTest/core.26548.explain_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/LongStringTest/core.26548.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/LongStringTest/core.26548.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/LongStringTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/LongStringTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088 -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_anchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_anchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_exactincoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_free: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x20fe8 (135,144) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_incoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_outgoing_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_registeranchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_stackanchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.count_used: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_anchored: -------------------------------------------------------------------------------- 1 | 804a008 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_anchorpoints: -------------------------------------------------------------------------------- 1 | 804a008 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_exactincoming_804a008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_free: -------------------------------------------------------------------------------- 1 | 804a018 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_incoming_804a008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_leaked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_outgoing_804a008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_pointers_804a008: -------------------------------------------------------------------------------- 1 | ffffd52c 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_registeranchored: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_registeranchorpoints: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_stackanchored: -------------------------------------------------------------------------------- 1 | 804a008 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 804a008 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_staticanchored: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_staticanchorpoints: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.enumerate_used: -------------------------------------------------------------------------------- 1 | 804a008 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_anchored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_anchored -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_exactincoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_free -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_incoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_outgoing_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_registeranchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.list_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_anchored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_anchored -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_exactincoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_incoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_outgoing_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_registeranchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.show_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_exactincoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_free -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_incoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_outgoing_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_registeranchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.summarize_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneAllocated/core.2088.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneAllocated/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneAllocated/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504 -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_anchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_anchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_exactincoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_exactincoming_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_free: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x20fd8 (135,128) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_incoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_incoming_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_leaked: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_outgoing_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_outgoing_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_registeranchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_stackanchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0xc (12) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.count_used: -------------------------------------------------------------------------------- 1 | 2 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_anchored: -------------------------------------------------------------------------------- 1 | 804a018 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_anchorpoints: -------------------------------------------------------------------------------- 1 | 804a018 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_exactincoming_804a008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_exactincoming_804a018: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_free: -------------------------------------------------------------------------------- 1 | 804a028 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_incoming_804a008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_incoming_804a018: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_leaked: -------------------------------------------------------------------------------- 1 | 804a008 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_outgoing_804a008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_outgoing_804a018: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_pointers_804a008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_pointers_804a018: -------------------------------------------------------------------------------- 1 | ffffd4dc 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_registeranchored: -------------------------------------------------------------------------------- 1 | 804a018 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 804a018 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_stackanchored: -------------------------------------------------------------------------------- 1 | 804a018 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 804a018 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_staticanchored: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_staticanchorpoints: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.enumerate_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_anchored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_anchored -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_anchorpoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_anchorpoints -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_exactincoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_exactincoming_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_free -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_incoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_incoming_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_leaked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_leaked -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_outgoing_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_outgoing_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.list_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_anchored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_anchored -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_anchorpoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_anchorpoints -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_exactincoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_exactincoming_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_incoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_incoming_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_leaked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_leaked -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_outgoing_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_outgoing_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.show_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_exactincoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_exactincoming_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_free -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_incoming_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_incoming_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_leaked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_leaked -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_outgoing_804a008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_outgoing_804a018: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.summarize_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/core.51504.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/OneLeaked/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/OneLeaked/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/UnmanglingTest/core.27709: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/UnmanglingTest/core.27709 -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/UnmanglingTest/core.27709.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/UnmanglingTest/core.27709.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF32/LibcMalloc/UnmanglingTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF32/LibcMalloc/UnmanglingTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.count_inaccessible: -------------------------------------------------------------------------------- 1 | 7 inaccessible ranges use 0xbfd000 (12,570,624) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.count_readonly: -------------------------------------------------------------------------------- 1 | 7 read-only ranges use 0x14000 (81,920) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.count_rxonly: -------------------------------------------------------------------------------- 1 | 17 rx-only ranges use 0x492000 (4,792,320) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.count_writable: -------------------------------------------------------------------------------- 1 | 12 writable ranges use 0x872000 (8,855,552) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_7ff37da7b000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_7ff37da7b000 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_7ff37dc79fff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_7ff37dc79fff -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_arenas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_arenas -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_inaccessible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_inaccessible -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_readonly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_readonly -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_rxonly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_rxonly -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_stacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_stacks -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_writable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.describe_writable -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.explain_7ff37da7b000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.explain_7ff37da7b000 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.explain_7ff37dc79fff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.explain_7ff37dc79fff -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.explain_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.explain_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.find32_464c457f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.find32_464c457f -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_inaccessible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_inaccessible -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_modules -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_readonly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_readonly -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_rxonly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_rxonly -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_stacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_stacks -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_writable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.list_writable -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.show_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.show_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.summarize_readonly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.summarize_readonly -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.summarize_rxonly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.summarize_rxonly -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.summarize_signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.summarize_signatures -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.summarize_writable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.summarize_writable -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/core.Demo6.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Demo6/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Demo6/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.count_used_%DequeBlock: -------------------------------------------------------------------------------- 1 | 144 allocations use 0x12480 (74,880) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.count_used_%DequeBlock::maxincoming:%DequeMap=0::skipUnfavoredReferences:true: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.count_used_%DequeBlock::maxincoming:%DequeMap=1::skipUnfavoredReferences:true: -------------------------------------------------------------------------------- 1 | 144 allocations use 0x12480 (74,880) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.count_used_%DequeBlock::minincoming:%DequeMap=1::skipUnfavoredReferences:true: -------------------------------------------------------------------------------- 1 | 144 allocations use 0x12480 (74,880) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.count_used_%DequeBlock::minincoming:%DequeMap=2::skipUnfavoredReferences:true: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.count_used_%DequeMap: -------------------------------------------------------------------------------- 1 | 108 allocations use 0x2220 (8,736) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.count_used_%DequeMap::maxfreeoutgoing:%DequeBlock=0::skipTaintedReferences:true: -------------------------------------------------------------------------------- 1 | 108 allocations use 0x2220 (8,736) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.count_used_%DequeMap::maxoutgoing:%DequeBlock=0::skipTaintedReferences:true: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.count_used_%DequeMap::minfreeoutgoing:%DequeBlock=1::skipTaintedReferences:true: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.count_used_%DequeMap::minoutgoing:%DequeBlock=1::skipTaintedReferences:true: -------------------------------------------------------------------------------- 1 | 108 allocations use 0x2220 (8,736) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.describe_freeoutgoing_61c980::skipTaintedReferences:true: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/core.14644.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/DequePatternTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasContainersAndSymbols/core.38066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/HasContainersAndSymbols/core.38066 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasContainersAndSymbols/core.38066.count_used: -------------------------------------------------------------------------------- 1 | 12 allocations use 0x3e0 (992) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasContainersAndSymbols/core.38066.count_used::extend:->: -------------------------------------------------------------------------------- 1 | 12 allocations use 0x3e0 (992) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasContainersAndSymbols/core.38066.count_used::extend:<-: -------------------------------------------------------------------------------- 1 | 12 allocations use 0x3e0 (992) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasContainersAndSymbols/core.38066.enumerate_used_HasPair::extend:HasPair<-: -------------------------------------------------------------------------------- 1 | 603430 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasContainersAndSymbols/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/HasContainersAndSymbols/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasInheritance/core.HasInheritance.37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/HasInheritance/core.HasInheritance.37 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasInheritance/core.HasInheritance.37.describe_used::minoutgoing:S2=3: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasInheritance/core.HasInheritance.37.describe_used_%VectorBody::maxoutgoing:S1=3: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasInheritance/core.HasInheritance.37.describe_used_%VectorBody::maxoutgoing:S2=1: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasInheritance/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/HasInheritance/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasStatic/core.26574: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/HasStatic/core.26574 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasStatic/core.26574.explain_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/HasStatic/core.26574.explain_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasStatic/core.26574.show_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/HasStatic/core.26574.show_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasStatic/core.26574.symdefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/HasStatic/core.26574.symdefs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasStatic/core.26574.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/HasStatic/core.26574.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasStatic/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/HasStatic/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_anchored: -------------------------------------------------------------------------------- 1 | 3 allocations use 0x11c38 (72,760) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_anchorpoints: -------------------------------------------------------------------------------- 1 | 3 allocations use 0x11c38 (72,760) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_exactincoming_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_exactincoming_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_exactincoming_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_free: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x203a0 (132,000) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_incoming_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_incoming_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_incoming_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_outgoing_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_outgoing_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_outgoing_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_registeranchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_stackanchored: -------------------------------------------------------------------------------- 1 | 2 allocations use 0x30 (48) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 2 allocations use 0x30 (48) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_staticanchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x11c08 (72,712) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x11c08 (72,712) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_used: -------------------------------------------------------------------------------- 1 | 3 allocations use 0x11c38 (72,760) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_used_B: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_used_D: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_used_b: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.count_used_d: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_exactincoming_602010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_exactincoming_613c20: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_exactincoming_613c40: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_free: -------------------------------------------------------------------------------- 1 | 613c60 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_incoming_602010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_incoming_613c20: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_incoming_613c40: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_leaked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_outgoing_602010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_outgoing_613c20: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_outgoing_613c40: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_registeranchored: -------------------------------------------------------------------------------- 1 | 613c40 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 613c40 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_stackanchored: -------------------------------------------------------------------------------- 1 | 613c20 2 | 613c40 3 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 613c20 2 | 613c40 3 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_staticanchored: -------------------------------------------------------------------------------- 1 | 602010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.enumerate_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 602010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.list_exactincoming_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.list_exactincoming_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.list_exactincoming_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.list_incoming_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.list_incoming_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.list_incoming_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.list_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.list_outgoing_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.list_outgoing_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.list_outgoing_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.show_exactincoming_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.show_exactincoming_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.show_exactincoming_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.show_incoming_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.show_incoming_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.show_incoming_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.show_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.show_outgoing_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.show_outgoing_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.show_outgoing_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.summarize_exactincoming_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.summarize_exactincoming_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.summarize_exactincoming_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.summarize_incoming_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.summarize_incoming_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.summarize_incoming_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.summarize_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.summarize_outgoing_602010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.summarize_outgoing_613c20: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/HasSymbols_CoreHasMangledTypeNames_NoSymdefs/core.34218.summarize_outgoing_613c40: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/JustABigOne/core.justABigOne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/JustABigOne/core.justABigOne -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/JustABigOne/core.justABigOne.list_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/JustABigOne/core.justABigOne.list_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/JustABigOne/core.justABigOne.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/JustABigOne/core.justABigOne.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/JustABigOne/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/JustABigOne/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/ListTest/core.52238: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/ListTest/core.52238 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/ListTest/core.52238.show_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/ListTest/core.52238.show_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/ListTest/core.52238.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/ListTest/core.52238.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/ListTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/ListTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/LongStringTest/core.26368: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/LongStringTest/core.26368 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/LongStringTest/core.26368.explain_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/LongStringTest/core.26368.explain_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/LongStringTest/core.26368.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/LongStringTest/core.26368.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/LongStringTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/LongStringTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MallocedPythonArenasTest/core.6792.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/MallocedPythonArenasTest/core.6792.bz2 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MallocedPythonArenasTest/core.6792.count_used_%ContainerPythonObject: -------------------------------------------------------------------------------- 1 | 4176 allocations use 0x6e640 (452,160) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MallocedPythonArenasTest/core.6792.count_used_%PyDictKeysObject: -------------------------------------------------------------------------------- 1 | 131 allocations use 0x7fba0 (523,168) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MallocedPythonArenasTest/core.6792.count_used_%PythonListItems: -------------------------------------------------------------------------------- 1 | 53 allocations use 0x1418 (5,144) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MallocedPythonArenasTest/core.6792.count_used_%SimplePythonObject: -------------------------------------------------------------------------------- 1 | 4342 allocations use 0x55b20 (351,008) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MallocedPythonArenasTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/MallocedPythonArenasTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MapOrSetPatternTest/core.59709: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/MapOrSetPatternTest/core.59709 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MapOrSetPatternTest/core.59709.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/MapOrSetPatternTest/core.59709.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MapOrSetPatternTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/MapOrSetPatternTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MmappedPythonArenasTest/core.63767.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/MmappedPythonArenasTest/core.63767.bz2 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MmappedPythonArenasTest/core.63767.count_used_%ContainerPythonObject: -------------------------------------------------------------------------------- 1 | 8995 allocations use 0xeb198 (962,968) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MmappedPythonArenasTest/core.63767.count_used_%PyDictKeysObject: -------------------------------------------------------------------------------- 1 | 747 allocations use 0xa95e0 (693,728) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MmappedPythonArenasTest/core.63767.count_used_%PythonListItems: -------------------------------------------------------------------------------- 1 | 32 allocations use 0xd3d0 (54,224) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MmappedPythonArenasTest/core.63767.count_used_%SimplePythonObject: -------------------------------------------------------------------------------- 1 | 8703 allocations use 0xb3240 (733,760) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/MmappedPythonArenasTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/MmappedPythonArenasTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_anchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_anchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_exactincoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_free: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x20fd0 (135,120) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_incoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_outgoing_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_registeranchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_stackanchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.count_used: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_anchored: -------------------------------------------------------------------------------- 1 | 601010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_anchorpoints: -------------------------------------------------------------------------------- 1 | 601010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_exactincoming_601010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_free: -------------------------------------------------------------------------------- 1 | 601030 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_incoming_601010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_leaked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_outgoing_601010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_registeranchored: -------------------------------------------------------------------------------- 1 | 601010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 601010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_stackanchored: -------------------------------------------------------------------------------- 1 | 601010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 601010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_staticanchored: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_staticanchorpoints: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.enumerate_used: -------------------------------------------------------------------------------- 1 | 601010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_anchored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_anchored -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_exactincoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_free -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_incoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_outgoing_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.list_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.show_anchored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.show_anchored -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.show_exactincoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.show_incoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.show_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.show_outgoing_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.show_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.show_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.show_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.show_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.summarize_exactincoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.summarize_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.summarize_free -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.summarize_incoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.summarize_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.summarize_outgoing_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.summarize_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.summarize_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.summarize_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.summarize_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneAllocated/core.48555.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneAllocated/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneAllocated/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661.count_freeoutgoing_6030b0: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x38 (56) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661.count_outgoing_6030b0: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x38 (56) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661.enumerate_freeoutgoing_6030b0: -------------------------------------------------------------------------------- 1 | 603070 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661.enumerate_outgoing_6030b0: -------------------------------------------------------------------------------- 1 | 603010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661.list_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661.list_free -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661.show_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661.show_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/core.5661.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneHasFreeOutgoing/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_anchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_anchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_exactincoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_exactincoming_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_free: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x20fb0 (135,088) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_incoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_incoming_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_leaked: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_outgoing_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_outgoing_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_registeranchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_stackanchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x18 (24) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.count_used: -------------------------------------------------------------------------------- 1 | 2 allocations use 0x30 (48) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_anchored: -------------------------------------------------------------------------------- 1 | 601030 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_anchorpoints: -------------------------------------------------------------------------------- 1 | 601030 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_exactincoming_601010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_exactincoming_601030: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_free: -------------------------------------------------------------------------------- 1 | 601050 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_incoming_601010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_incoming_601030: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_leaked: -------------------------------------------------------------------------------- 1 | 601010 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_outgoing_601010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_outgoing_601030: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_pointers_601010: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_registeranchored: -------------------------------------------------------------------------------- 1 | 601030 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 601030 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_stackanchored: -------------------------------------------------------------------------------- 1 | 601030 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 601030 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_staticanchored: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_staticanchorpoints: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.enumerate_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_anchored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_anchored -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_anchorpoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_anchorpoints -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_exactincoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_exactincoming_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_free -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_incoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_incoming_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_leaked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_leaked -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_outgoing_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_outgoing_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.list_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_anchored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_anchored -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_anchorpoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_anchorpoints -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_exactincoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_exactincoming_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_incoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_incoming_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_leaked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_leaked -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_outgoing_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_outgoing_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.show_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_exactincoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_exactincoming_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_free: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_free -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_incoming_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_incoming_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_leaked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_leaked -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_outgoing_601010: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_outgoing_601030: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_staticanchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_used: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.summarize_used -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/core.20675.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/OneLeaked/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/OneLeaked/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/PyDictKeysObjectTest/core.21887: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/PyDictKeysObjectTest/core.21887 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/PyDictKeysObjectTest/core.21887.count_used_%ContainerPythonObject: -------------------------------------------------------------------------------- 1 | 9998 allocations use 0xf2f10 (995,088) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/PyDictKeysObjectTest/core.21887.count_used_%PyDictKeysObject: -------------------------------------------------------------------------------- 1 | 619 allocations use 0xc36a0 (800,416) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/PyDictKeysObjectTest/core.21887.count_used_%PythonListItems: -------------------------------------------------------------------------------- 1 | 45 allocations use 0x1c28 (7,208) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/PyDictKeysObjectTest/core.21887.count_used_%SimplePythonObject: -------------------------------------------------------------------------------- 1 | 10126 allocations use 0xd8820 (886,816) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/PyDictKeysObjectTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/PyDictKeysObjectTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/SpinningThreads/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/SpinningThreads/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/SpinningThreads_longHeapHeader/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/SpinningThreads_longHeapHeader/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/core.48555: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Truncated/core.48555 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/core.48555.1M: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Truncated/core.48555.1M -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/core.48555.512K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Truncated/core.48555.512K -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/core.48555.512K.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Truncated/core.48555.512K.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/emptyRun.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Truncated/emptyRun.err -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/emptyRun.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/expectFail.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Truncated/expectFail.err -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/expectFail.exit: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/expectFail.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/expectPass.err: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/expectPass.exit: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/expectPass.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/Truncated/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/Truncated/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/UnmanglingTest/core.26735: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/UnmanglingTest/core.26735 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/UnmanglingTest/core.26735.symreqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/UnmanglingTest/core.26735.symreqs -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/UnmanglingTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/UnmanglingTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/UnorderedMapOrSetPatternTest/core.3522: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/UnorderedMapOrSetPatternTest/core.3522 -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/UnorderedMapOrSetPatternTest/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/UnorderedMapOrSetPatternTest/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_free: -------------------------------------------------------------------------------- 1 | 1586 allocations use 0xcf4c8 (849,096) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_inaccessible: -------------------------------------------------------------------------------- 1 | 0 inaccessible ranges use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_readonly: -------------------------------------------------------------------------------- 1 | 16 read-only ranges use 0xff8b000 (267,956,224) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_rxonly: -------------------------------------------------------------------------------- 1 | 4 rx-only ranges use 0x29000 (167,936) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_stacks: -------------------------------------------------------------------------------- 1 | 5 stacks use 0x2021000 (33,689,600) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_used: -------------------------------------------------------------------------------- 1 | 15731 allocations use 0x239388 (2,331,528) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_used_%ContainerPythonObject: -------------------------------------------------------------------------------- 1 | 7244 allocations use 0xc51a8 (807,336) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_used_%PyDictKeysObject: -------------------------------------------------------------------------------- 1 | 213 allocations use 0xb6730 (747,312) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_used_%PythonListItems: -------------------------------------------------------------------------------- 1 | 73 allocations use 0x1d68 (7,528) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_used_%SimplePythonObject: -------------------------------------------------------------------------------- 1 | 7783 allocations use 0x9e790 (649,104) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.count_writable: -------------------------------------------------------------------------------- 1 | 26 writable ranges use 0x23e7000 (37,646,336) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.describe_243d000: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.describe_inaccessible: -------------------------------------------------------------------------------- 1 | 0 inaccessible ranges use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.explain_243d000: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.list_inaccessible: -------------------------------------------------------------------------------- 1 | 0 inaccessible ranges use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/core.python_5_threads.summarize_inaccessible: -------------------------------------------------------------------------------- 1 | 0 inaccessible ranges use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/LibcMalloc/WrongPhdrsForInaccessible/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_anchored: -------------------------------------------------------------------------------- 1 | 4 allocations use 0x12020 (73,760) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_anchorpoints: -------------------------------------------------------------------------------- 1 | 4 allocations use 0x12020 (73,760) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_exactincoming_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_free: -------------------------------------------------------------------------------- 1 | 1533 allocations use 0xedfd8 (974,808) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_incoming_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_leaked: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x8 (8) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_outgoing_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_registeranchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x8 (8) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x8 (8) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_stackanchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x8 (8) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x8 (8) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_staticanchored: -------------------------------------------------------------------------------- 1 | 3 allocations use 0x12018 (73,752) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 3 allocations use 0x12018 (73,752) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.count_used: -------------------------------------------------------------------------------- 1 | 5 allocations use 0x12028 (73,768) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.enumerate_exactincoming_fe0008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.enumerate_incoming_fe0008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.enumerate_leaked: -------------------------------------------------------------------------------- 1 | fe0000 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.enumerate_outgoing_fe0008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.enumerate_registeranchored: -------------------------------------------------------------------------------- 1 | fe0008 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.enumerate_registeranchorpoints: -------------------------------------------------------------------------------- 1 | fe0008 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.enumerate_stackanchored: -------------------------------------------------------------------------------- 1 | fe0008 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.enumerate_stackanchorpoints: -------------------------------------------------------------------------------- 1 | fe0008 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.list_exactincoming_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.list_incoming_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.list_outgoing_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.show_exactincoming_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.show_incoming_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.show_outgoing_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.summarize_exactincoming_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.summarize_incoming_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/core.193373.summarize_outgoing_fe0008: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/gperftools/gperftools-2.10/OneAllocated/run -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_anchored: -------------------------------------------------------------------------------- 1 | 2 allocations use 0x12008 (73,736) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_anchorpoints: -------------------------------------------------------------------------------- 1 | 2 allocations use 0x12008 (73,736) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_exactincoming_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_free: -------------------------------------------------------------------------------- 1 | 1024 allocations use 0xedff8 (974,840) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_incoming_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_outgoing_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_registeranchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_stackanchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x8 (8) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_stackanchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x8 (8) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_staticanchored: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x12000 (73,728) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_staticanchorpoints: -------------------------------------------------------------------------------- 1 | 1 allocations use 0x12000 (73,728) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.count_used: -------------------------------------------------------------------------------- 1 | 2 allocations use 0x12008 (73,736) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.enumerate_exactincoming_fdc000: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.enumerate_incoming_fdc000: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.enumerate_leaked: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.enumerate_outgoing_fdc000: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.enumerate_registeranchored: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.enumerate_registeranchorpoints: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.enumerate_stackanchored: -------------------------------------------------------------------------------- 1 | fdc000 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.enumerate_stackanchorpoints: -------------------------------------------------------------------------------- 1 | fdc000 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.enumerate_staticanchored: -------------------------------------------------------------------------------- 1 | fca000 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.enumerate_staticanchorpoints: -------------------------------------------------------------------------------- 1 | fca000 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.list_exactincoming_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.list_incoming_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.list_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.list_outgoing_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.list_registeranchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.list_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.show_exactincoming_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.show_incoming_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.show_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.show_outgoing_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.show_registeranchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.show_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.summarize_exactincoming_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.summarize_incoming_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.summarize_leaked: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.summarize_outgoing_fdc000: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.summarize_registeranchored: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/core.591414.summarize_registeranchorpoints: -------------------------------------------------------------------------------- 1 | 0 allocations use 0x0 (0) bytes. 2 | -------------------------------------------------------------------------------- /test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/ELF64/gperftools/gperftools-2.15/OneAllocated/run -------------------------------------------------------------------------------- /test/expectedOutput/driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/expectedOutput/driver -------------------------------------------------------------------------------- /test/generators/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/README -------------------------------------------------------------------------------- /test/generators/generic/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/README -------------------------------------------------------------------------------- /test/generators/generic/multiThreaded/Demo6/Demo6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/multiThreaded/Demo6/Demo6.cpp -------------------------------------------------------------------------------- /test/generators/generic/multiThreaded/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/multiThreaded/README -------------------------------------------------------------------------------- /test/generators/generic/multiThreaded/SpinningThreads/SpinningThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/multiThreaded/SpinningThreads/SpinningThreads.cpp -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/HasInheritance/HasInheritance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/HasInheritance/HasInheritance.cpp -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/HasStatic/HasStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/HasStatic/HasStatic.cpp -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/HasSymbols/HasSymbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/HasSymbols/HasSymbols.cpp -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/JustABigOne/justABigOne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/JustABigOne/justABigOne.c -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/ListTest/ListTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/ListTest/ListTest.cpp -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/LongStringTest/LongStringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/LongStringTest/LongStringTest.cpp -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/OneAllocated/OneAllocated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/OneAllocated/OneAllocated.c -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/OneLeaked/OneLeaked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/OneLeaked/OneLeaked.c -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/PythonArenasTest/sleepy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/PythonArenasTest/sleepy.py -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/PythonArenasTest/spinny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/PythonArenasTest/spinny.py -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/README -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/UnmanglingTest/UnmanglingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/UnmanglingTest/UnmanglingTest.cpp -------------------------------------------------------------------------------- /test/generators/generic/singleThreaded/UseAfterFree/UseAfterFree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/chap/HEAD/test/generators/generic/singleThreaded/UseAfterFree/UseAfterFree.c -------------------------------------------------------------------------------- /thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(replxx EXCLUDE_FROM_ALL) 2 | --------------------------------------------------------------------------------