Home
last modified time | relevance | path

Searched refs:thread__comm_list (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.6/tools/perf/util/
Dthread.c55 INIT_LIST_HEAD(thread__comm_list(thread)); in thread__new()
69 list_add(&comm->list, thread__comm_list(thread)); in thread__new()
112 list_for_each_entry_safe(comm, tmp_comm, thread__comm_list(thread), list) { in thread__delete()
205 if (list_empty(thread__comm_list(thread))) in thread__comm()
208 return list_first_entry(thread__comm_list(thread), struct comm, list); in thread__comm()
215 list_for_each_entry(comm, thread__comm_list(thread), list) { in thread__exec_comm()
248 list_add(&new->list, thread__comm_list(thread)); in ____thread__set_comm()
Dthread.h227 static inline struct list_head *thread__comm_list(struct thread *thread) in thread__comm_list() function