Home
last modified time | relevance | path

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

/Zephyr-4.3.0/scripts/utils/
Dmigrate_bindings_style.py49 for binding_path in binding_paths:
50 with open(binding_path, encoding="utf-8") as f:
55 _replace_underscores(binding_path, prop_name)
58 def _replace_underscores(binding_path, prop_name): argument
60 with open(binding_path, "r+", encoding="utf-8") as f:
/Zephyr-4.3.0/scripts/dts/
Dgen_driver_kconfig_dts.py64 for binding_path in binding_paths(args.bindings_dirs):
65 with open(binding_path, encoding="utf-8") as f:
Dgen_defines.py190 if node.binding_path:
/Zephyr-4.3.0/doc/_scripts/
Dgen_boards_catalog.py302 if node.binding_path is None:
305 binding_path = Path(node.binding_path)
307 if binding_path.is_relative_to(ZEPHYR_BINDINGS):
308 binding_type = binding_path.relative_to(ZEPHYR_BINDINGS).parts[0]
340 "binding_path": Path(node.binding_path),
/Zephyr-4.3.0/scripts/dts/python-devicetree/src/devicetree/
Dedtlib.py323 def _merge_includes(self, raw: dict, binding_path: Optional[str]) -> dict:
345 _merge_props(merged, self._load_raw(include), None, binding_path,
352 binding_path, False)
365 child_filter, binding_path)
370 child_filter, binding_path)
371 _merge_props(merged, contents, None, binding_path, False)
386 _merge_props(raw, merged, None, binding_path, check_required=True)
1233 def binding_path(self) -> Optional[str]: member in Node
1351 if self.binding_path:
1352 binding = "binding " + self.binding_path
[all …]
/Zephyr-4.3.0/scripts/dts/python-devicetree/tests/
Dtest_edtlib.py548 assert str(edt.get_node("/buses/foo-bus/node1").binding_path) == \
550 assert str(edt.get_node("/buses/foo-bus/node2").binding_path) == \
552 assert str(edt.get_node("/buses/bar-bus/node").binding_path) == \
554 assert str(edt.get_node("/buses/no-bus-node").binding_path) == \
560 assert str(edt.get_node("/buses/foo-bus/node1/nested").binding_path) == \
601 assert str(child1.binding_path) == hpath("test-bindings/child-binding.yaml")
605 assert str(child2.binding_path) == hpath("test-bindings/child-binding.yaml")
609 assert str(grandchild.binding_path) == hpath("test-bindings/child-binding.yaml")
798 assert str(edt.get_node("/in-dir-1").binding_path) == \
801 assert str(edt.get_node("/in-dir-2").binding_path) == \
/Zephyr-4.3.0/scripts/ci/
Dcheck_compliance.py762 for binding_path in binding_paths:
763 cmd.append(binding_path)