Lines Matching refs:stop_addr
84 def read_disam(dso_fname, dso_start, start_addr, stop_addr): argument
85 addr_range = str(start_addr) + ":" + str(stop_addr) + ":" + dso_fname
95 stop_addr = stop_addr - dso_start;
98 "--stop-address="+format(stop_addr,"#x") ]
105 def print_disam(dso_fname, dso_start, start_addr, stop_addr): argument
106 for line in read_disam(dso_fname, dso_start, start_addr, stop_addr):
242 stop_addr = ip + 4
248 if (start_addr == 0 and stop_addr == 4):
256 if (stop_addr < int(dso_start) or stop_addr > int(dso_end)):
257 …print("Stop address 0x%x is out of range [ 0x%x .. 0x%x ] for dso %s" % (stop_addr, int(dso_start)…
270 print_disam(dso_fname, dso_vm_start, start_addr, stop_addr)
272 print("Failed to find dso %s for address range [ 0x%x .. 0x%x ]" % (dso, start_addr, stop_addr))