Searched refs:PARSE_OPT_OPTARG (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/tools/lib/subcmd/ |
H A D | parse-options.c | 151 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) in get_value() 215 else if (opt->flags & PARSE_OPT_OPTARG && !p->opt) in get_value() 247 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) in get_value() 258 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value() 274 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value() 292 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value() 308 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value() 324 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value() 731 if (opts->flags & PARSE_OPT_OPTARG) in print_option_help() 745 if (opts->flags & PARSE_OPT_OPTARG) in print_option_help() [all...] |
H A D | parse-options.h | 43 PARSE_OPT_OPTARG = 1, enumerator 83 * PARSE_OPT_OPTARG: says that the argument is optional (not for BOOLEANs) 93 * default value to fill (*->value) with for PARSE_OPT_OPTARG. 143 .flags = PARSE_OPT_OPTARG, .defval = (intptr_t)(d) } 147 .flags = PARSE_OPT_OPTARG, .defval = (intptr_t)(d), \ 167 .flags = PARSE_OPT_OPTARG, .data = (d) } 238 PARSE_OPT_OPTARG, &parse_opt_abbrev_cb, 0 }
|
/kernel/linux/linux-6.6/tools/lib/subcmd/ |
H A D | parse-options.c | 151 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) in get_value() 215 else if (opt->flags & PARSE_OPT_OPTARG && !p->opt) in get_value() 247 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) in get_value() 258 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value() 274 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value() 292 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value() 308 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value() 324 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value() 731 if (opts->flags & PARSE_OPT_OPTARG) in print_option_help() 745 if (opts->flags & PARSE_OPT_OPTARG) in print_option_help() [all...] |
H A D | parse-options.h | 39 PARSE_OPT_OPTARG = 1, enumerator 79 * PARSE_OPT_OPTARG: says that the argument is optional (not for BOOLEANs) 89 * default value to fill (*->value) with for PARSE_OPT_OPTARG. 132 #define OPT_UINTEGER_OPTARG(s, l, v, d, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h), .flags = PARSE_OPT_OPTARG, .defval = (intptr_t)(d) } 140 .flags = PARSE_OPT_OPTARG, .defval = (intptr_t)(d) } 144 .flags = PARSE_OPT_OPTARG, .defval = (intptr_t)(d), \ 164 .flags = PARSE_OPT_OPTARG, .data = (d) } 235 PARSE_OPT_OPTARG, &parse_opt_abbrev_cb, 0 }
|
Completed in 4 milliseconds