Lines Matching full:objs
142 objs = []
166 objs.append(self.ElfObject(target_path, elf.bitness, deps))
167 return objs
185 def _FindLibsInSpHalNamespace(self, bitness, objs):
190 objs: List of ElfObject, the libraries/executables in odm and
199 vendor_libs = [obj for obj in objs if
212 def _FilterDisallowedDependencies(self, objs, is_allowed_dependency):
216 objs: A collection of ElfObject, the libraries/executables.
218 argument and returns whether objs can depend
226 for obj in objs:
307 def _TestElfDependency(self, bitness, objs):
312 objs: List of ElfObject. The libraries/executables in odm and
322 vendor_libs = set(obj for obj in objs if
328 sp_hal_namespace = self._FindLibsInSpHalNamespace(bitness, objs)
339 vndk_sp_ext_libs = set(obj for obj in objs if
348 vendor_objs = {obj for obj in objs if
370 objs = self._LoadElfObjects(
374 dep_errors = self._TestElfDependency(32, objs)
376 dep_errors.extend(self._TestElfDependency(64, objs))