Home
last modified time | relevance | path

Searched refs:thread__ppid (Results 1 – 4 of 4) sorted by relevance

/linux/tools/perf/
H A Dbuiltin-report.c912 if (thread__ppid(thread) <= 0) in thread_level()
915 parent_thread = machine__find_thread(machine, -1, thread__ppid(thread)); in thread_level()
930 thread__ppid(thread), level, ""); in task__print_level()
968 if (thread__ppid(a) == thread__ppid(b)) in task_list_cmp()
981 struct thread *parent = machine__find_thread(machine, -1, thread__ppid(a)); in task_list_cmp()
992 struct thread *parent = machine__find_thread(machine, -1, thread__ppid(b)); in task_list_cmp()
1003 while (thread__ppid(a) != thread__ppid(b)) { in task_list_cmp()
1006 parent = machine__find_thread(machine, -1, thread__ppid(a)); in task_list_cmp()
1011 parent = machine__find_thread(machine, -1, thread__ppid(b)); in task_list_cmp()
H A Dbuiltin-sched.c2950 comm_width, timehist_get_commstr(t), thread__ppid(t), in print_thread_runtime()
2970 comm_width, timehist_get_commstr(t), thread__ppid(t), in print_thread_waittime()
H A Dbuiltin-trace.c4125 thread__ppid(thread), in trace__set_filter_loop_pids()
4126 thread__ppid(thread)); in trace__set_filter_loop_pids()
/linux/tools/perf/util/
H A Dthread.h164 static inline pid_t thread__ppid(const struct thread *thread) in thread__ppid() function