Home
last modified time | relevance | path

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

/Zephyr-latest/scripts/west_commands/
Dpatch.py537 def get_module_path(self, module_name_or_path): argument
538 if module_name_or_path is None:
543 if Path(module_name_or_path).is_absolute():
544 if Path(module_name_or_path).is_dir():
545 return Path(module_name_or_path).resolve().relative_to(topdir)
548 if (topdir / module_name_or_path).is_dir():
549 return Path(module_name_or_path)
553 if m.meta['name'] == module_name_or_path: