/Zephyr-Core-3.6.0/doc/_extensions/zephyr/ |
D | manifest_projects_table.py | 32 from docutils import nodes 70 def run(self) -> List[nodes.Element]: 86 table = nodes.table() 88 tgroup = nodes.tgroup(cols=2) 89 tgroup += nodes.colspec(colwidth=1) 90 tgroup += nodes.colspec(colwidth=1) 93 thead = nodes.thead() 96 row = nodes.row() 99 entry = nodes.entry() 100 entry += nodes.paragraph(text="Project") [all …]
|
D | domain.py | 52 from docutils import nodes 53 from docutils.nodes import Node 61 from sphinx.util.nodes import NodeMatcher, make_refnode 71 class CodeSampleNode(nodes.Element): 75 class RelatedCodeSamplesNode(nodes.Element): 101 new_section = nodes.section(ids=[node["id"]]) 102 new_section += nodes.title(text=node["name"]) 115 meta_description = nodes.meta() 122 json_ld = nodes.raw( 155 admonition = nodes.admonition() [all …]
|
D | link-roles.py | 11 from docutils import nodes 101 node = nodes.reference(rawtext, link_text, refuri=url, **options)
|
D | application.py | 7 from docutils import nodes 222 paragraph = nodes.paragraph() 223 paragraph += nodes.Text(tool_comment.format('west')) 232 paragraph = nodes.paragraph() 233 paragraph += nodes.Text(tool_comment.format( 249 literal = nodes.literal_block(content, content)
|
/Zephyr-Core-3.6.0/tests/unit/rbtree/ |
D | main.c | 18 static struct rbnode nodes[MAX_NODES]; variable 48 return (int)(n - &nodes[0]); in node_index() 167 _CHECK(get_node_mask(i) == rb_contains(&test_rbtree, &nodes[i])); in _check_tree() 205 (void)memset(nodes, 0, sizeof(nodes)); in test_tree() 213 rb_insert(&test_rbtree, &nodes[node]); in test_tree() 216 rb_remove(&test_rbtree, &nodes[node]); in test_tree() 265 (void)memset(nodes, 0, sizeof(nodes)); in ZTEST() 270 rb_insert(&test_rbtree, &nodes[i]); in ZTEST() 276 zassert_true(rb_get_min(&test_rbtree) == &nodes[0], "the tree is invalid"); in ZTEST() 277 zassert_true(rb_get_max(&test_rbtree) == &nodes[7], "the tree is invalid"); in ZTEST()
|
/Zephyr-Core-3.6.0/scripts/pylint/checkers/ |
D | argparse-checker.py | 9 from astroid import nodes 29 def visit_call(self, node: nodes.Call) -> None: 30 if isinstance(node.func, astroid.nodes.node_classes.Attribute) and \ 37 if not isinstance(keyword.value, astroid.nodes.node_classes.Const):
|
/Zephyr-Core-3.6.0/doc/_extensions/zephyr/kconfig/ |
D | __init__.py | 39 from docutils import nodes 49 from sphinx.util.nodes import make_refnode 120 class KconfigSearchNode(nodes.Element): 126 def kconfig_search_visit_html(self, node: nodes.Node) -> None: 128 raise nodes.SkipNode 131 def kconfig_search_visit_latex(self, node: nodes.Node) -> None: 133 raise nodes.SkipNode 162 class _FindKconfigSearchDirectiveVisitor(nodes.NodeVisitor): 167 def unknown_visit(self, node: nodes.Node) -> None: 203 contnode: nodes.Element, [all …]
|
/Zephyr-Core-3.6.0/doc/connectivity/bluetooth/api/mesh/ |
D | blob_cli.rst | 7 sending BLOBs of any size to any number of Target nodes, in both Push BLOB Transfer Mode and Pull 66 Target nodes having the BLOB Transfer Server model subscribe to this group address. 69 BLOB Transfer Client sends each message to all Target nodes at the same time. However, sending 73 losing Target nodes. Using group addresses for BLOB transfers will generally only pay off if the 74 list of Target nodes is extensive, and the effectiveness of each addressing strategy will vary 88 * All Target nodes have responded. 89 * A node has been removed from the list of Target nodes. 98 procedure populates the transfer capabilities from all Target nodes with the most liberal set of 99 parameters that allows all Target nodes to participate in the transfer. Any Target nodes that fail 102 Target nodes are prioritized according to their order in the list of Target nodes. If a Target node [all …]
|
D | dfu.rst | 31 The Bluetooth Mesh DFU subsystem defines three different roles the mesh nodes have to assume in the 37 Target nodes, and they will all be updated concurrently. 42 nodes as the Distributor. The Distributor does not select the parameters of the transfer, but 43 relies on an Initiator to give it a list of Target nodes and transfer parameters. The Distributor 47 image to the Target nodes. 53 Target nodes and their firmware, and will control (and initiate) all firmware updates. The 58 :alt: Graphic overview of the DFU roles mesh nodes can have during the process of image 92 Before starting the Distribution stage, the Initiator may optionally check if Target nodes can 97 Before the firmware image can be distributed, the Initiator transfers the list of Target nodes 101 nodes, the Distributor may ask them to apply the firmware image immediately and report back with [all …]
|
/Zephyr-Core-3.6.0/doc/build/dts/api/ |
D | api.rst | 36 identifiers for other devicetree nodes using :c:func:`DT_PATH`, 68 devicetree specification, these macros can be used even for nodes without 85 devicetree specification, these macros can be used even for nodes without 99 some of these macros can be used even for nodes without matching bindings. This 121 exists, how many nodes of a certain type exist, whether a node has certain 134 nodes. Dependency tracking relies on a binary "depends on" relation between 135 devicetree nodes, which is defined as the `transitive closure 140 - a node directly depends on any nodes its properties refer to by phandle 143 - a parent node inherits all dependencies from its child nodes 145 A *dependency ordering* of a devicetree is a list of its nodes, where each node [all …]
|
/Zephyr-Core-3.6.0/tests/benchmarks/data_structure_perf/rbtree_perf/src/ |
D | rbtree_perf.c | 21 static struct rbnode nodes[TREE_SIZE]; variable 112 rb_insert(tree, &nodes[i]); in init_tree() 206 test = &nodes[TREE_SIZE/2]; in ZTEST()
|
/Zephyr-Core-3.6.0/tests/bluetooth/controller/ctrl_api/src/ |
D | main.c | 203 struct node_tx nodes[SIZE] = { 0 }; in ZTEST() local 212 ull_tx_q_enqueue_data(&conn.tx_q, &nodes[i]); in ZTEST() 218 zassert_equal_ptr(node, &nodes[i], NULL); in ZTEST() 237 ull_tx_q_enqueue_data(&conn.tx_q, &nodes[i]); in ZTEST() 250 zassert_equal_ptr(node, &nodes[i], NULL); in ZTEST() 270 ull_tx_q_enqueue_data(&conn.tx_q, &nodes[i]); in ZTEST() 290 zassert_equal_ptr(node, &nodes[i], NULL); in ZTEST() 309 ull_tx_q_enqueue_data(&conn.tx_q, &nodes[i]); in ZTEST() 329 zassert_equal_ptr(node, &nodes[i], NULL); in ZTEST()
|
/Zephyr-Core-3.6.0/doc/build/dts/ |
D | bindings.rst | 10 A devicetree binding declares requirements on the contents of nodes, and 11 provides semantic information about the contents of valid nodes. Zephyr
|
D | bindings-intro.rst | 10 Devicetree nodes are matched to bindings using their :ref:`compatible 52 The build system uses bindings both to validate devicetree nodes and to convert 75 Other ways nodes are matched to bindings 95 their parent nodes. These are called "child bindings". If a node describes 97 account when matching nodes to bindings. (See :ref:`dt-bindings-on-bus` for 125 subdirectories, when matching nodes to bindings. A file is considered YAML if
|
/Zephyr-Core-3.6.0/subsys/bluetooth/mesh/ |
D | cdb.c | 85 .nodes = { 119 for (i = 0; i < ARRAY_SIZE(bt_mesh_cdb.nodes); i++) { in addr_is_free() 120 struct bt_mesh_cdb_node *node = &bt_mesh_cdb.nodes[i]; in addr_is_free() 161 for (i = 0; i < ARRAY_SIZE(bt_mesh_cdb.nodes) + 2; ++i) { in find_lowest_free_addr() 768 for (i = 0; i < ARRAY_SIZE(bt_mesh_cdb.nodes); ++i) { in bt_mesh_cdb_clear() 769 if (bt_mesh_cdb.nodes[i].addr != BT_MESH_ADDR_UNASSIGNED) { in bt_mesh_cdb_clear() 770 bt_mesh_cdb_node_del(&bt_mesh_cdb.nodes[i], true); in bt_mesh_cdb_clear() 912 for (i = 0; i < ARRAY_SIZE(bt_mesh_cdb.nodes); i++) { in bt_mesh_cdb_node_alloc() 913 struct bt_mesh_cdb_node *node = &bt_mesh_cdb.nodes[i]; in bt_mesh_cdb_node_alloc() 976 for (i = 0; i < ARRAY_SIZE(bt_mesh_cdb.nodes); i++) { in bt_mesh_cdb_node_get() [all …]
|
/Zephyr-Core-3.6.0/samples/drivers/soc_flash_nand/boards/ |
D | intel_socfpga_agilex5_socdk.overlay | 7 * dts nodes required by this application for this
|
/Zephyr-Core-3.6.0/samples/subsys/shell/shell_module/boards/ |
D | intel_socfpga_agilex_socdk.overlay | 8 * dts nodes required by this shell application for this
|
D | intel_socfpga_agilex5_socdk.overlay | 8 * dts nodes required by this shell application for this
|
/Zephyr-Core-3.6.0/boards/arm/faze/ |
D | pre_dt_board.cmake | 4 # Suppress DTC warnings due to all GPIO nodes sharing the same register address.
|
/Zephyr-Core-3.6.0/boards/arm/lpcxpresso11u68/ |
D | pre_dt_board.cmake | 4 # Suppress DTC warnings due to all GPIO nodes sharing the same register address.
|
/Zephyr-Core-3.6.0/doc/kernel/data_structures/ |
D | rbtree.rst | 18 Unlike a list, where position is explicit, the ordering of nodes 25 not allowed, nodes within a tree must have a single fixed order for 28 As with the slist and dlist containers, nodes within an rbtree are 37 with :c:func:`rb_remove`. Access to the "first" and "last" nodes within a 80 nodes on any path to the root must be the same, and that no more than 81 that number of "extra" red nodes may be present). This rule is 91 nodes can be added underneath the rightmost node without 96 Typical implementations effect this by simply swapping the nodes
|
/Zephyr-Core-3.6.0/subsys/bluetooth/controller/ticker/ |
D | ticker.c | 283 struct ticker_node *nodes; /* Pointer to ticker nodes */ member 460 node = instance->nodes; 559 node = &instance->nodes[0]; 635 node = &instance->nodes[0]; 730 node = &instance->nodes[0]; 799 static uint8_t ticker_resolve_collision(struct ticker_node *nodes, argument 834 struct ticker_node *ticker_next = &nodes[id_head]; 1019 current_node = &instance->nodes[instance->ticker_id_head]; 1033 current_node = &instance->nodes[current_ticker_id]; 1037 struct ticker_node *to_ticker = &instance->nodes[to_ticker_id]; [all …]
|
/Zephyr-Core-3.6.0/scripts/dts/ |
D | gen_dts_cmake.py | 94 for node in edt.nodes: 100 for node in edt.nodes:
|
D | gen_defines.py | 91 for compat, nodes in edt.compat2nodes.items(): 93 nodes, key=lambda node: 0 if node.status == "okay" else 1) 103 for node in sorted(edt.nodes, key=lambda node: node.dep_ordinal): 108 for node in sorted(edt.nodes, key=lambda node: node.dep_ordinal): 116 for node in sorted(edt.nodes, key=lambda node: node.dep_ordinal): 921 " ".join(f"fn(DT_{node.z_path_id})" for node in edt.nodes)) 923 " ".join(f"fn(DT_{node.z_path_id})" for node in edt.nodes 926 " ".join(f"fn(DT_{node.z_path_id}, __VA_ARGS__)" for node in edt.nodes)) 928 " ".join(f"fn(DT_{node.z_path_id}, __VA_ARGS__)" for node in edt.nodes 965 for compat, nodes in edt.compat2nodes.items(): [all …]
|
/Zephyr-Core-3.6.0/tests/subsys/storage/flash_map/ |
D | app.overlay | 7 * Test compilation with disabled flash nodes.
|