/linux/tools/perf/trace/beauty/ |
H A D | pid.c | 16 " (%s)", thread__comm_str(thread)); in syscall_arg__scnprintf_pid()
|
/linux/tools/perf/tests/ |
H A D | hists_common.c | 185 i, thread__comm_str(he->thread), in print_hists_in() 214 i, thread__comm_str(he->thread), thread__tid(he->thread), in print_hists_out()
|
H A D | hists_cumulate.c | 166 #define COMM(he) (thread__comm_str(he->thread))
|
H A D | hists_output.c | 131 #define COMM(he) (thread__comm_str(he->thread))
|
/linux/tools/perf/ |
H A D | builtin-sched.c | 906 printf("... parent: %s/%d\n", thread__comm_str(parent), thread__tid(parent)); in replay_fork_event() 907 printf("... child: %s/%d\n", thread__comm_str(child), thread__tid(child)); in replay_fork_event() 910 register_pid(sched, thread__tid(parent), thread__comm_str(parent)); in replay_fork_event() 911 register_pid(sched, thread__tid(child), thread__comm_str(child)); in replay_fork_event() 1320 register_pid(sched, thread__tid(migrant), thread__comm_str(migrant)); in latency_migrate_task_event() 1357 if (!strcmp(thread__comm_str(work_list->thread), "swapper")) in output_lat_thread() 1364 ret = printf(" %s:(%d) ", thread__comm_str(work_list->thread), in output_lat_thread() 1367 ret = printf(" %s:%d ", thread__comm_str(work_list->thread), in output_lat_thread() 1697 str = thread__comm_str(sched_in); in map_switch_event() 1700 if (!strcmp(thread__comm_str(sched_i in map_switch_event() [all...] |
H A D | builtin-lock.c | 1309 name = thread__comm_str(t); in print_result() 1350 fprintf(lock_output, "%10d: %s\n", st->tid, thread__comm_str(t)); in dump_threads() 1646 pid, pid == -1 ? "Unknown" : thread__comm_str(t)); in print_lock_stat_stdio() 1699 pid == -1 ? "Unknown" : thread__comm_str(t)); in print_lock_stat_csv()
|
H A D | builtin-trace.c | 1916 printed += fprintf(fp, "%.14s/", thread__comm_str(thread)); in trace__fprintf_comm_tid() 2658 thread__comm_str(thread), thread__pid(thread), in thread__update_stats() 2709 thread__comm_str(thread), in trace__fprintf_sample() 3012 fprintf(trace->output, " (%s)", thread__comm_str(child)); in trace__sys_exit() 4107 if (!strcmp(thread__comm_str(parent), "sshd") || in trace__set_filter_loop_pids() 4108 strstarts(thread__comm_str(parent), "gnome-terminal")) { in trace__set_filter_loop_pids() 4901 printed += fprintf(fp, " %s (%d), ", thread__comm_str(thread), thread__tid(thread)); in trace__fprintf_thread()
|
H A D | builtin-report.c | 931 fprintf(fp, "%s\n", thread__comm_str(thread)); in task__print_level()
|
H A D | builtin-kmem.c | 979 dump_printf(" ... thread: %s:%d\n", thread__comm_str(thread), thread__tid(thread)); in process_sample_event()
|
H A D | builtin-script.c | 847 const char *comm = thread ? thread__comm_str(thread) : ":-1"; in perf_sample__fprintf_start()
|
/linux/tools/perf/util/ |
H A D | thread.h | 111 const char *thread__comm_str(struct thread *thread); 341 !strlist__has_entry(symbol_conf.comm_list, thread__comm_str(thread))) { in thread__is_filtered()
|
H A D | thread.c | 315 const char *thread__comm_str(struct thread *thread) in thread__comm_str() function 354 return fprintf(fp, "Thread %d %s\n", thread__tid(thread), thread__comm_str(thread)) + in thread__fprintf() 417 const char *comm = thread__comm_str(parent); in thread__fork()
|
H A D | data-convert-json.c | 185 output_json_key_string(out, true, 3, "comm", thread__comm_str(al.thread)); in process_sample_event()
|
H A D | dlfilter.c | 109 d_al->comm = al->thread ? thread__comm_str(al->thread) : ":-1"; in dlfilter__resolve_ip()
|
H A D | hist.c | 2972 (thread__comm_set(thread) ? thread__comm_str(thread) : ""), in __hists__scnprintf_title() 2977 (thread__comm_set(thread) ? thread__comm_str(thread) : "")); in __hists__scnprintf_title()
|
/linux/tools/perf/ui/browsers/ |
H A D | hists.c | 2588 thread__comm_set(thread) ? thread__comm_str(thread) : ""; in do_zoom_thread() 2620 comm_set_str = thread__comm_set(thread) ? thread__comm_str(thread) : ""; in add_thread_opt() 2737 len += strlen(thread__comm_str(act->thread)); in do_run_script() 2747 thread__comm_str(act->thread)); in do_run_script() 2791 thread__comm_str(thread), tstr) < 0) in add_script_opt_2()
|
/linux/tools/perf/util/scripting-engines/ |
H A D | trace-event-perl.c | 356 const char *comm = thread__comm_str(thread); in perl_process_tracepoint()
|
H A D | trace-event-python.c | 882 _PyUnicode_FromString(thread__comm_str(al->thread))); in get_perf_sample_dict() 946 const char *comm = thread__comm_str(al->thread); in python_process_tracepoint()
|