Home | History | Annotate | Download | only in valgrind

Lines Matching full:line

12 GDB_LINE_RE = re.compile(r'Line ([0-9]*) of "([^"]*)".*')
15 ''' Parse the gdb output line, return a pair (file, line num) '''
23 ''' For each address, return a pair (file, line num) '''
27 commands.write('info line *%s\n' % addr)
36 for line in result:
37 if line.startswith('Line'):
38 ret[address_list[address_count]] = _GdbOutputToFileLine(line)
40 if line.startswith('No line'):
48 ''' Object to do batched line number lookup. '''