Searched refs:root (Results 26 – 50 of 227) sorted by relevance
12345678910
/Zephyr-latest/scripts/build/ |
D | subfolder_list.py | 55 for root, dirs, _ in os.walk(directory, topdown=True): 59 targetdirectory = os.path.join(root, subdir) 67 dirlist.append(os.path.join(root, subdir))
|
/Zephyr-latest/scripts/west_commands/ |
D | boards.py | 87 root = module.meta.get('build', {}).get('settings', {}).get(key) 88 if root is not None: 89 module_settings[key].append(Path(module.project) / root)
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | package.py | 20 root = os.path.basename(self.options.outdir) 25 tar.add(d, arcname=os.path.join(root, f))
|
/Zephyr-latest/share/sysbuild/cmake/modules/ |
D | sysbuild_root.cmake | 17 # If a root is defined it will check the list of paths in the root and convert 18 # any relative path to absolute path and update the root list. 19 # If a root is undefined it will still be undefined when this module has loaded.
|
/Zephyr-latest/tests/unit/rbtree/ |
D | main.c | 126 _CHECK(test_rbtree.root); in check_rb() 127 _CHECK(z_rb_is_black(test_rbtree.root)); in check_rb() 129 check_rbnode(test_rbtree.root, 0); in check_rb() 177 if (test_rbtree.root) { in _check_tree()
|
/Zephyr-latest/dts/arm/atmel/ |
D | same70b.dtsi | 2 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
D | samv71b.dtsi | 2 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
D | same70x21b.dtsi | 3 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
D | samv71x19b.dtsi | 3 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
D | samv71x20b.dtsi | 3 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
D | samv71x21b.dtsi | 3 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
D | samx7xb.dtsi | 2 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
D | samx7xx19.dtsi | 3 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
D | samx7xx20.dtsi | 3 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
D | samx7xx21.dtsi | 3 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
/Zephyr-latest/include/zephyr/arch/arm/cortex_r/scripts/ |
D | linker.ld | 2 * Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
/Zephyr-latest/tests/lib/newlib/thread_safety/ |
D | Kconfig | 1 # Copyright (c) 2021 Stephanos Ioannidis <root@stephanos.io>
|
/Zephyr-latest/scripts/tests/twister_blackbox/ |
D | conftest.py | 58 name in logging.root.manager.loggerDict] 87 loggers = [logging.getLogger(name) for name in logging.root.manager.loggerDict]
|
/Zephyr-latest/drivers/pcie/host/ |
D | ptm.c | 31 if ((cap.root == 0) || ((cap.root == 1) && (cap.responder == 0))) { in pcie_ptm_root_setup()
|
D | ptm.h | 19 uint32_t root : 1; member
|
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/ |
D | grutils.py | 21 def __init__(self, root=None): argument 23 if root is not None: 24 self.__roots = {root}
|
/Zephyr-latest/soc/xlnx/zynqmp/ |
D | Kconfig | 2 # Copyright (c) 2019 Stephanos Ioannidis <root@stephanos.io>
|
D | Kconfig.soc | 2 # Copyright (c) 2019 Stephanos Ioannidis <root@stephanos.io>
|
/Zephyr-latest/samples/drivers/ethernet/eth_ivshmem/ |
D | README.rst | 59 Copy the generated zephyr.bin to the Jailhouse Linux root cell: 63 scp -P 2222 path/to/zephyr.bin root@localhost:/root 81 ssh -p 2222 root@localhost 110 root@demo:~# ping -c 3 192.168.19.2
|
/Zephyr-latest/include/zephyr/sys/ |
D | rb.h | 93 struct rbnode *root; member 168 z_rb_walk(tree->root, visit_fn, cookie); in rb_walk()
|
12345678910