Symbol: thread__comm_str
tools/perf/builtin-kmem.c
1002
dump_printf(" ... thread: %s:%d\n", thread__comm_str(thread), thread__tid(thread));
tools/perf/builtin-lock.c
1306
name = thread__comm_str(t);
tools/perf/builtin-lock.c
1347
fprintf(lock_output, "%10d: %s\n", st->tid, thread__comm_str(t));
tools/perf/builtin-lock.c
1643
pid, pid == -1 ? "Unknown" : thread__comm_str(t));
tools/perf/builtin-lock.c
1696
pid == -1 ? "Unknown" : thread__comm_str(t));
tools/perf/builtin-report.c
928
fprintf(fp, "%s\n", thread__comm_str(thread));
tools/perf/builtin-sched.c
1378
register_pid(sched, thread__tid(migrant), thread__comm_str(migrant));
tools/perf/builtin-sched.c
1415
if (!strcmp(thread__comm_str(work_list->thread), "swapper"))
tools/perf/builtin-sched.c
1422
ret = printf(" %s:(%d) ", thread__comm_str(work_list->thread),
tools/perf/builtin-sched.c
1425
ret = printf(" %s:%d ", thread__comm_str(work_list->thread),
tools/perf/builtin-sched.c
1757
str = thread__comm_str(sched_in);
tools/perf/builtin-sched.c
1760
if (!strcmp(thread__comm_str(sched_in), "swapper")) {
tools/perf/builtin-sched.c
1791
str = thread__comm_str(sched_in);
tools/perf/builtin-sched.c
1797
if (!sched_match_task(sched, thread__comm_str(sched_out)))
tools/perf/builtin-sched.c
1803
str = thread__comm_str(sched_out);
tools/perf/builtin-sched.c
1821
tr->shortname, thread__comm_str(sched_in), thread__tid(sched_in));
tools/perf/builtin-sched.c
2123
const char *comm = thread__comm_str(thread);
tools/perf/builtin-sched.c
3519
const char *comm = thread__comm_str(data->thread), *this_comm;
tools/perf/builtin-sched.c
3528
this_comm = thread__comm_str(this->thread);
tools/perf/builtin-sched.c
955
printf("... parent: %s/%d\n", thread__comm_str(parent), thread__tid(parent));
tools/perf/builtin-sched.c
956
printf("... child: %s/%d\n", thread__comm_str(child), thread__tid(child));
tools/perf/builtin-sched.c
959
register_pid(sched, thread__tid(parent), thread__comm_str(parent));
tools/perf/builtin-sched.c
960
register_pid(sched, thread__tid(child), thread__comm_str(child));
tools/perf/builtin-script.c
852
const char *comm = thread ? thread__comm_str(thread) : ":-1";
tools/perf/builtin-trace.c
1930
printed += fprintf(fp, "%.14s/", thread__comm_str(thread));
tools/perf/builtin-trace.c
2698
thread__comm_str(thread), thread__pid(thread),
tools/perf/builtin-trace.c
2751
thread__comm_str(thread),
tools/perf/builtin-trace.c
3060
fprintf(trace->output, " (%s)", thread__comm_str(child));
tools/perf/builtin-trace.c
4185
if (!strcmp(thread__comm_str(parent), "sshd") ||
tools/perf/builtin-trace.c
4186
strstarts(thread__comm_str(parent), "gnome-terminal")) {
tools/perf/builtin-trace.c
4985
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
165
#define COMM(he) (thread__comm_str(he->thread))
tools/perf/tests/hists_output.c
130
#define COMM(he) (thread__comm_str(he->thread))
tools/perf/trace/beauty/pid.c
19
" (%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
201
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
2974
(thread__comm_set(thread) ? thread__comm_str(thread) : ""),
tools/perf/util/hist.c
2979
(thread__comm_set(thread) ? thread__comm_str(thread) : ""));
tools/perf/util/scripting-engines/trace-event-perl.c
354
const char *comm = thread__comm_str(thread);
tools/perf/util/scripting-engines/trace-event-python.c
883
_PyUnicode_FromString(thread__comm_str(al->thread)));
tools/perf/util/scripting-engines/trace-event-python.c
949
const char *comm = thread__comm_str(al->thread);
tools/perf/util/sort.c
126
const char *comm = thread__comm_str(he->thread);
tools/perf/util/sort.c
167
comm = thread__comm_str(he->thread);
tools/perf/util/sort.c
173
comm = thread__comm_str(leader);
tools/perf/util/thread.c
360
return fprintf(fp, "Thread %d %s\n", thread__tid(thread), thread__comm_str(thread)) +
tools/perf/util/thread.c
403
const char *comm = thread__comm_str(parent);
tools/perf/util/thread.h
120
const char *thread__comm_str(struct thread *thread);
tools/perf/util/thread.h
376
!strlist__has_entry(symbol_conf.comm_list, thread__comm_str(thread))) {