Home
last modified time | relevance | path

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

/linux-6.15/tools/perf/
H A Dbuiltin-report.c901 if (thread__ppid(thread) <= 0) in thread_level()
904 parent_thread = machine__find_thread(machine, -1, thread__ppid(thread)); in thread_level()
919 thread__ppid(thread), level, ""); in task__print_level()
957 if (thread__ppid(a) == thread__ppid(b)) in task_list_cmp()
970 struct thread *parent = machine__find_thread(machine, -1, thread__ppid(a)); in task_list_cmp()
981 struct thread *parent = machine__find_thread(machine, -1, thread__ppid(b)); in task_list_cmp()
992 while (thread__ppid(a) != thread__ppid(b)) { in task_list_cmp()
995 parent = machine__find_thread(machine, -1, thread__ppid(a)); in task_list_cmp()
1000 parent = machine__find_thread(machine, -1, thread__ppid(b)); in task_list_cmp()
H A Dbuiltin-sched.c2903 comm_width, timehist_get_commstr(t), thread__ppid(t), in print_thread_runtime()
2923 comm_width, timehist_get_commstr(t), thread__ppid(t), in print_thread_waittime()
H A Dbuiltin-trace.c4122 thread__ppid(thread), in trace__set_filter_loop_pids()
4123 thread__ppid(thread)); in trace__set_filter_loop_pids()
/linux-6.15/tools/perf/util/
H A Dthread.h164 static inline pid_t thread__ppid(const struct thread *thread) in thread__ppid() function