def iterate(cls, ea, next):
'''Return an iterator that walks through the database starting at the address ``ea``. Use ``next`` to determine the next address.'''
ea = interface.address.inside(ea)
while ea not in (None,idaapi.BADADDR):
yield ea
ea = next(ea)
return
评论列表
文章目录