Home
last modified time | relevance | path

Searched refs:choice (Results 1 – 25 of 609) sorted by relevance

12345678910>>...25

/openbmc/u-boot/scripts/kconfig/tests/choice/
H A DKconfig6 choice
7 prompt "boolean choice"
11 bool "choice 0"
14 bool "choice 1"
18 choice
19 prompt "optional boolean choice"
24 bool "choice 0"
27 bool "choice 1"
31 choice
32 prompt "tristate choice"
[all …]
H A Doldask1_expected_stdout2 boolean choice
3 1. choice 0 (BOOL_CHOICE0) (NEW)
4 > 2. choice 1 (BOOL_CHOICE1) (NEW)
5 choice[1-2?]:
6 optional boolean choice [Y/n/?] (NEW)
7 optional boolean choice
8 > 1. choice 0 (OPT_BOOL_CHOICE0)
9 2. choice 1 (OPT_BOOL_CHOICE1) (NEW)
10 choice[1-2?]:
11 tristate choice
[all …]
H A Doldask0_expected_stdout2 boolean choice
3 1. choice 0 (BOOL_CHOICE0) (NEW)
4 > 2. choice 1 (BOOL_CHOICE1) (NEW)
5 choice[1-2?]:
6 optional boolean choice [N/y/?] (NEW)
7 tristate choice [M/y/?] (NEW)
8 choice 0 (TRI_CHOICE0) [N/m/?] (NEW)
9 choice 1 (TRI_CHOICE1) [N/m/?] (NEW)
10 optional tristate choice [N/m/y/?] (NEW)
/openbmc/linux/scripts/kconfig/tests/choice/
H A DKconfig8 choice
9 prompt "boolean choice"
13 bool "choice 0"
16 bool "choice 1"
20 choice
21 prompt "optional boolean choice"
26 bool "choice 0"
29 bool "choice 1"
33 choice
34 prompt "tristate choice"
[all …]
H A Doldask1_expected_stdout2 boolean choice
3 1. choice 0 (BOOL_CHOICE0) (NEW)
4 > 2. choice 1 (BOOL_CHOICE1) (NEW)
5 choice[1-2?]:
6 optional boolean choice [Y/n/?] (NEW)
7 optional boolean choice
8 > 1. choice 0 (OPT_BOOL_CHOICE0)
9 2. choice 1 (OPT_BOOL_CHOICE1) (NEW)
10 choice[1-2?]:
11 tristate choice
[all …]
H A Doldask0_expected_stdout2 boolean choice
3 1. choice 0 (BOOL_CHOICE0) (NEW)
4 > 2. choice 1 (BOOL_CHOICE1) (NEW)
5 choice[1-2?]:
6 optional boolean choice [N/y/?] (NEW)
7 tristate choice [M/y/?] (NEW)
8 choice 0 (TRI_CHOICE0) [N/m/?] (NEW)
9 choice 1 (TRI_CHOICE1) [N/m/?] (NEW)
10 optional tristate choice [N/m/y/?] (NEW)
/openbmc/u-boot/scripts/kconfig/lxdialog/
H A Dmenubox.c89 #define print_item(index, choice, selected) \ argument
92 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \
176 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local
237 choice = item_n(); in dialog_menu()
240 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu()
243 choice = choice - scroll; in dialog_menu()
247 if ((choice >= max_choice)) { in dialog_menu()
248 if (choice >= item_count() - max_choice / 2) in dialog_menu()
251 scroll = first_item = choice - max_choice / 2; in dialog_menu()
252 choice = choice - scroll; in dialog_menu()
[all …]
H A Dchecklist.c18 static void print_item(WINDOW * win, int choice, int selected) in print_item() argument
28 wmove(win, choice, 0); in print_item()
32 wmove(win, choice, check_x); in print_item()
39 mvwaddch(win, choice, item_x, list_item[0]); in print_item()
43 wmove(win, choice, check_x + 1); in print_item()
52 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument
72 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
108 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
114 choice = item_n(); in dialog_checklist()
116 choice = item_n(); in dialog_checklist()
[all …]
/openbmc/linux/scripts/kconfig/lxdialog/
H A Dmenubox.c81 #define print_item(index, choice, selected) \ argument
84 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \
168 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local
229 choice = item_n(); in dialog_menu()
232 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu()
235 choice = choice - scroll; in dialog_menu()
239 if ((choice >= max_choice)) { in dialog_menu()
240 if (choice >= item_count() - max_choice / 2) in dialog_menu()
243 scroll = first_item = choice - max_choice / 2; in dialog_menu()
244 choice = choice - scroll; in dialog_menu()
[all …]
H A Dchecklist.c18 static void print_item(WINDOW * win, int choice, int selected) in print_item() argument
28 wmove(win, choice, 0); in print_item()
32 wmove(win, choice, check_x); in print_item()
39 mvwaddch(win, choice, item_x, list_item[0]); in print_item()
43 wmove(win, choice, check_x + 1); in print_item()
52 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument
72 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
108 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
114 choice = item_n(); in dialog_checklist()
116 choice = item_n(); in dialog_checklist()
[all …]
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/
H A DKconfig1 choice
2 prompt "choice"
11 choice
12 prompt "sub choice"
21 choice
22 prompt "subsub choice"
/openbmc/u-boot/common/
H A Dmenu.c165 int menu_default_choice(struct menu *m, void **choice) in menu_default_choice() argument
168 *choice = m->default_item->data; in menu_default_choice()
184 static inline int menu_interactive_choice(struct menu *m, void **choice) in menu_interactive_choice() argument
207 return menu_default_choice(m, choice); in menu_interactive_choice()
220 *choice = choice_item->data; in menu_interactive_choice()
269 int menu_get_choice(struct menu *m, void **choice) in menu_get_choice() argument
271 if (!m || !choice) in menu_get_choice()
275 return menu_default_choice(m, choice); in menu_get_choice()
277 return menu_interactive_choice(m, choice); in menu_get_choice()
/openbmc/linux/include/linux/netfilter/
H A Dnf_conntrack_h323_types.h29 } choice; member
52 } choice; member
71 } choice; member
93 } choice; member
118 } choice; member
129 } choice; member
168 } choice; member
193 } choice; member
217 } choice; member
382 } choice; member
[all …]
/openbmc/linux/tools/perf/ui/browsers/
H A Dscripts.c89 int i, num, choice; in list_scripts() local
129 choice = ui__popup_menu(num + max_std, (char * const *)names, NULL); in list_scripts()
130 if (choice < 0) { in list_scripts()
134 if (choice == custom_perf) { in list_scripts()
144 } else if (choice < num + max_std) { in list_scripts()
145 strcpy(script_name, paths[choice]); in list_scripts()
147 *custom = choice >= max_std; in list_scripts()
H A Dres_sample.c36 int choice; in res_sample_browse() local
59 choice = ui__popup_menu(num_res, names, NULL); in res_sample_browse()
64 if (choice < 0 || choice >= num_res) in res_sample_browse()
66 r = &res_samples[choice]; in res_sample_browse()
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Ddiagnose.py160 s += random.choice(t)
172 choice = random.randint(0,3)
173 if choice == 0:
175 tag_name = random.choice(tag_names)
177 elif choice == 1:
179 elif choice == 2:
181 tag_name = random.choice(tag_names)
/openbmc/linux/drivers/accessibility/speakup/
H A DKconfig38 the module can be loaded. See the decpc choice below
57 help on the Speakup choice above for more info.
66 help on the Speakup choice above for more info.
74 help on the Speakup choice above for more info.
82 Speakup choice above for more info.
90 help on the Speakup choice above for more info.
99 help on the Speakup choice above for more info.
108 configuration help on the Speakup choice above for more
120 choice above for more info.
142 configuration help on the Speakup choice above for more
[all …]
/openbmc/u-boot/scripts/kconfig/tests/inter_choice/
H A DKconfig5 choice
16 choice
17 prompt "Another choice"
/openbmc/linux/scripts/kconfig/tests/inter_choice/
H A DKconfig7 choice
18 choice
19 prompt "Another choice"
/openbmc/linux/kernel/
H A DKconfig.hz6 choice
23 100 Hz is a typical choice for servers, SMP and NUMA systems
30 250 Hz is a good compromise choice allowing server performance
38 300 Hz is a good compromise choice allowing server performance
46 1000 Hz is the preferred choice for desktop systems and other
/openbmc/u-boot/arch/mips/mach-mt7620/
H A DKconfig10 choice
21 choice
46 choice
67 choice
96 choice
113 choice
/openbmc/u-boot/board/seco/
H A DKconfig3 choice
18 choice
36 choice
/openbmc/linux/scripts/kconfig/tests/new_choice_with_dep/
H A Dexpected_stdout5 choice[1-2?]:
10 choice[1-3?]:
/openbmc/u-boot/scripts/kconfig/tests/new_choice_with_dep/
H A Dexpected_stdout5 choice[1-2?]:
10 choice[1-3?]:
/openbmc/u-boot/tools/buildman/
H A Dkconfiglib.py765 choice = Choice()
766 self.choices.append(choice)
769 choice = self.named_choices.get(name)
770 if choice is None:
771 choice = Choice()
772 choice.name = name
773 self.named_choices[name] = choice
774 self.choices.append(choice)
776 choice.config = self
777 choice.parent = parent
[all …]

12345678910>>...25