Lines Matching refs:dso_start
84 def read_disam(dso_fname, dso_start, start_addr, stop_addr): argument
94 start_addr = start_addr - dso_start;
95 stop_addr = stop_addr - dso_start;
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):
188 dso_start = get_optional(param_dict, "dso_map_start")
201 if ((dso_start == '[unknown]') or (dso_end == '[unknown]')):
252 if (start_addr < int(dso_start) or start_addr > int(dso_end)):
253 …ss 0x%x is out of range [ 0x%x .. 0x%x ] for dso %s" % (start_addr, int(dso_start), int(dso_end), …
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)…
266 dso_vm_start = int(dso_start)