Lines Matching refs:stop_addr
83 def read_disam(dso_fname, dso_start, start_addr, stop_addr): argument
84 addr_range = str(start_addr) + ":" + str(stop_addr) + ":" + dso_fname
94 stop_addr = stop_addr - dso_start;
97 "--stop-address="+format(stop_addr,"#x") ]
104 def print_disam(dso_fname, dso_start, start_addr, stop_addr): argument
105 for line in read_disam(dso_fname, dso_start, start_addr, stop_addr):
241 stop_addr = ip + 4
247 if (start_addr == 0 and stop_addr == 4):
255 if (stop_addr < int(dso_start) or stop_addr > int(dso_end)):
256 …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))