Lines Matching refs:bitness
86 def __init__(self, target_path, bitness, deps, runpaths): argument
90 self.bitness = bitness
94 lib_dir_name = "lib64" if bitness == 64 else "lib"
257 objs.append(self.ElfObject(target_path, elf.bitness, deps,
261 def _FindLibsInLinkPaths(self, bitness, link_paths, objs): argument
276 if (obj.bitness == bitness and
333 def _TestElfDependency(self, bitness, objs): argument
344 vndk_sp_ext_dirs = vndk_utils.GetVndkSpExtDirectories(bitness)
346 vendor_link_paths = [vndk_utils.FormatVndkPath(x, bitness) for
348 vendor_namespace = self._FindLibsInLinkPaths(bitness,
351 for vndk_ext_dir in (vndk_utils.GetVndkExtDirectories(bitness) +
352 vndk_utils.GetVndkSpExtDirectories(bitness)):
354 logging.info("%d-bit odm, vendor, and SP-HAL libraries:", bitness)
358 sp_hal_link_paths = [vndk_utils.FormatVndkPath(x, bitness) for
360 sp_hal_namespace = self._FindLibsInLinkPaths(bitness,
371 bitness, ", ".join(x.name for x in sp_hal_libs))
375 obj.bitness == bitness and
382 bitness, ", ".join(x.name for x in vndk_sp_ext_deps))
390 obj.bitness == bitness and