Home | History | Annotate | Download | only in dependency

Lines Matching refs:target_path

73             target_path: String. The path to the ELF file on target.
80 def __init__(self, target_path, bitness, deps):
81 self.target_path = target_path
82 self.name = path_utils.TargetBaseName(target_path)
83 self.target_dir = path_utils.TargetDirName(target_path)
136 (target_path, exception). It is called when
146 target_path = path_utils.JoinTargetPath(
151 logging.debug("%s is not an ELF file", target_path)
154 logging.debug("%s does not match the ABI", target_path)
160 elf_error_handler(target_path, e)
165 logging.info("%s depends on: %s", target_path, ", ".join(deps))
166 objs.append(self.ElfObject(target_path, elf.bitness, deps))
230 dep_errors.append((obj.target_path, disallowed_libs))
333 if any(x.match(obj.target_path) for x in self._sp_hal):