in functions/functraceplus.py [0:0]
def __init__(self, ignore_bp = True):
ida_dbg.DBG_Hooks.__init__(self)
self.ignore_bp = ignore_bp
self.is_64bit = True if idaapi.BADADDR == 0xffffffffffffffff else False
self.module_funcs = {}
self.module_address_name = {}
self.entry_points = []
self.to_hook_func = {}
self.break_points = {}
self.break_points_ret_addr = {}
self.getproc_func_ea = None
self.getproc_func_addr = None
self.getproc_func_ret_addrs = {}