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.c56 INIT_LIST_HEAD(thread__comm_list(thread)); in thread__new()
65 list_add(&comm->list, thread__comm_list(thread)); in thread__new()
108 list_for_each_entry_safe(comm, tmp_comm, thread__comm_list(thread), list) { in thread__delete()
201 if (list_empty(thread__comm_list(thread))) in thread__comm()
204 return list_first_entry(thread__comm_list(thread), struct comm, list); in thread__comm()
211 list_for_each_entry(comm, thread__comm_list(thread), list) { in thread__exec_comm()
244 list_add(&new->list, thread__comm_list(thread)); in ____thread__set_comm()
H A Dthread.h235 static inline struct list_head *thread__comm_list(struct thread *thread) in thread__comm_list() function