Lines Matching defs:line
25 address often belongs to the next source code line, or even to a different
42 for line in readelf_pipe.stdout:
43 if ('LOAD' in line) and (' E ' in line):
44 match = re.match(r'\s*LOAD\s+0x[01-9a-zA-Z]+\s+(0x[01-9a-zA-Z]+)', line, re.UNICODE)
61 def symbolize_addr2line(line, binary_prefix, paths_to_cut):
64 line = re.sub(r'^.*?: ', '', line)
66 match = re.match(r'^(\s*#)([0-9]+) *(0x[0-9a-f]+) *\((.*)\+(0x[0-9a-f]+)\)', line, re.UNICODE)
78 print line.rstrip().encode('utf-8')
116 print line.rstrip().encode('utf-8')
122 for line in sys.stdin:
123 line = line.decode('utf-8')
124 symbolize_addr2line(line, binary_prefix, paths_to_cut)