mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 18:16:55 +01:00
109158fabb
- Added AskUsingForm() with embedded forms support (check ex_askusingform.py example and formchooser.py in the SDK) - Added idautils.DecodePreviousInstruction() / DecodePrecedingInstruction() - Added idc.BeginTypeUpdating() / EndTypeUpdating() for fast batch type update operations - Added more IDP callbacks - Added UI_Hooks with a few notification events - Added idaapi.process_ui_action() / idc.ProcessUiAction() - Added netnode.index() to get netnode number - Better handling of ea_t values with bitwise negation - Execute statement hotkey (Ctrl-F3), script timeout, and other options are now configurable with Python.cfg - bugfix: idaapi.msg() / error() and warning() so they don't accept vararg - bugfix: processor_t.id constants were incorrect - bugfix: get_debug_names() was broken with IDA64 - Various bugfixes
33 lines
767 B
Python
33 lines
767 B
Python
#
|
|
# Reference Lister
|
|
#
|
|
# List all functions and all references to them in the current section.
|
|
#
|
|
# Implemented using direct IDA Plugin API calls
|
|
#
|
|
from idaapi import *
|
|
|
|
def main():
|
|
# Get current ea
|
|
ea = get_screen_ea()
|
|
|
|
# Get segment class
|
|
seg = getseg(ea)
|
|
|
|
# Loop from segment start to end
|
|
func = get_next_func(seg.startEA)
|
|
seg_end = seg.endEA
|
|
while func is not None and func.startEA < seg_end:
|
|
funcea = func.startEA
|
|
print "Function %s at 0x%x" % (GetFunctionName(funcea), funcea)
|
|
|
|
ref = get_first_cref_to(funcea)
|
|
|
|
while ref != BADADDR:
|
|
print " called from %s(0x%x)" % (get_func_name(ref), ref)
|
|
ref = get_next_cref_to(funcea, ref)
|
|
|
|
func = get_next_func(funcea)
|
|
|
|
|
|
main() |