Searched refs:child (Results 1 - 14 of 14) sorted by relevance

/scripts/kconfig/
H A Dconf.c234 struct menu *child; local
269 for (child = menu->list; child; child = child->next) {
270 if (!menu_is_visible(child))
272 if (!child->sym) {
273 printf("%*c %s\n", indent, '*', _(menu_get_prompt(child)));
277 if (child->sym == def_sym) {
282 printf(" %d. %s", cnt, _(menu_get_prompt(child)));
354 struct menu *child; local
419 struct menu *child; local
[all...]
H A Dmconf.c343 struct menu *child; local
407 for (child = menu->list; child; child = child->next) {
408 if (menu_is_visible(child) && child->sym == def_sym)
409 def_menu = child;
512 for (child = menu->list; child; chil
647 struct menu *child; local
[all...]
H A Dnconf.c736 struct menu *child; local
797 for (child = menu->list; child; child = child->next) {
798 if (menu_is_visible(child) && child->sym == def_sym)
799 def_menu = child;
913 for (child = menu->list; child; chil
1234 struct menu *child = 0; local
[all...]
H A Dgconf.c1115 struct menu *child; local
1121 for (child = menu->list; child; child = child->next) {
1122 if (menu_is_visible(child)
1123 && child->sym == def_sym)
1124 def_menu = child;
1242 GtkTreeIter *child = &iter; local
1246 valid = gtk_tree_model_iter_children(model2, child, paren
1362 struct menu *child; local
1452 struct menu *child; local
[all...]
H A Dkxgettext.c173 struct menu *child; local
184 for (child = menu->list; child != NULL; child = child->next)
185 if (child->prompt != NULL)
186 menu_build_message_list(child);
H A Dqconf.cc138 * depending whether it's at the view root or a child.
597 struct menu* child; local
612 for (child = menu->list; child; child = child->next) {
614 type = child->prompt ? child->prompt->type : P_UNKNOWN;
618 if (!(child->flags & MENU_ROOT))
622 if (child
1725 struct menu *child; local
[all...]
H A Dmenu.c435 struct menu *child; local
460 for (child = menu->list; child; child = child->next) {
461 if (menu_is_visible(child)) {
/scripts/tracing/
H A Ddraw_functrace.py47 @return: A reference to the newly created child node.
49 child = CallTree(func, calltime, self)
50 self._children.append(child)
51 return child
56 on a parent, then create it as new child of root
63 child = CallTree.ROOT.calls(func, None)
64 return child
/scripts/dtc/
H A Dlivetree.c80 struct node *child; local
87 for_each_child(new, child) {
88 child->parent = new;
140 /* Move the override child nodes into the primary node. If
143 /* Pop the child node off the list */
158 /* if no collision occurred, add child to the old node. */
191 void add_child(struct node *parent, struct node *child) argument
195 child->next_sibling = NULL;
196 child->parent = parent;
202 *p = child;
342 struct node *child; local
354 struct node *child; local
376 struct node *child, *node; local
396 struct node *child, *node; local
[all...]
H A Ddtc.c37 struct node *child; local
48 for_each_child(tree, child)
49 fill_fullpaths(child, tree->fullpath);
H A Dchecks.c116 struct node *child; local
129 for_each_child(node, child)
130 check_nodes_props(c, dt, child);
220 struct node *child, *child2; local
222 for_each_child(node, child)
223 for (child2 = child->next_sibling;
226 if (streq(child->name, child2->name))
228 child->fullpath);
577 "(parent #address-cells == %d, child #address-cells == %d, "
H A Dtreesource.c237 struct node *child; local
255 for_each_child(tree, child) {
257 write_tree_source_node(f, child, level+1);
H A Dflattree.c263 struct node *child; local
306 for_each_child(tree, child) {
307 flatten_tree(child, emit, etarget, strbuf, vi);
732 die("Path \"%s\" is not valid as a child of \"%s\"\n",
761 struct node *child; local
774 child = unflatten_tree(dtbuf,strbuf, flatname, flags);
775 add_child(node, child);
H A Ddtc.h180 void add_child(struct node *parent, struct node *child);

Completed in 387 milliseconds