Lines Matching refs:child
235 struct menu *child;
270 for (child = menu->list; child; child = child->next) {
271 if (!menu_is_visible(child))
273 if (!child->sym) {
274 printf("%*c %s\n", indent, '*', menu_get_prompt(child));
278 if (child->sym == def_sym) {
283 printf(" %d. %s", cnt, menu_get_prompt(child));
284 if (child->sym->name)
285 printf(" (%s)", child->sym->name);
286 if (!sym_has_value(child->sym))
325 for (child = menu->list; child; child = child->next) {
326 if (!child->sym || !menu_is_visible(child))
331 if (!child)
334 print_help(child);
337 sym_set_choice_value(sym, child->sym);
338 for (child = child->list; child; child = child->next) {
340 conf(child);
351 struct menu *child;
408 for (child = menu->list; child; child = child->next)
409 conf(child);
417 struct menu *child;
454 for (child = menu->list; child; child = child->next)
455 check_conf(child);