Home | History | Annotate | Download | only in python

Lines Matching refs:start_addr

123     start_addr = 0
128 start_addr = int(args[0], 0)
133 start_addr = int(args[0], 0)
135 if start_addr >= end_addr:
136 print_error ("error: inavlid memory range [%#x - %#x)" % (start_addr, end_addr), True, result)
138 options.size = end_addr - start_addr
156 bytes = process.ReadMemory (start_addr, options.size, error)
159 print >>result, "Searching memory range [%#x - %#x) for" % (start_addr, end_addr),
167 print >>result, '%#x: %#x + %u' % (start_addr + match_index, start_addr, match_index)