argh 741 tools/lib/subcmd/parse-options.c if (opts->argh) { argh 744 tools/lib/subcmd/parse-options.c pos += fprintf(stderr, "[=<%s>]", opts->argh); argh 746 tools/lib/subcmd/parse-options.c pos += fprintf(stderr, "[<%s>]", opts->argh); argh 748 tools/lib/subcmd/parse-options.c pos += fprintf(stderr, " <%s>", opts->argh); argh 106 tools/lib/subcmd/parse-options.h const char *argh; argh 139 tools/lib/subcmd/parse-options.h #define OPT_STRING(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_vtype(v, const char **), .argh = (a), .help = (h) } argh 142 tools/lib/subcmd/parse-options.h .value = check_vtype(v, const char **), .argh =(a), .help = (h), \ argh 146 tools/lib/subcmd/parse-options.h .value = check_vtype(v, const char **), .argh = (a), .help = (h), \ argh 149 tools/lib/subcmd/parse-options.h #define OPT_STRING_NOEMPTY(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_vtype(v, const char **), .argh = (a), .help = (h), .flags = PARSE_OPT_NOEMPTY} argh 151 tools/lib/subcmd/parse-options.h { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = "time", .help = (h), .callback = parse_opt_approxidate_cb } argh 153 tools/lib/subcmd/parse-options.h { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help = (h), .callback = (f) } argh 155 tools/lib/subcmd/parse-options.h { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help = (h), .callback = (f), .flags = PARSE_OPT_NOARG } argh 157 tools/lib/subcmd/parse-options.h { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help = (h), .callback = (f), .defval = (intptr_t)d, .flags = PARSE_OPT_LASTARG_DEFAULT } argh 164 tools/lib/subcmd/parse-options.h .value = (v), .argh = (a), .help = (h), .callback = (f), \