Module Callgraph

module Callgraph: sig .. end
This module defines a type for call graph and provides functions for generating and printing a call graph.

type cg 
Call Graph
val make_cg : Dex.dex -> cg
make call graph for overall Dex.dex file
val callers : Dex.dex -> int -> cg -> Dex.link -> Dex.link list
find callers for the given method, with a certain depth
val dependants : Dex.dex -> cg -> Dex.link -> Dex.link list
find dependent classes for the given class
val cg2dot : Dex.dex -> cg -> unit
print Callgraph.cg in dot format

Web Accessibility