Lines Matching full:node
24 """Read the image descriptions from the /binman node
30 binman_node: Node object of the /binman node
36 for node in binman_node.subnodes:
37 images[node.name] = Image(node.name, node)
43 """Find the 'binman' node in the device tree
48 Node object of /binman node, or None if not found
50 for node in dtb.GetRoot().subnodes:
51 if node.name == 'binman':
52 return node
123 node = _FindBinmanNode(dtb)
124 if not node:
126 "node" % dtb_fname)
128 images = _ReadImageDesc(node)