Lines Matching refs:child
282 struct menu *child;
319 for (child = menu->list; child; child = child->next) {
320 if (!menu_is_visible(child))
322 if (!child->sym) {
323 printf("%*c %s\n", indent, '*', menu_get_prompt(child));
327 if (child->sym == def_sym) {
332 printf(" %d. %s", cnt, menu_get_prompt(child));
333 if (child->sym->name)
334 printf(" (%s)", child->sym->name);
335 if (!sym_has_value(child->sym))
385 for (child = menu->list; child; child = child->next) {
386 if (!child->sym || !menu_is_visible(child))
391 if (!child)
394 printf("\n%s\n", child->sym->help ?
395 child->sym->help : nohelp_text);
398 sym_set_choice_value(sym, child->sym);
399 if (child->list) {
401 conf(child->list);
412 struct menu *child;
464 for (child = menu->list; child; child = child->next)
465 conf(child);
473 struct menu *child;
489 for (child = menu->list; child; child = child->next)
490 check_conf(child);