Home
last modified time | relevance | path

Searched full:choice (Results 1 – 25 of 1619) sorted by relevance

12345678910>>...65

/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)
H A D__init__.py2 Basic choice tests.
4 The handling of 'choice' is a bit complicated part in Kconfig.
6 The behavior of 'y' choice is intuitive. If choice values are tristate,
7 the choice can be 'm' where each value can be enabled independently.
8 Also, if a choice is marked as 'optional', the whole choice can be
/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)
H A D__init__.py3 Basic choice tests.
5 The handling of 'choice' is a bit complicated part in Kconfig.
7 The behavior of 'y' choice is intuitive. If choice values are tristate,
8 the choice can be 'm' where each value can be enabled independently.
9 Also, if a choice is marked as 'optional', the whole choice can be
/openbmc/linux/scripts/kconfig/lxdialog/
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 …]
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
226 /* Set choice to default item */ in dialog_menu()
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()
[all …]
/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
234 /* Set choice to default item */ in dialog_menu()
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()
[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/tests/new_choice_with_dep/
H A Dexpected_stdout2 Choice ?
3 > 1. Choice B (CHOICE_B)
4 2. Choice C (CHOICE_C) (NEW)
5 choice[1-2?]:
7 1. Choice D (CHOICE_D)
8 > 2. Choice E (CHOICE_E)
9 3. Choice F (CHOICE_F) (NEW)
10 choice[1-3?]:
H A DKconfig8 choice
9 prompt "Choice ?"
15 bool "Choice B"
18 bool "Choice C"
24 choice
28 bool "Choice D"
31 bool "Choice E"
34 bool "Choice F"
/openbmc/u-boot/scripts/kconfig/tests/new_choice_with_dep/
H A Dexpected_stdout2 Choice ?
3 > 1. Choice B (CHOICE_B)
4 2. Choice C (CHOICE_C) (NEW)
5 choice[1-2?]:
7 1. Choice D (CHOICE_D)
8 > 2. Choice E (CHOICE_E)
9 3. Choice F (CHOICE_F) (NEW)
10 choice[1-3?]:
H A DKconfig6 choice
7 prompt "Choice ?"
13 bool "Choice B"
16 bool "Choice C"
22 choice
26 bool "Choice D"
29 bool "Choice E"
32 bool "Choice F"
/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
6 prompt "Choice"
9 tristate "Choice 0"
12 tristate "Choice 1"
16 choice
17 prompt "Another choice"
/openbmc/u-boot/common/
H A Dmenu.c112 * Display a menu so the user can make a choice of an item. First display its
162 * Set *choice to point to the default item's data, if any default item was
165 int menu_default_choice(struct menu *m, void **choice) in menu_default_choice() argument
168 *choice = m->default_item->data; in menu_default_choice()
176 * Displays the menu and asks the user to choose an item. *choice will point
177 * to the private data of the item the user chooses. The user makes a choice
180 * valid choice. The user can exit the menu without making a choice via ^c.
182 * Returns 1 if the user made a choice, or -EINTR if they bail via ^c.
184 static inline int menu_interactive_choice(struct menu *m, void **choice) in menu_interactive_choice() argument
196 readret = cli_readline_into_buffer("Enter choice: ", in menu_interactive_choice()
[all …]
/openbmc/linux/scripts/kconfig/tests/inter_choice/
H A DKconfig7 choice
8 prompt "Choice"
11 tristate "Choice 0"
14 tristate "Choice 1"
18 choice
19 prompt "Another choice"
/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/linux/net/netfilter/
H A Dnf_conntrack_h323_types.c17 static const struct field_t _TransportAddress_ipSourceRoute_routing[] = { /* CHOICE */
27 {FNAME("routing") CHOICE, 1, 2, 2, SKIP | EXT, 0,
49 static const struct field_t _NonStandardIdentifier[] = { /* CHOICE */
56 {FNAME("nonStandardIdentifier") CHOICE, 1, 2, 2, SKIP | EXT, 0,
61 static const struct field_t _TransportAddress[] = { /* CHOICE */
77 static const struct field_t _AliasAddress[] = { /* CHOICE */
81 {FNAME("transportID") CHOICE, 3, 7, 7, SKIP | EXT, 0, NULL},
83 {FNAME("partyNumber") CHOICE, 3, 5, 5, SKIP | EXT, 0, NULL},
84 {FNAME("mobileUIM") CHOICE, 1, 2, 2, SKIP | EXT, 0, NULL},
88 {FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress},
[all …]
/openbmc/linux/include/linux/netfilter/
H A Dnf_conntrack_h323_types.h20 typedef struct TransportAddress { /* CHOICE */
29 } choice; member
36 typedef struct DataProtocolCapability { /* CHOICE */
52 } choice; member
55 typedef struct DataApplicationCapability_application { /* CHOICE */
71 } choice; member
82 typedef struct DataType { /* CHOICE */
93 } choice; member
109 typedef struct UnicastAddress { /* CHOICE */
118 } choice; member
[all …]
/openbmc/u-boot/tools/buildman/
H A Dkconfiglib.py369 """Returns a list containing all choice statements in the
386 that do not appear within a menu or choice. The items appear in the
491 'containing choice from "{1}" to "{2}".'
561 None, # Current symbol/choice
627 menu, or choice statement. Appends the Items to the list passed in the
636 parent: The enclosing menu or choice, or None if we're at the top
683 # choice statements, the choice statement takes precedence.
684 if not sym.is_defined_ or isinstance(parent, Choice):
765 choice = Choice()
766 self.choices.append(choice)
[all …]
/openbmc/linux/crypto/asymmetric_keys/
H A Dpkcs7.asn112 certificates CHOICE {
16 crls CHOICE {
30 DigestAlgorithmIdentifiers ::= CHOICE {
45 ExtendedCertificateOrCertificate ::= CHOICE {
65 SignerInfos ::= CHOICE {
74 authenticatedAttributes CHOICE {
85 unauthenticatedAttributes CHOICE {
91 SignerIdentifier ::= CHOICE {

12345678910>>...65