Symbol: disassembler_style
tools/bpf/bpftool/jit_disasm.c
218
enum disassembler_style style __maybe_unused,
tools/include/tools/dis-asm-compat.h
11
typedef int (*fprintf_styled_ftype) (void *, enum disassembler_style, const char*, ...);
tools/include/tools/dis-asm-compat.h
19
enum disassembler_style style,
tools/objtool/disas.c
154
enum disassembler_style style,
tools/perf/builtin-annotate.c
709
const char *disassembler_style = NULL, *objdump_path = NULL, *addr2line_path = NULL;
tools/perf/builtin-annotate.c
754
OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
tools/perf/builtin-annotate.c
821
if (disassembler_style) {
tools/perf/builtin-annotate.c
822
annotate_opts.disassembler_style = strdup(disassembler_style);
tools/perf/builtin-annotate.c
823
if (!annotate_opts.disassembler_style)
tools/perf/builtin-c2c.c
3090
const char *disassembler_style = NULL, *objdump_path = NULL;
tools/perf/builtin-c2c.c
3118
OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
tools/perf/builtin-c2c.c
3151
if (disassembler_style) {
tools/perf/builtin-c2c.c
3152
annotate_opts.disassembler_style = strdup(disassembler_style);
tools/perf/builtin-c2c.c
3153
if (!annotate_opts.disassembler_style) {
tools/perf/builtin-report.c
1333
const char *disassembler_style = NULL, *objdump_path = NULL, *addr2line_path = NULL;
tools/perf/builtin-report.c
1432
OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
tools/perf/builtin-report.c
1546
if (disassembler_style) {
tools/perf/builtin-report.c
1547
annotate_opts.disassembler_style = strdup(disassembler_style);
tools/perf/builtin-report.c
1548
if (!annotate_opts.disassembler_style)
tools/perf/builtin-top.c
1477
const char *disassembler_style = NULL, *objdump_path = NULL, *addr2line_path = NULL;
tools/perf/builtin-top.c
1569
OPT_STRING('M', "disassembler-style", &disassembler_style, "disassembler style",
tools/perf/builtin-top.c
1668
if (disassembler_style) {
tools/perf/builtin-top.c
1669
annotate_opts.disassembler_style = strdup(disassembler_style);
tools/perf/builtin-top.c
1670
if (!annotate_opts.disassembler_style) {
tools/perf/util/annotate.c
2320
opt->disassembler_style = strdup(value);
tools/perf/util/annotate.c
2321
if (!opt->disassembler_style) {
tools/perf/util/annotate.c
2366
zfree(&annotate_opts.disassembler_style);
tools/perf/util/annotate.h
68
char *disassembler_style;
tools/perf/util/capstone.c
141
bool disassembler_style)
tools/perf/util/capstone.c
176
if (disassembler_style)
tools/perf/util/capstone.c
346
bool disassembler_style = false;
tools/perf/util/capstone.c
372
if (!args->options->disassembler_style ||
tools/perf/util/capstone.c
373
!strcmp(args->options->disassembler_style, "att"))
tools/perf/util/capstone.c
374
disassembler_style = true;
tools/perf/util/capstone.c
377
disassembler_style) < 0)
tools/perf/util/capstone.c
468
bool disassembler_style = false;
tools/perf/util/capstone.c
483
if (!args->options->disassembler_style ||
tools/perf/util/capstone.c
484
!strcmp(args->options->disassembler_style, "att"))
tools/perf/util/capstone.c
485
disassembler_style = true;
tools/perf/util/capstone.c
488
disassembler_style) < 0)
tools/perf/util/disasm.c
1432
opts->disassembler_style ? "-M " : "",
tools/perf/util/disasm.c
1433
opts->disassembler_style ?: "",
tools/perf/util/llvm.c
166
if (args->options->disassembler_style &&
tools/perf/util/llvm.c
167
!strcmp(args->options->disassembler_style, "intel"))