Example #1
0
 protected RootPathFinder(HeapIndex index, ulong targetObject)
 {
     Index = index;
     TargetObject = targetObject;
     Visited = new ObjectSet(Index._heap);
 }
Example #2
0
 public ParallelBreadthFirstRootPathFinder(HeapIndex index, ulong targetObject)
     : base(index, targetObject)
 {
 }
Example #3
0
 public DepthFirstRootPathFinder(HeapIndex index, ulong targetObject)
     : base(index, targetObject)
 {
 }
Example #4
0
 public ParallelBreadthFirstRootPathFinder(HeapIndex index, ulong targetObject)
     : base(index, targetObject)
 {
 }
Example #5
0
 public DepthFirstRootPathFinder(HeapIndex index, ulong targetObject)
     : base(index, targetObject)
 {
 }
Example #6
0
 protected RootPathFinder(HeapIndex index, ulong targetObject)
 {
     Index        = index;
     TargetObject = targetObject;
     Visited      = new ObjectSet(Index._heap);
 }