/busybox-1.35.0/scripts/kconfig/ |
D | conf.c | 319 struct menu *child; in conf_choice() local 354 for (child = menu->list; child; child = child->next) { in conf_choice() 355 if (!menu_is_visible(child)) in conf_choice() 357 if (!child->sym) { in conf_choice() 358 printf("%*c %s\n", indent, '*', menu_get_prompt(child)); in conf_choice() 362 if (child->sym == def_sym) { in conf_choice() 367 printf(" %d. %s", cnt, menu_get_prompt(child)); in conf_choice() 368 if (child->sym->name) in conf_choice() 369 printf(" (%s)", child->sym->name); in conf_choice() 370 if (!sym_has_value(child->sym)) in conf_choice() [all …]
|
D | mconf.c | 579 struct menu *child; in build_conf() local 626 for (child = menu->list; child; child = child->next) { in build_conf() 627 if (menu_is_visible(child) && child->sym == def_sym) in build_conf() 628 def_menu = child; in build_conf() 726 for (child = menu->list; child; child = child->next) in build_conf() 727 build_conf(child); in build_conf() 903 struct menu *child; in conf_choice() local 919 for (child = menu->list; child; child = child->next) { in conf_choice() 920 if (!menu_is_visible(child)) in conf_choice() 922 cprint("%p", child); in conf_choice() [all …]
|
D | kxgettext.c | 167 struct menu *child; in menu_build_message_list() local 178 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list() 179 if (child->prompt != NULL) in menu_build_message_list() 180 menu_build_message_list(child); in menu_build_message_list()
|
D | gconf.c | 1231 struct menu *child; in fill_row() local 1237 for (child = menu->list; child; child = child->next) { in fill_row() 1238 if (menu_is_visible(child) in fill_row() 1239 && child->sym == def_sym) in fill_row() 1240 def_menu = child; in fill_row() 1357 GtkTreeIter *child = &iter; in gtktree_iter_find_node() local 1361 valid = gtk_tree_model_iter_children(model2, child, parent); in gtktree_iter_find_node() 1365 gtk_tree_model_get(model2, child, 6, &menu, -1); in gtktree_iter_find_node() 1368 memcpy(&found, child, sizeof(GtkTreeIter)); in gtktree_iter_find_node() 1372 ret = gtktree_iter_find_node(child, tofind); in gtktree_iter_find_node() [all …]
|
D | qconf.cc | 104 struct menu* child; in updateMenuList() local 119 for (child = menu->list; child; child = child->next) { in updateMenuList() 121 type = child->prompt ? child->prompt->type : P_UNKNOWN; in updateMenuList() 125 if (!(child->flags & MENU_ROOT)) in updateMenuList() 129 if (child->flags & MENU_ROOT) in updateMenuList() 136 visible = menu_is_visible(child); in updateMenuList() 138 if (!item || item->menu != child) in updateMenuList() 139 item = new ConfigItem(parent, last, child, visible); in updateMenuList() 144 updateMenuList(item, child); in updateMenuList() 151 if (item && item->menu == child) { in updateMenuList() [all …]
|
D | menu.c | 348 struct menu *child; in menu_is_visible() local 366 for (child = menu->list; child; child = child->next) in menu_is_visible() 367 if (menu_is_visible(child)) in menu_is_visible()
|
/busybox-1.35.0/shell/ash_test/ash-signals/ |
D | signal3.right | 1 child sleeps 2 child got HUP 3 child exits
|
D | signal2.tests | 14 child=$! 16 kill -HUP $child
|
D | signal3.tests | 13 child=$! 15 kill -HUP $child
|
D | signal2.right | 1 child sleeps 2 child exits as expected
|
D | sigint1.tests | 5 # We create a child which exits with 0 even on SIGINT 8 # in the testcase we don't send SIGINT *to the child*...) 20 # for a child. It will wait for the child to exit. 21 # If child exits NOT by dying on SIGINT, then bash will not exit. 35 # it will see that child exited with 0, and bash will NOT EXIT.
|
D | signal9.tests | 17 child=$! 19 kill -TERM $child
|
/busybox-1.35.0/shell/hush_test/hush-signals/ |
D | signal3.right | 1 child sleeps 2 child got HUP 3 child exits
|
D | signal2.tests | 14 child=$! 16 kill -HUP $child
|
D | signal3.tests | 13 child=$! 15 kill -HUP $child
|
D | signal2.right | 1 child sleeps 2 child exits as expected
|
D | sigint1.tests | 5 # We create a child which exits with 0 even on SIGINT 8 # in the testcase we don't send SIGINT *to the child*...) 20 # for a child. It will wait for the child to exit. 21 # If child exits NOT by dying on SIGINT, then bash will not exit. 35 # it will see that child exited with 0, and bash will NOT EXIT.
|
D | signal9.tests | 17 child=$! 19 kill -TERM $child
|
/busybox-1.35.0/procps/ |
D | pstree.c | 34 struct child; 48 struct child *children; 56 typedef struct child { struct 57 PROC *child; member 58 struct child *next; argument 155 static void add_child(PROC *parent, PROC *child) in add_child() argument 162 new->child = child; in add_child() 164 cmp = strcmp((*walk)->child->comm, child->comm); in add_child() 167 if (cmp == 0 && (*walk)->child->uid > child->uid) in add_child() 213 if (!tree_equal(walk_a->child, walk_b->child)) in tree_equal() [all …]
|
/busybox-1.35.0/util-linux/ |
D | unshare.c | 204 pid_t child = child; /* for compiler */ in unshare_main() local 289 child = xfork(); in unshare_main() 290 if (child == 0) { in unshare_main() 316 int exit_status = wait_for_exitstatus(child); in unshare_main()
|
/busybox-1.35.0/runit/ |
D | runsv.c | 646 pid_t child; in runsv_main() local 649 child = wait_any_nohang(&wstat); in runsv_main() 650 if (!child) in runsv_main() 652 if ((child == -1) && (errno != EINTR)) in runsv_main() 654 if (child == svd[0].pid) { in runsv_main() 676 if (child == svd[1].pid) { in runsv_main()
|
/busybox-1.35.0/shell/ |
D | README.job | 74 fork child #1 75 put child in it's own process group 79 fork child #2 80 put child in the same process group as first one 85 set fd# 255 foreground process group to first child's one 90 wait4 for children to die or stop - first child exits 91 wait4 for children to die or stop - second child exits 98 wait for it - no child (already waited for) 240 wait4(-1, 0x77fc9c54, WNOHANG|WUNTRACED, NULL) = -1 ECHILD (No child processes)
|
/busybox-1.35.0/examples/shutdown-1.0/ |
D | README | 21 # Then, (only if -r) it spawns a hardshutdown child, to reboot
|
/busybox-1.35.0/networking/ |
D | ifupdown.c | 1159 pid_t child; in doit() local 1163 child = vfork(); in doit() 1164 if (child < 0) /* failure */ in doit() 1166 if (child == 0) { /* child */ in doit() 1170 safe_waitpid(child, &status, 0); in doit()
|
/busybox-1.35.0/docs/ |
D | Kconfig-language.txt | 21 to determine the visible of an entry. Any child entry is only 165 - the child entry must become invisible, if the parent is set to 'n' 166 - the child entry must only be visible, if the parent is visible
|