• Home
  • Raw
  • Download

Lines Matching refs:flags

20 static int opterror(const struct option *opt, const char *reason, int flags)  in opterror()  argument
22 if (flags & OPT_SHORT) in opterror()
24 else if (flags & OPT_UNSET) in opterror()
38 static void optwarning(const struct option *opt, const char *reason, int flags) in optwarning() argument
40 if (flags & OPT_SHORT) in optwarning()
42 else if (flags & OPT_UNSET) in optwarning()
49 int flags, const char **arg) in get_arg() argument
56 } else if ((opt->flags & PARSE_OPT_LASTARG_DEFAULT) && (p->argc == 1 || in get_arg()
63 return opterror(opt, "requires a value", flags); in get_arg()
70 const struct option *opt, int flags) in get_value() argument
73 const int unset = flags & OPT_UNSET; in get_value()
77 return opterror(opt, "takes no value", flags); in get_value()
78 if (unset && (opt->flags & PARSE_OPT_NONEG)) in get_value()
79 return opterror(opt, "isn't available", flags); in get_value()
80 if (opt->flags & PARSE_OPT_DISABLED) in get_value()
81 return opterror(opt, "is not usable", flags); in get_value()
83 if (opt->flags & PARSE_OPT_EXCLUSIVE) { in get_value()
87 if (((flags & OPT_SHORT) && p->excl_opt->short_name) || in get_value()
95 opterror(opt, msg, flags); in get_value()
100 if (!(flags & OPT_SHORT) && p->opt) { in get_value()
103 if (!(opt->flags & PARSE_OPT_NOARG)) in get_value()
111 return opterror(opt, "takes no value", flags); in get_value()
126 if (opt->flags & PARSE_OPT_NOBUILD) { in get_value()
131 opt->flags & PARSE_OPT_CANSKIP ? in get_value()
138 strncpy(reason, opt->flags & PARSE_OPT_CANSKIP ? in get_value()
143 if (!(opt->flags & PARSE_OPT_CANSKIP)) in get_value()
144 return opterror(opt, reason, flags); in get_value()
149 if (opt->flags & PARSE_OPT_NOARG) in get_value()
151 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) in get_value()
177 err = get_arg(p, opt, flags, NULL); in get_value()
181 optwarning(opt, reason, flags); in get_value()
215 else if (opt->flags & PARSE_OPT_OPTARG && !p->opt) in get_value()
218 err = get_arg(p, opt, flags, (const char **)opt->value); in get_value()
224 if (opt->flags & PARSE_OPT_NOEMPTY) { in get_value()
242 if (opt->flags & PARSE_OPT_NOARG) in get_value()
244 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) in get_value()
246 if (get_arg(p, opt, flags, &arg)) in get_value()
255 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value()
259 if (get_arg(p, opt, flags, &arg)) in get_value()
263 return opterror(opt, "expects a numerical value", flags); in get_value()
271 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value()
275 if (get_arg(p, opt, flags, &arg)) in get_value()
278 return opterror(opt, "expects an unsigned numerical value", flags); in get_value()
281 return opterror(opt, "expects a numerical value", flags); in get_value()
289 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value()
293 if (get_arg(p, opt, flags, &arg)) in get_value()
297 return opterror(opt, "expects a numerical value", flags); in get_value()
305 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value()
309 if (get_arg(p, opt, flags, &arg)) in get_value()
313 return opterror(opt, "expects a numerical value", flags); in get_value()
321 if (opt->flags & PARSE_OPT_OPTARG && !p->opt) { in get_value()
325 if (get_arg(p, opt, flags, &arg)) in get_value()
328 return opterror(opt, "expects an unsigned numerical value", flags); in get_value()
331 return opterror(opt, "expects a numerical value", flags); in get_value()
373 int flags = 0; in parse_long_opt() local
383 return opterror(options, "takes no value", flags); in parse_long_opt()
399 flags |= OPT_UNSET; in parse_long_opt()
404 flags |= OPT_UNSET; in parse_long_opt()
421 if (!(flags & OPT_UNSET) && *arg_end) in parse_long_opt()
424 abbrev_flags = flags; in parse_long_opt()
429 flags |= OPT_UNSET; in parse_long_opt()
435 flags |= OPT_UNSET; in parse_long_opt()
449 return get_value(p, options, flags); in parse_long_opt()
494 int argc, const char **argv, int flags) in parse_options_start() argument
500 ctx->cpidx = ((flags & PARSE_OPT_KEEP_ARGV0) != 0); in parse_options_start()
501 ctx->flags = flags; in parse_options_start()
502 if ((flags & PARSE_OPT_KEEP_UNKNOWN) && in parse_options_start()
503 (flags & PARSE_OPT_STOP_AT_NON_OPTION)) in parse_options_start()
515 int internal_help = !(ctx->flags & PARSE_OPT_NO_INTERNAL_HELP); in parse_options_step()
525 if (ctx->flags & PARSE_OPT_STOP_AT_NON_OPTION) in parse_options_step()
574 if (!(ctx->flags & PARSE_OPT_KEEP_DASHDASH)) { in parse_options_step()
603 if (!(ctx->flags & PARSE_OPT_KEEP_UNKNOWN)) in parse_options_step()
630 const char *const subcommands[], const char *usagestr[], int flags) in parse_options_subcommand() argument
650 parse_options_start(&ctx, argc, argv, flags); in parse_options_subcommand()
684 const char * const usagestr[], int flags) in parse_options() argument
687 (const char **) usagestr, flags); in parse_options()
704 if (!full && (opts->flags & PARSE_OPT_HIDDEN)) in print_option_help()
706 if (opts->flags & PARSE_OPT_DISABLED) in print_option_help()
728 if (opts->flags & PARSE_OPT_OPTARG) in print_option_help()
737 if (opts->flags & PARSE_OPT_NOARG) in print_option_help()
742 if (opts->flags & PARSE_OPT_OPTARG) in print_option_help()
750 if (opts->flags & PARSE_OPT_OPTARG) in print_option_help()
777 if (opts->flags & PARSE_OPT_NOBUILD) in print_option_help()
1008 opt->flags |= flag; in set_option_flag()
1022 opt->flags |= PARSE_OPT_NOBUILD; in set_option_nobuild()
1023 opt->flags |= can_skip ? PARSE_OPT_CANSKIP : 0; in set_option_nobuild()