Lines Matching full:path
43 parser.add_argument('apex', help='Path to the APEX')
57 exec_path = os.path.realpath(sys.argv[0])
59 script_name = os.path.basename(exec_path)[:-3]
63 tool_path = os.environ['PATH']
67 path = os.path.join(p, name)
68 if os.path.exists(path):
69 return path
83 def IsElfFile(path): argument
84 with open(path, 'rb') as f:
90 def ParseElfNeeded(path, tools): argument
92 [tools['llvm-readelf'], '-d', '--elf-output-style', 'LLVM', path],
108 path = os.path.join(parent, file)
110 if os.path.islink(path):
112 if IsElfFile(path):
113 yield path
139 f'{os.path.relpath(file, work_dir)} has unwanted NEEDED:'