Lines Matching +full:child +full:- +full:node
38 .Fn OF_child "phandle_t node"
40 .Fn OF_parent "phandle_t node"
42 .Fn OF_peer "phandle_t node"
45 returns the phandle value of the first child of the
46 .Fa node .
47 Zero is returned if there are no child nodes.
51 .Fa node .
53 .Fa node
54 is the root node.
58 .Fa node .
59 Zero is returned if there is no sibling node.
61 .Bd -literal
62 phandle_t node, child;
64 for (child = OF_child(node); child != 0; child = OF_peer(child) {
71 .An -nosplit