Beispiel #1
0
        private void CreateHandleAllocationGraph(Histogram histogram, string title)
        {
            Graph graph         = histogram.BuildHandleAllocationGraph(new FilterForm());
            var   graphViewForm = new GraphViewForm(graph, title);

            graphViewForm.Show();
        }
Beispiel #2
0
        private void heapGraphButton_Click(object sender, System.EventArgs e)
        {
            Graph  graph         = logResult.objectGraph.BuildTypeGraph(new FilterForm());
            string title         = "Heap Graph for " + scenario;
            var    graphViewForm = new GraphViewForm(graph, title);

            graphViewForm.Show();
        }
Beispiel #3
0
        private void allocationGraphButton_Click(object sender, System.EventArgs e)
        {
            Graph  graph         = logResult.allocatedHistogram.BuildAllocationGraph(new FilterForm());
            string title         = "Allocation Graph for: " + scenario;
            var    graphViewForm = new GraphViewForm(graph, title);

            graphViewForm.Show();
        }
 private void heapGraphButton_Click(object sender, System.EventArgs e)
 {
     Graph graph = logResult.objectGraph.BuildTypeGraph(new FilterForm());
     string title = "Heap Graph for " + scenario;
     GraphViewForm graphViewForm = new GraphViewForm(graph, title);
     graphViewForm.Show();
 }
 private void allocationGraphButton_Click(object sender, System.EventArgs e)
 {
     Graph graph = logResult.allocatedHistogram.BuildAllocationGraph(new FilterForm());
     graph.graphType = Graph.GraphType.AllocationGraph;
     string title = "Allocation Graph for: " + scenario;
     GraphViewForm graphViewForm = new GraphViewForm(graph, title);
     graphViewForm.Show();
 }
 private void CreateHandleAllocationGraph(Histogram histogram, string title)
 {
     Graph graph = histogram.BuildHandleAllocationGraph(new FilterForm());
     graph.graphType = Graph.GraphType.HandleAllocationGraph;
     GraphViewForm graphViewForm = new GraphViewForm(graph, title);
     graphViewForm.Show();        
 }