| /kernel/linux/linux-4.19/scripts/kconfig/tests/choice/ |
| D | Kconfig | 6 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 …]
|
| D | oldask1_expected_stdout | 2 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 …]
|
| D | oldask0_expected_stdout | 2 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)
|
| D | __init__.py | 2 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
|
| /kernel/linux/linux-5.10/scripts/kconfig/tests/choice/ |
| D | Kconfig | 8 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 …]
|
| D | oldask1_expected_stdout | 2 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 …]
|
| D | oldask0_expected_stdout | 2 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)
|
| D | __init__.py | 3 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
|
| /kernel/linux/linux-5.10/scripts/kconfig/lxdialog/ |
| D | checklist.c | 18 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 …]
|
| D | menubox.c | 89 #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 …]
|
| /kernel/linux/linux-4.19/scripts/kconfig/lxdialog/ |
| D | checklist.c | 31 static void print_item(WINDOW * win, int choice, int selected) in print_item() argument 41 wmove(win, choice, 0); in print_item() 45 wmove(win, choice, check_x); in print_item() 52 mvwaddch(win, choice, item_x, list_item[0]); in print_item() 56 wmove(win, choice, check_x + 1); in print_item() 65 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument 85 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows() 121 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local 127 choice = item_n(); in dialog_checklist() 129 choice = item_n(); in dialog_checklist() [all …]
|
| D | menubox.c | 102 #define print_item(index, choice, selected) \ argument 105 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \ 189 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local 247 /* Set choice to default item */ in dialog_menu() 250 choice = item_n(); in dialog_menu() 253 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu() 256 choice = choice - scroll; in dialog_menu() 260 if ((choice >= max_choice)) { in dialog_menu() 261 if (choice >= item_count() - max_choice / 2) in dialog_menu() 264 scroll = first_item = choice - max_choice / 2; in dialog_menu() [all …]
|
| /kernel/linux/linux-4.19/scripts/kconfig/tests/new_choice_with_dep/ |
| D | expected_stdout | 2 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?]:
|
| D | Kconfig | 6 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"
|
| /kernel/linux/linux-5.10/scripts/kconfig/tests/new_choice_with_dep/ |
| D | expected_stdout | 2 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?]:
|
| D | Kconfig | 8 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"
|
| /kernel/linux/linux-5.10/drivers/accessibility/speakup/ |
| D | Kconfig | 38 the module can be loaded. See the decpc choice below 56 help on the Speakup choice above for more info. 65 help on the Speakup choice above for more info. 73 help on the Speakup choice above for more info. 81 Speakup choice above for more info. 89 help on the Speakup choice above for more info. 98 help on the Speakup choice above for more info. 107 configuration help on the Speakup choice above for more 119 choice above for more info. 141 configuration help on the Speakup choice above for more [all …]
|
| /kernel/linux/linux-4.19/drivers/staging/speakup/ |
| D | Kconfig | 37 the module can be loaded. See the decpc choice below 50 help on the Speakup choice above for more info. 59 help on the Speakup choice above for more info. 67 help on the Speakup choice above for more info. 75 Speakup choice above for more info. 83 help on the Speakup choice above for more info. 92 help on the Speakup choice above for more info. 101 configuration help on the Speakup choice above for more 113 choice above for more info. 135 configuration help on the Speakup choice above for more [all …]
|
| /kernel/linux/linux-4.19/scripts/kconfig/tests/inter_choice/ |
| D | Kconfig | 5 choice 6 prompt "Choice" 9 tristate "Choice 0" 12 tristate "Choice 1" 16 choice 17 prompt "Another choice"
|
| /kernel/linux/linux-5.10/scripts/kconfig/tests/inter_choice/ |
| D | Kconfig | 7 choice 8 prompt "Choice" 11 tristate "Choice 0" 14 tristate "Choice 1" 18 choice 19 prompt "Another choice"
|
| /kernel/linux/linux-4.19/scripts/kconfig/tests/rand_nested_choice/ |
| D | Kconfig | 1 choice 2 prompt "choice" 11 choice 12 prompt "sub choice" 21 choice 22 prompt "subsub choice"
|
| /kernel/linux/linux-4.19/net/netfilter/ |
| D | nf_conntrack_h323_types.c | 18 static const struct field_t _TransportAddress_ipSourceRoute_routing[] = { /* CHOICE */ 28 {FNAME("routing") CHOICE, 1, 2, 2, SKIP | EXT, 0, 50 static const struct field_t _NonStandardIdentifier[] = { /* CHOICE */ 57 {FNAME("nonStandardIdentifier") CHOICE, 1, 2, 2, SKIP | EXT, 0, 62 static const struct field_t _TransportAddress[] = { /* CHOICE */ 78 static const struct field_t _AliasAddress[] = { /* CHOICE */ 82 {FNAME("transportID") CHOICE, 3, 7, 7, SKIP | EXT, 0, NULL}, 84 {FNAME("partyNumber") CHOICE, 3, 5, 5, SKIP | EXT, 0, NULL}, 85 {FNAME("mobileUIM") CHOICE, 1, 2, 2, SKIP | EXT, 0, NULL}, 89 {FNAME("item") CHOICE, 1, 2, 7, SKIP | EXT, 0, _AliasAddress}, [all …]
|
| /kernel/linux/linux-5.10/net/netfilter/ |
| D | nf_conntrack_h323_types.c | 17 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 …]
|
| /kernel/linux/linux-4.19/include/linux/netfilter/ |
| D | nf_conntrack_h323_types.h | 18 typedef struct TransportAddress { /* CHOICE */ 27 } choice; member 34 typedef struct DataProtocolCapability { /* CHOICE */ 50 } choice; member 53 typedef struct DataApplicationCapability_application { /* CHOICE */ 69 } choice; member 80 typedef struct DataType { /* CHOICE */ 91 } choice; member 107 typedef struct UnicastAddress { /* CHOICE */ 116 } choice; member [all …]
|
| /kernel/linux/linux-5.10/include/linux/netfilter/ |
| D | nf_conntrack_h323_types.h | 20 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 …]
|