Lines Matching refs:lib_set
1285 lib_set = getattr(self, tag)
1286 lib_set.add(lib)
1425 lib_set = getattr(self, tag)
1426 lib_set.add(lib)
1917 def __init__(self, lib_set, default_search_path): argument
1918 self.lib_set = lib_set
1941 return self.lib_set[path]
2149 for lib_set in self:
2150 res = lib_set.get(path, None)
2234 lib_set = self.lib_pt[partition].get_lib_dict(elf_class)
2235 for path, lib in lib_set.items():
2240 lib_set = self.lib_pt[partition].get_lib_dict(elf_class)
2241 lib = lib_set.get(path)
2248 for lib_set in self.lib_pt:
2249 lib = lib_set.get(path)
2269 for lib_set in self.lib_pt:
2270 for lib in lib_set.values():
2387 def _resolve_lib_set_deps(self, lib_set, resolver, generic_refs): argument
2388 for lib in lib_set:
3402 def _warn_incorrect_partition_lib_set(self, lib_set, partition, error_msg): argument
3403 for lib in lib_set.values():
3463 def get_module_names(lib_set): argument
3464 return sorted({get_module_name(lib.path) for lib in lib_set})
3510 def calc_total_size(lib_set): argument
3517 for lib in lib_set:
3532 lib_set = getattr(vndk_lib, tag)
3533 lib_set = [lib for lib in lib_set if lib.elf.is_32bit]
3534 total = calc_total_size(lib_set)
3539 lib_set = getattr(vndk_lib, tag)
3540 lib_set = [lib for lib in lib_set if not lib.elf.is_32bit]
3541 total = calc_total_size(lib_set)