Home
last modified time | relevance | path

Searched refs:domains_file (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/helpers/
Ddomains_helper.py21 def get_default_domain_name(domains_file: Path | str) -> int:
25 domains = Domains.from_file(domains_file)
26 logger.debug("Loaded sysbuild domain data from %s" % domains_file)
/Zephyr-latest/scripts/west_commands/
Dflash.py32 domains_file = Path(build_dir) / 'domains.yaml'
33 do_run_common(self, my_args, runner_args, domain_file=domains_file)
Dbuild_helpers.py151 domains_file = Path(path) / 'domains.yaml'
153 if not domains_file.is_file():
164 return Domains.from_file(domains_file)
/Zephyr-latest/scripts/pylib/build_helpers/
Ddomains.py84 def from_file(domains_file): argument
88 with open(domains_file, 'r') as f: