Uses of Class
sootup.callgraph.CallGraph.Call
-
Uses of CallGraph.Call in qilin.core.builder.callgraph
Modifier and TypeFieldDescriptionprotected Map<MethodSignature,
Set<CallGraph.Call>> OnFlyCallGraph.calls
Modifier and TypeMethodDescriptionOnFlyCallGraph.callsFrom
(MethodSignature sourceMethod) OnFlyCallGraph.callsTo
(MethodSignature targetMethod) Modifier and TypeMethodDescriptionvoid
OnFlyCallGraph.addCall
(CallGraph.Call call) boolean
OnFlyCallGraph.containsCall
(CallGraph.Call call) -
Uses of CallGraph.Call in sootup.callgraph
Modifier and TypeFieldDescriptionprotected Map<ClassType,
List<CallGraph.Call>> RapidTypeAnalysisAlgorithm.ignoredCalls
Modifier and TypeMethodDescriptionprotected CallGraph.Call
GraphBasedCallGraph.edgeOf
(MethodSignature source, MethodSignature target, InvokableStmt invokableStmt) it returns the edge of the graph that is described by the given source, target, stmt in the call graph.Modifier and TypeMethodDescriptionCallGraph.callsFrom
(MethodSignature sourceMethod) This method returns all method signatures that are called by a given method signature.GraphBasedCallGraph.callsFrom
(MethodSignature sourceMethod) CallGraph.callsTo
(MethodSignature targetMethod) This method returns all method signatures that call a given method signature.GraphBasedCallGraph.callsTo
(MethodSignature targetMethod) Modifier and TypeMethodDescriptionvoid
GraphBasedCallGraph.addCall
(CallGraph.Call call) void
MutableCallGraph.addCall
(CallGraph.Call call) This method enables to add calls that are edges in the call graph.boolean
CallGraph.containsCall
(CallGraph.Call call) This method checks if an edge is contained in the call graph.boolean
GraphBasedCallGraph.containsCall
(CallGraph.Call call) protected String
GraphBasedCallGraph.printCalledMethods
(CallGraph.Call call) This returns the string that is used in the toString Method to define the called methodsprotected String
GraphBasedCallGraph.printCallingMethods
(CallGraph.Call call) This returns the string that is used in the toString Method to define the methods that call a specific methodprotected String
GraphBasedCallGraph.toDotEdge
(CallGraph.Call call) exports a call of the call graph to an edge in a dot fileModifierConstructorDescriptionprotected
GraphBasedCallGraph
(org.jgrapht.graph.DirectedPseudograph<GraphBasedCallGraph.Vertex, CallGraph.Call> graph, Map<MethodSignature, GraphBasedCallGraph.Vertex> signatureToVertex, List<MethodSignature> entryMethods)