Lines Matching full:node
679 # Drop child node info
684 if drop_child_info and "Child node '/" in line:
1100 if x['node-name'] == node_name:
1106 return {device['node-name']: device['dirty-bitmaps']
1131 Check whether the node under the given path in the block graph
1134 @root is the node name of the node where the @path is rooted.
1140 - root="qcow2-node", path="/backing/file"
1141 - root="quorum-node", path="/children.2/file"
1161 node = next((node for node in graph['nodes'] if node['name'] == root),
1164 # An empty @path is not allowed, so the root node must be present
1165 assert node is not None, 'Root node %s not found' % root
1168 assert node is not None, 'Cannot follow path %s%s' % (root, path)
1172 if (edge['parent'] == node['id'] and
1175 node = next(node for node in graph['nodes']
1176 if node['id'] == node_id)
1179 node = None
1181 if node is None:
1183 'No node found under %s (but expected %s)' % \
1186 assert node['name'] == expected_node, \
1187 'Found node %s under %s (but expected %s)' % \
1188 (node['name'], path, expected_node)
1262 if check_equal_or_none(x.get("node-name"), node_name) and \