Lines Matching refs:stop_addr
146 def read_disam(dso_fname, dso_start, start_addr, stop_addr): argument
147 addr_range = str(start_addr) + ":" + str(stop_addr) + ":" + dso_fname
157 stop_addr = stop_addr - dso_start;
160 "--stop-address="+format(stop_addr,"#x") ]
167 def print_disam(dso_fname, dso_start, start_addr, stop_addr): argument
168 for line in read_disam(dso_fname, dso_start, start_addr, stop_addr):
320 stop_addr = ip + 4
327 if ((stop_addr == 4) and (options.verbose == True)):
335 if (stop_addr < int(dso_start) or stop_addr > int(dso_end)):
336 …print("Stop address 0x%x is out of range [ 0x%x .. 0x%x ] for dso %s" % (stop_addr, int(dso_start)…
351 print_disam(dso_fname, dso_vm_start, start_addr + map_pgoff, stop_addr + map_pgoff)
353 … dso %s for address range [ 0x%x .. 0x%x ]" % (dso, start_addr + map_pgoff, stop_addr + map_pgoff))