Symbol: thread__comm_str
tools/perf/builtin-kmem.c
979
dump_printf(" ... thread: %s:%d\n", thread__comm_str(thread), thread__tid(thread));
tools/perf/builtin-lock.c
1309
name = thread__comm_str(t);
tools/perf/builtin-lock.c
1350
fprintf(lock_output, "%10d: %s\n", st->tid, thread__comm_str(t));
tools/perf/builtin-lock.c
1646
pid, pid == -1 ? "Unknown" : thread__comm_str(t));
tools/perf/builtin-lock.c
1699
pid == -1 ? "Unknown" : thread__comm_str(t));
tools/perf/builtin-report.c
932
fprintf(fp, "%s\n", thread__comm_str(thread));
tools/perf/builtin-sched.c
1327
register_pid(sched, thread__tid(migrant), thread__comm_str(migrant));
tools/perf/builtin-sched.c
1364
if (!strcmp(thread__comm_str(work_list->thread), "swapper"))
tools/perf/builtin-sched.c
1371
ret = printf(" %s:(%d) ", thread__comm_str(work_list->thread),
tools/perf/builtin-sched.c
1374
ret = printf(" %s:%d ", thread__comm_str(work_list->thread),
tools/perf/builtin-sched.c
1693
str = thread__comm_str(sched_in);
tools/perf/builtin-sched.c
1696
if (!strcmp(thread__comm_str(sched_in), "swapper")) {
tools/perf/builtin-sched.c
1727
str = thread__comm_str(sched_in);
tools/perf/builtin-sched.c
1733
if (!sched_match_task(sched, thread__comm_str(sched_out)))
tools/perf/builtin-sched.c
1739
str = thread__comm_str(sched_out);
tools/perf/builtin-sched.c
1757
tr->shortname, thread__comm_str(sched_in), thread__tid(sched_in));
tools/perf/builtin-sched.c
2049
const char *comm = thread__comm_str(thread);
tools/perf/builtin-sched.c
3426
const char *comm = thread__comm_str(data->thread), *this_comm;
tools/perf/builtin-sched.c
3435
this_comm = thread__comm_str(this->thread);
tools/perf/builtin-sched.c
913
printf("... parent: %s/%d\n", thread__comm_str(parent), thread__tid(parent));
tools/perf/builtin-sched.c
914
printf("... child: %s/%d\n", thread__comm_str(child), thread__tid(child));
tools/perf/builtin-sched.c
917
register_pid(sched, thread__tid(parent), thread__comm_str(parent));
tools/perf/builtin-sched.c
918
register_pid(sched, thread__tid(child), thread__comm_str(child));
tools/perf/builtin-script.c
848
const char *comm = thread ? thread__comm_str(thread) : ":-1";
tools/perf/builtin-trace.c
1917
printed += fprintf(fp, "%.14s/", thread__comm_str(thread));
tools/perf/builtin-trace.c
2680
thread__comm_str(thread), thread__pid(thread),
tools/perf/builtin-trace.c
2731
thread__comm_str(thread),
tools/perf/builtin-trace.c
3034
fprintf(trace->output, " (%s)", thread__comm_str(child));
tools/perf/builtin-trace.c
4131
if (!strcmp(thread__comm_str(parent), "sshd") ||
tools/perf/builtin-trace.c
4132
strstarts(thread__comm_str(parent), "gnome-terminal")) {
tools/perf/builtin-trace.c
4929
printed += fprintf(fp, " %s (%d), ", thread__comm_str(thread), thread__tid(thread));
tools/perf/tests/hists_common.c
185
i, thread__comm_str(he->thread),
tools/perf/tests/hists_common.c
214
i, thread__comm_str(he->thread), thread__tid(he->thread),
tools/perf/tests/hists_cumulate.c
166
#define COMM(he) (thread__comm_str(he->thread))
tools/perf/tests/hists_output.c
131
#define COMM(he) (thread__comm_str(he->thread))
tools/perf/trace/beauty/pid.c
16
" (%s)", thread__comm_str(thread));
tools/perf/ui/browsers/hists.c
2588
thread__comm_set(thread) ? thread__comm_str(thread) : "";
tools/perf/ui/browsers/hists.c
2620
comm_set_str = thread__comm_set(thread) ? thread__comm_str(thread) : "";
tools/perf/ui/browsers/hists.c
2737
len += strlen(thread__comm_str(act->thread));
tools/perf/ui/browsers/hists.c
2747
thread__comm_str(act->thread));
tools/perf/ui/browsers/hists.c
2791
thread__comm_str(thread), tstr) < 0)
tools/perf/util/data-convert-json.c
200
output_json_key_string(out, true, 3, "comm", thread__comm_str(al.thread));
tools/perf/util/dlfilter.c
109
d_al->comm = al->thread ? thread__comm_str(al->thread) : ":-1";
tools/perf/util/event.c
818
dump_printf(" ... thread: %s:%d\n", thread__comm_str(thread), thread__tid(thread));
tools/perf/util/hist.c
2970
(thread__comm_set(thread) ? thread__comm_str(thread) : ""),
tools/perf/util/hist.c
2975
(thread__comm_set(thread) ? thread__comm_str(thread) : ""));
tools/perf/util/scripting-engines/trace-event-perl.c
356
const char *comm = thread__comm_str(thread);
tools/perf/util/scripting-engines/trace-event-python.c
887
_PyUnicode_FromString(thread__comm_str(al->thread)));
tools/perf/util/scripting-engines/trace-event-python.c
954
const char *comm = thread__comm_str(al->thread);
tools/perf/util/sort.c
119
const char *comm = thread__comm_str(he->thread);
tools/perf/util/sort.c
160
comm = thread__comm_str(he->thread);
tools/perf/util/sort.c
166
comm = thread__comm_str(leader);
tools/perf/util/thread.c
354
return fprintf(fp, "Thread %d %s\n", thread__tid(thread), thread__comm_str(thread)) +
tools/perf/util/thread.c
417
const char *comm = thread__comm_str(parent);
tools/perf/util/thread.h
115
const char *thread__comm_str(struct thread *thread);
tools/perf/util/thread.h
355
!strlist__has_entry(symbol_conf.comm_list, thread__comm_str(thread))) {