/Zephyr-Core-3.5.0/scripts/footprint/ |
D | fpdiff.py | 60 if not n.children or not n.parent: 67 if not node.children: 73 if not node.children and node.size != 0:
|
D | size_report | 534 def __init__(self, name, identifier, size=0, parent=None, children=None): argument 540 if children: 541 self.children = children 553 for child in node.children: 647 children = [node_no_paths, node_zephyr_base] 650 children.append(node_output_dir) 653 children.append(node_others) 658 children.append(node_workspace) 660 root.children = children 692 if not row.node.children:
|
/Zephyr-Core-3.5.0/modules/thrift/src/thrift/server/ |
D | TFDServer.cpp | 191 children.push_back(shared_ptr<TTransport>(new xport(fd))); in acceptImpl() 193 return children.back(); in acceptImpl() 214 for (auto c : children) { in interruptChildren() 219 children.clear(); in interruptChildren()
|
D | TFDServer.h | 46 std::vector<std::shared_ptr<TTransport>> children; variable
|
/Zephyr-Core-3.5.0/subsys/emul/ |
D | emul.c | 37 const struct emul_link_for_bus *const end = cfg->children + cfg->num_children; in emul_init_for_bus() 40 for (elp = cfg->children; elp < end; elp++) { in emul_init_for_bus()
|
/Zephyr-Core-3.5.0/lib/os/ |
D | rb.c | 25 return n->children[1]; in get_child() 28 uintptr_t l = (uintptr_t) n->children[0]; in get_child() 38 n->children[1] = val; in set_child() 40 uintptr_t old = (uintptr_t) n->children[0]; in set_child() 43 n->children[0] = (void *) (new | (old & 1UL)); in set_child() 50 return ((uintptr_t)n->children[0]) & 1UL; in get_color() 67 uintptr_t *p = (void *) &n->children[0]; in set_color()
|
/Zephyr-Core-3.5.0/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
D | utils.py | 44 for child in psutil.Process(proc.pid).children(recursive=True):
|
/Zephyr-Core-3.5.0/scripts/dts/ |
D | gen_defines.py | 529 node.children.values())) 533 for child in node.children.values())) 537 for child in node.children.values())) 541 for child in node.children.values())) 545 for child in node.children.values() if child.status == "okay")) 549 for child in node.children.values() if child.status == "okay")) 553 for child in node.children.values() if child.status == "okay")) 557 for child in node.children.values() if child.status == "okay")) 968 for child in node.children.values():
|
/Zephyr-Core-3.5.0/scripts/west_commands/zspdx/ |
D | cmakefileapi.py | 53 self.children = [] 74 self.children = []
|
D | cmakefileapijson.py | 362 cfgDir.children = [] 364 cfgDir.children.append(cfg.directories[childIndex]) 378 cfgPrj.children = [] 380 cfgPrj.children.append(cfg.projects[childIndex])
|
/Zephyr-Core-3.5.0/include/zephyr/drivers/ |
D | emul.h | 51 const struct emul_link_for_bus *children; member
|
/Zephyr-Core-3.5.0/drivers/spi/ |
D | spi_emul.c | 125 .children = emuls_##n, \
|
/Zephyr-Core-3.5.0/doc/_extensions/zephyr/ |
D | domain.py | 95 siblings_to_move = parent.children[index + 1 :] 102 new_section.extend(node.children)
|
/Zephyr-Core-3.5.0/include/zephyr/sys/ |
D | rb.h | 60 struct rbnode *children[2]; member
|
/Zephyr-Core-3.5.0/drivers/i2c/ |
D | i2c_emul.c | 150 .children = emuls_##n, \
|
/Zephyr-Core-3.5.0/scripts/west_commands/ |
D | sign.py | 381 if 'partitions' not in flash.children: 385 partitions = flash.children['partitions'] 387 label: node for node in partitions.children.values()
|
/Zephyr-Core-3.5.0/doc/services/pm/ |
D | power_domain.rst | 101 /* notify children domain is now powered */ 105 /* notify children domain is going down */
|
D | device_runtime.rst | 85 efficient to keep parent devices active when their children are used, since 86 the children may perform multiple transactions in a short period of time.
|
/Zephyr-Core-3.5.0/drivers/espi/ |
D | espi_emul.c | 238 .children = emuls_##n, \
|
/Zephyr-Core-3.5.0/doc/build/kconfig/ |
D | menuconfig.rst | 119 works if the symbol has no children, as double-clicking a symbol with 120 children open/closes its menu instead).
|
D | tips.rst | 523 that depend on ``FOO``, then those symbols become children of ``FOO``. If 524 ``FOO`` is defined with ``config FOO``, then the children are shown indented 526 children in a separate menu rooted at ``FOO``. 586 Note that making a symbol without children a ``menuconfig`` is meaningless. It 587 should be avoided, because it looks identical to a symbol with all children 592 [*] I have no children ---- 593 [*] All my children are invisible ----
|
/Zephyr-Core-3.5.0/modules/openthread/ |
D | Kconfig.thread | 63 int "The maximum number of children"
|
/Zephyr-Core-3.5.0/scripts/build/ |
D | check_init_priorities.py | 294 for child in dev.children.values():
|
D | check_init_priorities_test.py | 407 dev.children.values.return_value = [c0, c1, c2]
|
/Zephyr-Core-3.5.0/scripts/dts/python-devicetree/tests/ |
D | test_edtlib.py | 239 assert str(edt.get_node("/parent").children) == \ 242 assert edt.get_node("/parent/child-1").children == {}
|