Home | History | Annotate | Download | only in scripts

Lines Matching full:line

24   address often belongs to the next source code line, or even to a different
40 for line in readelf_pipe.stdout:
41 if ('LOAD' in line) and (' E ' in line):
42 match = re.match(r'\s*LOAD\s+0x[01-9a-zA-Z]+\s+(0x[01-9a-zA-Z]+)', line, re.UNICODE)
59 def symbolize_addr2line(line, binary_prefix, paths_to_cut):
62 line = re.sub(r'^[A-Z]/[^\s]*\(\s*\d+\): ', '', line)
64 match = re.match(r'^(\s*#)([0-9]+) *(0x[0-9a-f]+) *\((.*)\+(0x[0-9a-f]+)\)', line, re.UNICODE)
110 print line.rstrip().encode('utf-8')
116 for line in sys.stdin:
117 line = line.decode('utf-8')
118 symbolize_addr2line(line, binary_prefix, paths_to_cut)