Symbol: itrace_synth_opts
tools/perf/builtin-annotate.c
706
struct itrace_synth_opts itrace_synth_opts = {
tools/perf/builtin-annotate.c
780
OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
tools/perf/builtin-annotate.c
886
annotate.session->itrace_synth_opts = &itrace_synth_opts;
tools/perf/builtin-c2c.c
3075
struct itrace_synth_opts itrace_synth_opts = {
tools/perf/builtin-c2c.c
3226
session->itrace_synth_opts = &itrace_synth_opts;
tools/perf/builtin-inject.c
131
struct itrace_synth_opts itrace_synth_opts;
tools/perf/builtin-inject.c
2017
inject->itrace_synth_opts.set = true;
tools/perf/builtin-inject.c
2018
inject->itrace_synth_opts.vm_time_correlation = true;
tools/perf/builtin-inject.c
2026
inject->itrace_synth_opts.vm_tm_corr_dry_run = true;
tools/perf/builtin-inject.c
2033
inject->itrace_synth_opts.vm_tm_corr_args = strdup(args);
tools/perf/builtin-inject.c
2035
return inject->itrace_synth_opts.vm_tm_corr_args ? 0 : -ENOMEM;
tools/perf/builtin-inject.c
2262
inject->itrace_synth_opts.set) {
tools/perf/builtin-inject.c
2292
} else if (inject->itrace_synth_opts.vm_time_correlation) {
tools/perf/builtin-inject.c
2293
session->itrace_synth_opts = &inject->itrace_synth_opts;
tools/perf/builtin-inject.c
2301
} else if (inject->itrace_synth_opts.set) {
tools/perf/builtin-inject.c
2302
session->itrace_synth_opts = &inject->itrace_synth_opts;
tools/perf/builtin-inject.c
2303
inject->itrace_synth_opts.inject = true;
tools/perf/builtin-inject.c
2371
if (!inject->itrace_synth_opts.set)
tools/perf/builtin-inject.c
2407
inject->have_auxtrace && !inject->itrace_synth_opts.set)
tools/perf/builtin-inject.c
2413
if (inject->itrace_synth_opts.set) {
tools/perf/builtin-inject.c
2416
if (inject->itrace_synth_opts.last_branch ||
tools/perf/builtin-inject.c
2417
inject->itrace_synth_opts.add_last_branch)
tools/perf/builtin-inject.c
2527
OPT_CALLBACK_OPTARG(0, "itrace", &inject.itrace_synth_opts,
tools/perf/builtin-inject.c
2552
if (!inject.itrace_synth_opts.set) {
tools/perf/builtin-inject.c
2571
if (inject.strip && !inject.itrace_synth_opts.set) {
tools/perf/builtin-inject.c
2772
free(inject.itrace_synth_opts.vm_tm_corr_args);
tools/perf/builtin-inject.c
379
if (inject->itrace_synth_opts.set && sample->aux_sample.size) {
tools/perf/builtin-mem.c
266
struct itrace_synth_opts itrace_synth_opts = {
tools/perf/builtin-mem.c
299
session->itrace_synth_opts = &itrace_synth_opts;
tools/perf/builtin-report.c
1072
session->itrace_synth_opts->cpu_bitmap = rep->cpu_bitmap;
tools/perf/builtin-report.c
1310
struct itrace_synth_opts itrace_synth_opts = { .set = 0, };
tools/perf/builtin-report.c
1469
OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
tools/perf/builtin-report.c
1585
if ((itrace_synth_opts.callchain || itrace_synth_opts.add_callchain) &&
tools/perf/builtin-report.c
1586
(int)itrace_synth_opts.callchain_sz > report.max_stack)
tools/perf/builtin-report.c
1587
report.max_stack = itrace_synth_opts.callchain_sz;
tools/perf/builtin-report.c
1645
session->itrace_synth_opts = &itrace_synth_opts;
tools/perf/builtin-report.c
1662
if (itrace_synth_opts.last_branch || itrace_synth_opts.add_last_branch)
tools/perf/builtin-report.c
1871
itrace_synth_opts__set_time_range(&itrace_synth_opts,
tools/perf/builtin-report.c
1905
itrace_synth_opts__clear_time_range(&itrace_synth_opts);
tools/perf/builtin-report.c
378
if (session->itrace_synth_opts->callchain ||
tools/perf/builtin-report.c
379
session->itrace_synth_opts->add_callchain ||
tools/perf/builtin-report.c
382
!session->itrace_synth_opts->set))
tools/perf/builtin-report.c
385
if (session->itrace_synth_opts->last_branch ||
tools/perf/builtin-report.c
386
session->itrace_synth_opts->add_last_branch)
tools/perf/builtin-script.c
4033
struct itrace_synth_opts itrace_synth_opts = {
tools/perf/builtin-script.c
4100
OPT_CALLBACK_OPTARG(0, "insn-trace", &itrace_synth_opts, NULL, "raw|disasm",
tools/perf/builtin-script.c
4104
OPT_CALLBACK_OPTARG(0, "call-trace", &itrace_synth_opts, NULL, NULL,
tools/perf/builtin-script.c
4106
OPT_CALLBACK_OPTARG(0, "call-ret-trace", &itrace_synth_opts, NULL, NULL,
tools/perf/builtin-script.c
4154
OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
tools/perf/builtin-script.c
4248
if ((itrace_synth_opts.callchain || itrace_synth_opts.add_callchain) &&
tools/perf/builtin-script.c
4249
itrace_synth_opts.callchain_sz > scripting_max_stack)
tools/perf/builtin-script.c
4250
scripting_max_stack = itrace_synth_opts.callchain_sz;
tools/perf/builtin-script.c
4463
itrace_synth_opts.thread_stack = true;
tools/perf/builtin-script.c
4465
session->itrace_synth_opts = &itrace_synth_opts;
tools/perf/builtin-script.c
4471
itrace_synth_opts.cpu_bitmap = cpu_bitmap;
tools/perf/builtin-script.c
4575
itrace_synth_opts__set_time_range(&itrace_synth_opts,
tools/perf/builtin-script.c
4596
itrace_synth_opts__clear_time_range(&itrace_synth_opts);
tools/perf/scripts/python/Perf-Trace-Util/Context.c
115
if (!c->session || !c->session->itrace_synth_opts)
tools/perf/scripts/python/Perf-Trace-Util/Context.c
118
if (c->session->itrace_synth_opts->set) {
tools/perf/scripts/python/Perf-Trace-Util/Context.c
125
retval = itrace_do_parse_synth_opts(c->session->itrace_synth_opts, itrace_options, 0);
tools/perf/util/arm-spe.c
1967
if (session->itrace_synth_opts && session->itrace_synth_opts->set) {
tools/perf/util/arm-spe.c
1968
spe->synth_opts = *session->itrace_synth_opts;
tools/perf/util/arm-spe.c
63
struct itrace_synth_opts synth_opts;
tools/perf/util/auxtrace.c
128
return !session->itrace_synth_opts ||
tools/perf/util/auxtrace.c
129
session->itrace_synth_opts->dont_decode;
tools/perf/util/auxtrace.c
1459
void itrace_synth_opts__set_default(struct itrace_synth_opts *synth_opts,
tools/perf/util/auxtrace.c
1546
int itrace_do_parse_synth_opts(struct itrace_synth_opts *synth_opts,
tools/perf/util/auxtrace.c
373
unsigned long *cpu_bitmap = session->itrace_synth_opts->cpu_bitmap;
tools/perf/util/auxtrace.h
620
int itrace_do_parse_synth_opts(struct itrace_synth_opts *synth_opts,
tools/perf/util/auxtrace.h
624
void itrace_synth_opts__set_default(struct itrace_synth_opts *synth_opts,
tools/perf/util/auxtrace.h
687
void itrace_synth_opts__set_time_range(struct itrace_synth_opts *opts,
tools/perf/util/auxtrace.h
696
void itrace_synth_opts__clear_time_range(struct itrace_synth_opts *opts)
tools/perf/util/cs-etm.c
3448
if (session->itrace_synth_opts->set) {
tools/perf/util/cs-etm.c
3449
etm->synth_opts = *session->itrace_synth_opts;
tools/perf/util/cs-etm.c
3452
session->itrace_synth_opts->default_no_sample);
tools/perf/util/cs-etm.c
46
struct itrace_synth_opts synth_opts;
tools/perf/util/intel-bts.c
57
struct itrace_synth_opts synth_opts;
tools/perf/util/intel-bts.c
875
if (session->itrace_synth_opts->set) {
tools/perf/util/intel-bts.c
876
bts->synth_opts = *session->itrace_synth_opts;
tools/perf/util/intel-bts.c
879
session->itrace_synth_opts->default_no_sample);
tools/perf/util/intel-bts.c
881
session->itrace_synth_opts->thread_stack;
tools/perf/util/intel-pt.c
4261
struct itrace_synth_opts *opts)
tools/perf/util/intel-pt.c
4438
if (session->itrace_synth_opts->set) {
tools/perf/util/intel-pt.c
4439
pt->synth_opts = *session->itrace_synth_opts;
tools/perf/util/intel-pt.c
4441
struct itrace_synth_opts *opts = session->itrace_synth_opts;
tools/perf/util/intel-pt.c
4549
if (session->itrace_synth_opts->ptime_range) {
tools/perf/util/intel-pt.c
4626
err = intel_pt_setup_time_ranges(pt, session->itrace_synth_opts);
tools/perf/util/intel-pt.c
96
struct itrace_synth_opts synth_opts;
tools/perf/util/s390-cpumsf.c
1069
static bool check_auxtrace_itrace(struct itrace_synth_opts *itops)
tools/perf/util/s390-cpumsf.c
1129
if (!check_auxtrace_itrace(session->itrace_synth_opts)) {
tools/perf/util/s390-cpumsf.c
1133
sf->use_logfile = session->itrace_synth_opts->log;
tools/perf/util/session.h
21
struct itrace_synth_opts;
tools/perf/util/session.h
53
struct itrace_synth_opts *itrace_synth_opts;