Lines Matching refs:path
122 def openio(path, mode='r', buffering=-1):
124 if path == '-':
130 return open(path, mode, buffering)
142 '\s+(?P<path>[^\s]+)$')
150 for path in obj_paths:
154 # note objdump-path may contain extra args
155 cmd = objdump_path + ['--dwarf=rawline', path]
172 dirs[int(m.group('no'))] = m.group('path')
177 files[int(m.group('no'))] = os.path.join(
179 m.group('path'))
181 files[int(m.group('no'))] = m.group('path')
195 # note objdump-path may contain extra args
196 cmd = objdump_path + ['--dwarf=info', path]
234 os.path.abspath(r.file) == os.path.abspath(s)
239 if not everything and not os.path.commonpath([
241 os.path.abspath(r.file)]) == os.getcwd():
248 # simplify path
249 if os.path.commonpath([
251 os.path.abspath(r.file)]) == os.getcwd():
252 file = os.path.relpath(r.file)
254 file = os.path.abspath(r.file)
645 '--objdump-path',