Home
last modified time | relevance | path

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

/linux/tools/perf/util/
H A Dthread.c61 INIT_LIST_HEAD(thread__comm_list(thread)); in thread__new()
70 list_add(&comm->list, thread__comm_list(thread)); in thread__new()
113 list_for_each_entry_safe(comm, tmp_comm, thread__comm_list(thread), list) { in thread__delete()
207 if (list_empty(thread__comm_list(thread))) in __thread__comm()
210 return list_first_entry(thread__comm_list(thread), struct comm, list); in __thread__comm()
228 list_for_each_entry(comm, thread__comm_list(thread), list) { in thread__exec_comm()
265 list_add(&new->list, thread__comm_list(thread)); in ____thread__set_comm()
H A Dthread.h244 static inline struct list_head *thread__comm_list(struct thread *thread) in thread__comm_list() function