|
__init__(self,
mem)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
_cb_function(self,
fva,
fmeta)
Extend CodeFlowContext and implement this method to recieve a
callback for every newly discovered function. |
source code
|
|
|
_cb_opcode(self,
va,
op,
branches)
Extend CodeFlowContext and implement this method to recieve a
callback for every newly discovered opcode. |
source code
|
|
|
|
|
addCodeFlow(self,
va,
persist=False,
exptable=True)
Do code flow disassembly from the specified address. |
source code
|
|
|
addEntryPoint(self,
va)
Analyze the given procedure entry point and flow downward to find all
subsequent code blocks and procedure edges. |
source code
|
|
|
addFunctionDef(self,
fva,
calls_from)
Add a priori knowledge of a function to the code flow stuff... |
source code
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|