Symbol: set_option_flag
tools/lib/subcmd/parse-options.h
239
void set_option_flag(struct option *opts, int sopt, const char *lopt, int flag);
tools/perf/builtin-annotate.c
798
set_option_flag(options, 0, "show-total-period", PARSE_OPT_EXCLUSIVE);
tools/perf/builtin-annotate.c
799
set_option_flag(options, 0, "show-nr-samples", PARSE_OPT_EXCLUSIVE);
tools/perf/builtin-kvm.c
1698
set_option_flag(record_options, 'e', "event", PARSE_OPT_HIDDEN);
tools/perf/builtin-kvm.c
1699
set_option_flag(record_options, 0, "filter", PARSE_OPT_HIDDEN);
tools/perf/builtin-kvm.c
1700
set_option_flag(record_options, 'R', "raw-samples", PARSE_OPT_HIDDEN);
tools/perf/builtin-kvm.c
1702
set_option_flag(record_options, 'F', "freq", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1703
set_option_flag(record_options, 0, "group", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1704
set_option_flag(record_options, 'g', NULL, PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1705
set_option_flag(record_options, 0, "call-graph", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1706
set_option_flag(record_options, 'd', "data", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1707
set_option_flag(record_options, 'T', "timestamp", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1708
set_option_flag(record_options, 'P', "period", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1709
set_option_flag(record_options, 'n', "no-samples", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1710
set_option_flag(record_options, 'N', "no-buildid-cache", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1711
set_option_flag(record_options, 'B', "no-buildid", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1712
set_option_flag(record_options, 'G', "cgroup", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1713
set_option_flag(record_options, 'b', "branch-any", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1714
set_option_flag(record_options, 'j', "branch-filter", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1715
set_option_flag(record_options, 'W', "weight", PARSE_OPT_DISABLED);
tools/perf/builtin-kvm.c
1716
set_option_flag(record_options, 0, "transaction", PARSE_OPT_DISABLED);
tools/perf/builtin-list.c
594
set_option_flag(list_options, 0, "raw-dump", PARSE_OPT_HIDDEN);
tools/perf/builtin-list.c
596
set_option_flag(list_options, 0, "cputype", PARSE_OPT_HIDDEN);
tools/perf/builtin-probe.c
610
set_option_flag(options, 'a', "add", PARSE_OPT_EXCLUSIVE);
tools/perf/builtin-probe.c
611
set_option_flag(options, 'd', "del", PARSE_OPT_EXCLUSIVE);
tools/perf/builtin-probe.c
612
set_option_flag(options, 'D', "definition", PARSE_OPT_EXCLUSIVE);
tools/perf/builtin-probe.c
613
set_option_flag(options, 'l', "list", PARSE_OPT_EXCLUSIVE);
tools/perf/builtin-probe.c
615
set_option_flag(options, 'L', "line", PARSE_OPT_EXCLUSIVE);
tools/perf/builtin-probe.c
616
set_option_flag(options, 'V', "vars", PARSE_OPT_EXCLUSIVE);
tools/perf/builtin-probe.c
628
set_option_flag(options, 'F', "funcs", PARSE_OPT_EXCLUSIVE);
tools/perf/builtin-stat.c
2600
set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG);
tools/perf/builtin-stat.c
2601
set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG);
tools/perf/builtin-stat.c
2602
set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG);