idautils.py: Added Chunk() to list function chunks. Thanks to Ero Carrera for the patch.

This commit is contained in:
gergely.erdelyi 2008-06-13 20:29:05 +00:00
parent 52f26ecf67
commit d0e3a964d8

View File

@ -172,6 +172,28 @@ def Functions(start, end):
return funclist return funclist
def Chunks(start):
"""
Get a list of function chunks
@param start: address of the function
@return: list of funcion chunks (tuples of the form (start_ea, end_ea))
belonging to the function
"""
function_chunks = []
func_iter = idaapi.func_tail_iterator_t( idaapi.get_func( start ) )
status = func_iter.main()
while status:
chunk = func_iter.chunk()
function_chunks.append((chunk.startEA, chunk.endEA))
status = func_iter.next()
return function_chunks
def Segments(): def Segments():
""" """
Get list of segments (sections) in the binary image Get list of segments (sections) in the binary image