Searched refs:runpaths (Results 1 – 3 of 3) sorted by relevance
/test/vts-testcase/vndk/dependency/ |
D | vts_vndk_dependency_test.py | 87 def __init__(self, target_path, bitness, deps, runpaths, argument 95 self.runpaths = [] 97 for runpath in runpaths: 102 self.runpaths.append(path) 247 deps, runpaths = elf.ListDependencies() 255 if runpaths: 257 target_path, ":".join(runpaths)) 266 runpaths, custom_link_paths)) 304 for link_path in lib.custom_link_paths + lib.runpaths + link_paths: 332 obj.custom_link_paths + obj.runpaths + link_paths):
|
/test/vts/vndk_utils/library/ |
D | elf_parser_test.py | 150 deps, runpaths = self.elf_file.ListDependencies() 152 self.assertEqual(runpaths, _RUNPATHS)
|
D | elf_parser.py | 626 runpaths = [] 631 runpaths.extend(dynamic[consts.DT_RUNPATH]) 632 return deps, runpaths
|