Lines Matching full:path
128 def openio(path, mode='r', buffering=-1):
130 if path == '-':
136 return open(path, mode, buffering)
153 '\s+(?P<path>[^\s]+)$')
160 for path in obj_paths:
162 file = re.sub('(\.o)?$', '.c', path, 1)
166 # note nm-path may contain extra args
167 cmd = nm_path + ['--size-sort', path]
197 # note objdump-path may contain extra args
198 cmd = objdump_path + ['--dwarf=rawline', path]
215 dirs[int(m.group('no'))] = m.group('path')
220 files[int(m.group('no'))] = os.path.join(
222 m.group('path'))
224 files[int(m.group('no'))] = m.group('path')
238 # note objdump-path may contain extra args
239 cmd = objdump_path + ['--dwarf=info', path]
290 os.path.abspath(file) == os.path.abspath(s)
295 if not everything and not os.path.commonpath([
297 os.path.abspath(file)]) == os.getcwd():
300 # simplify path
301 if os.path.commonpath([
303 os.path.abspath(file)]) == os.getcwd():
304 file = os.path.relpath(file)
306 file = os.path.abspath(file)
691 '--nm-path',
694 help="Path to the nm executable, may include flags. "
697 '--objdump-path',
700 help="Path to the objdump executable, may include flags. "