Uses of Class
soot.util.queue.QueueReader
-
Packages that use QueueReader Package Description soot.jimple.spark.internal soot.jimple.spark.pag soot.jimple.spark.solver soot.jimple.toolkits.callgraph soot.util.queue An efficient queue implementation to be used generally within Soot. -
-
Uses of QueueReader in soot.jimple.spark.internal
Fields in soot.jimple.spark.internal declared as QueueReader Modifier and Type Field Description protected QueueReader<AllocNode>
TypeManager. allocNodeListener
-
Uses of QueueReader in soot.jimple.spark.pag
Methods in soot.jimple.spark.pag that return QueueReader Modifier and Type Method Description QueueReader<AllocNode>
PAG. allocNodeListener()
QueueReader<Node>
PAG. edgeReader()
-
Uses of QueueReader in soot.jimple.spark.solver
Fields in soot.jimple.spark.solver declared as QueueReader Modifier and Type Field Description protected QueueReader<Edge>
OnFlyCallGraph. callEdges
protected QueueReader<MethodOrMethodContext>
OnFlyCallGraph. reachablesReader
-
Uses of QueueReader in soot.jimple.toolkits.callgraph
Fields in soot.jimple.toolkits.callgraph declared as QueueReader Modifier and Type Field Description protected QueueReader<MethodOrMethodContext>
ReachableMethods. allReachables
protected QueueReader<Edge>
CallGraph. reader
protected QueueReader<SootMethod>
OnFlyCallGraphBuilder. targets
protected QueueReader<MethodOrMethodContext>
ReachableMethods. unprocessedMethods
protected QueueReader<MethodOrMethodContext>
OnFlyCallGraphBuilder. worklist
Methods in soot.jimple.toolkits.callgraph that return QueueReader Modifier and Type Method Description QueueReader<Edge>
CallGraph. listener()
Returns a QueueReader object containing all edges added so far, and which will be informed of any new edges that are later added to the graph.QueueReader<MethodOrMethodContext>
ReachableMethods. listener()
Returns a QueueReader object containing all methods found reachable so far, and which will be informed of any new methods that are later found to be reachable.QueueReader<Edge>
SlowCallGraph. listener()
Returns a QueueReader object containing all edges added so far, and which will be informed of any new edges that are later added to the graph.QueueReader<Edge>
CallGraph. newListener()
Returns a QueueReader object which will contain ONLY NEW edges which will be added to the graph.QueueReader<MethodOrMethodContext>
ReachableMethods. newListener()
Returns a QueueReader object which will contain ONLY NEW methods which will be found to be reachable, but not those that have already been found to be reachable.QueueReader<Edge>
SlowCallGraph. newListener()
Returns a QueueReader object which will contain ONLY NEW edges which will be added to the graph. -
Uses of QueueReader in soot.util.queue
Methods in soot.util.queue that return QueueReader Modifier and Type Method Description QueueReader<E>
QueueReader. clone()
QueueReader<E>
ChunkedQueue. reader()
Create reader which will read objects from the queue.
-