menu_stuff        335 builtin/clean.c static void print_highlight_menu_stuff(struct menu_stuff *stuff, int **chosen)
menu_stuff        390 builtin/clean.c static int find_unique(const char *choice, struct menu_stuff *menu_stuff)
menu_stuff        397 builtin/clean.c 	switch (menu_stuff->type) {
menu_stuff        402 builtin/clean.c 		menu_item = (struct menu_item *)menu_stuff->stuff;
menu_stuff        403 builtin/clean.c 		for (i = 0; i < menu_stuff->nr; i++, menu_item++) {
menu_stuff        424 builtin/clean.c 		string_list_item = ((struct string_list *)menu_stuff->stuff)->items;
menu_stuff        425 builtin/clean.c 		for (i = 0; i < menu_stuff->nr; i++, string_list_item++) {
menu_stuff        461 builtin/clean.c static int parse_choice(struct menu_stuff *menu_stuff,
menu_stuff        523 builtin/clean.c 				top = menu_stuff->nr;
menu_stuff        528 builtin/clean.c 			top = menu_stuff->nr;
menu_stuff        530 builtin/clean.c 			bottom = find_unique((*ptr)->buf, menu_stuff);
menu_stuff        534 builtin/clean.c 		if (top <= 0 || bottom <= 0 || top > menu_stuff->nr || bottom > top ||
menu_stuff        548 builtin/clean.c 	for (i = 0; i < menu_stuff->nr; i++)
menu_stuff        564 builtin/clean.c static int *list_and_choose(struct menu_opts *opts, struct menu_stuff *stuff)
menu_stuff        731 builtin/clean.c 	struct menu_stuff menu_stuff;
menu_stuff        740 builtin/clean.c 	menu_stuff.type = MENU_STUFF_TYPE_STRING_LIST;
menu_stuff        741 builtin/clean.c 	menu_stuff.stuff = &del_list;
menu_stuff        742 builtin/clean.c 	menu_stuff.nr = del_list.nr;
menu_stuff        744 builtin/clean.c 	chosen = list_and_choose(&menu_opts, &menu_stuff);
menu_stuff        827 builtin/clean.c 		struct menu_stuff menu_stuff;
menu_stuff        842 builtin/clean.c 		menu_stuff.type = MENU_STUFF_TYPE_MENU_ITEM;
menu_stuff        843 builtin/clean.c 		menu_stuff.stuff = menus;
menu_stuff        844 builtin/clean.c 		menu_stuff.nr = sizeof(menus) / sizeof(struct menu_item);
menu_stuff        854 builtin/clean.c 		chosen = list_and_choose(&menu_opts, &menu_stuff);