Uses of Class
soot.jimple.toolkits.callgraph.CallGraph

Packages that use CallGraph
soot Base Soot classes, shared by different intermediate representations. 
soot.jimple.spark.solver   
soot.jimple.toolkits.callgraph   
soot.jimple.toolkits.pointer   
 

Uses of CallGraph in soot
 

Methods in soot that return CallGraph
 CallGraph Scene.getCallGraph()
           
 

Methods in soot with parameters of type CallGraph
 void Scene.setCallGraph(CallGraph cg)
           
 

Uses of CallGraph in soot.jimple.spark.solver
 

Methods in soot.jimple.spark.solver that return CallGraph
 CallGraph OnFlyCallGraph.callGraph()
           
 

Uses of CallGraph in soot.jimple.toolkits.callgraph
 

Subclasses of CallGraph in soot.jimple.toolkits.callgraph
 class SlowCallGraph
          Represents the edges in a call graph.
 

Methods in soot.jimple.toolkits.callgraph that return CallGraph
 CallGraph CallGraphBuilder.getCallGraph()
           
 CallGraph ContextInsensitiveContextManager.callGraph()
           
 CallGraph ContextManager.callGraph()
           
 CallGraph ObjSensContextManager.callGraph()
           
 CallGraph OneCFAContextManager.callGraph()
           
 

Methods in soot.jimple.toolkits.callgraph with parameters of type CallGraph
static ContextManager CallGraphBuilder.makeContextManager(CallGraph cg)
           
 

Constructors in soot.jimple.toolkits.callgraph with parameters of type CallGraph
ContextInsensitiveContextManager(CallGraph cg)
           
ObjSensContextManager(CallGraph cg)
           
OneCFAContextManager(CallGraph cg)
           
ReachableMethods(CallGraph graph, Iterator entryPoints)
           
ReachableMethods(CallGraph graph, Iterator entryPoints, Filter filter)
           
ReachableMethods(CallGraph graph, Collection entryPoints)
           
TopologicalOrderer(CallGraph cg)
           
TransitiveTargets(CallGraph cg)
           
TransitiveTargets(CallGraph cg, Filter filter)
           
 

Uses of CallGraph in soot.jimple.toolkits.pointer
 

Constructors in soot.jimple.toolkits.pointer with parameters of type CallGraph
SideEffectAnalysis(PointsToAnalysis pa, CallGraph cg)