Lines Matching refs:lib_path
423 lib_path = self.FindLibPath(lib)
424 self.lib_to_path[lib] = lib_path
425 return lib_path
462 lib_path = os.path.join(test_dir + test_dir_bitness, "vendor", test_name, test_name)
463 if os.path.isfile(symbol_dir + lib_path):
464 return lib_path
468 lib_path = os.path.join(test_dir + test_dir_bitness, test_name, test_name)
469 if os.path.isfile(symbol_dir + lib_path):
470 return lib_path
474 lib_path = os.path.join(test_dir, test_name)
475 if os.path.isfile(symbol_dir + lib_path):
476 return lib_path
479 lib_path += bitness
480 if os.path.isfile(symbol_dir + lib_path):
481 return lib_path