This shows how to use the built-in incremental search in python.
3 rvn = reven.Project(
"localhost", 13370)
4 main_trace = rvn.traces()[0]
5 count = main_trace.sequence_count
8 search_criterion = reven.AddressCriterion(0x827085ed)
14 for result
in main_trace.search_point([search_criterion]):
15 print 'Found result at %s' % result