Lines Matching full:node
163 def GetUpdateNodes(node): argument
166 The property referenced by this node is added to any device trees which
167 have the given node. Due to removable of unwanted notes, SPL and TPL may
168 not have this node.
171 node: Node object in the main device tree to look up
174 Node objects in each device tree that is in use (U-Boot proper, which
175 is node, SPL and TPL)
177 yield node
179 if dtb != node.GetFdt():
180 other_node = dtb.GetNode(node.path)
184 def AddZeroProp(node, prop): argument
190 for n in GetUpdateNodes(node):
193 def AddSubnode(node, name): argument
194 """Add a new subnode to a node in affected device trees
197 node: Node to add to
198 name: name of node to add
204 for n in GetUpdateNodes(node):
210 def AddString(node, prop, value): argument
217 for n in GetUpdateNodes(node):
220 def SetInt(node, prop, value): argument
228 for n in GetUpdateNodes(node):
231 def CheckAddHashProp(node): argument
232 hash_node = node.FindNode('hash')
236 return "Missing 'algo' property for hash node"
244 def CheckSetHashValue(node, get_data_func): argument
245 hash_node = node.FindNode('hash')