def __init__(self, location):
self.at = location
# self.name = GetFunctionName(location)
self.name = GetFuncOffset(location)
self.start = 0
self.end = 0
self.func_offset = 0
try:
_func = idaapi.get_func(location)
self.start = _func.startEA
self.end = _func.endEA # ==FindFuncEnd(location)
self.func_offset = self.start - self.at
except Exception, e:
logger.exception(e)
if not self.name:
self.indirect = True
else:
self.indirect = False
ida_batch_decompile.py 文件源码
python
阅读 31
收藏 0
点赞 0
评论 0
评论列表
文章目录