예제 #1
0
파일: HeapIndex.cs 프로젝트: goldshtn/msos
 protected RootPathFinder(HeapIndex index, ulong targetObject)
 {
     Index = index;
     TargetObject = targetObject;
     Visited = new ObjectSet(Index._heap);
 }
예제 #2
0
파일: HeapIndex.cs 프로젝트: goldshtn/msos
 public ParallelBreadthFirstRootPathFinder(HeapIndex index, ulong targetObject)
     : base(index, targetObject)
 {
 }
예제 #3
0
파일: HeapIndex.cs 프로젝트: goldshtn/msos
 public DepthFirstRootPathFinder(HeapIndex index, ulong targetObject)
     : base(index, targetObject)
 {
 }
예제 #4
0
 public ParallelBreadthFirstRootPathFinder(HeapIndex index, ulong targetObject)
     : base(index, targetObject)
 {
 }
예제 #5
0
 public DepthFirstRootPathFinder(HeapIndex index, ulong targetObject)
     : base(index, targetObject)
 {
 }
예제 #6
0
 protected RootPathFinder(HeapIndex index, ulong targetObject)
 {
     Index        = index;
     TargetObject = targetObject;
     Visited      = new ObjectSet(Index._heap);
 }