Lines Matching refs:file

111         'file', 'function', 'line',
114 _by = ['file', 'function', 'line']
120 def __new__(cls, file='', function='', line=0,
123 return super().__new__(cls, file, function, int(Int(line)),
128 return PerfBdResult(self.file, self.function, self.line,
155 # matches dir/file table
215 # decodedline seems to have issues with multiple dir/file
240 # found a file entry
260 file = os.path.abspath(files.get(op_file, '?'))
261 lines.append((file, op_line, op_addr))
262 line_at.append((op_addr, file, op_line))
279 for file, line, addr in lines:
280 if len(lines_) == 0 or lines_[-1][0] != file or lines[-1][1] != line:
281 lines_.append((file, line, addr))
287 for addr, file, line in line_at:
289 line_at_.append((addr, file, line))
302 '^(?P<file>[^:]*):(?P<line>[0-9]+):trace:\s*(?P<prefix>[^\s]*?bd_)(?:'
338 file = last_file
345 os.path.abspath(file)
353 os.path.abspath(file)]) == os.getcwd():
359 os.path.abspath(file)]) == os.getcwd():
360 file = os.path.relpath(file)
362 file = os.path.abspath(file)
364 results[(file, sym, line)] = (
393 # try to jump to middle of file? need step out of utf8-safe mode and
420 last_file = os.path.abspath(m.group('file'))
445 # reverse ASLR, fortunately we know the file+line of
467 file, sym, line = cached
486 # find file+line
489 _, file, line = line_at[i-1]
491 file, line = last_file, last_line
493 file, line = re.sub('(\.o)?$', '.c', obj_path, 1), 0
498 os.path.abspath(file)
507 os.path.abspath(file)]) == os.getcwd():
514 os.path.abspath(file)]) == os.getcwd():
515 file = os.path.relpath(file)
517 file = os.path.abspath(file)
519 at_cache[addr] = file, sym, line
521 last_stack.append((file, sym, line))
929 for path in co.OrderedDict.fromkeys(r.file for r in results).keys():
931 results = fold(Result, results, by=['file', 'line'])
932 table = {r.line: r for r in results if r.file == path}
1142 help="Specify CSV file to store results.")
1145 help="Don't parse anything, use this CSV file.")
1148 help="Specify CSV file to diff against.")
1197 help="Only consider definitions in this file. Defaults to anything "