| /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-6.6/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-6.6/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 | 81 #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 …]
|
| /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-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-6.6/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-6.6/drivers/accessibility/speakup/ |
| D | Kconfig | 38 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 …]
|
| /kernel/linux/linux-6.6/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-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-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-6.6/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-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 …]
|
| /kernel/linux/linux-6.6/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 …]
|
| /kernel/linux/linux-5.10/crypto/asymmetric_keys/ |
| D | pkcs7.asn1 | 12 certificates CHOICE { 16 crls CHOICE { 30 DigestAlgorithmIdentifiers ::= CHOICE { 45 ExtendedCertificateOrCertificate ::= CHOICE { 65 SignerInfos ::= CHOICE { 74 authenticatedAttributes CHOICE { 85 unauthenticatedAttributes CHOICE { 91 SignerIdentifier ::= CHOICE {
|