Lines Matching refs:thread_stat

86 static struct thread_stat *thread_stat_find(u32 tid)  in thread_stat_find()
89 struct thread_stat *st; in thread_stat_find()
93 st = container_of(node, struct thread_stat, rb); in thread_stat_find()
105 static void thread_stat_insert(struct thread_stat *new) in thread_stat_insert()
109 struct thread_stat *p; in thread_stat_insert()
112 p = container_of(*rb, struct thread_stat, rb); in thread_stat_insert()
127 static struct thread_stat *thread_stat_findnew_after_first(u32 tid) in thread_stat_findnew_after_first()
129 struct thread_stat *st; in thread_stat_findnew_after_first()
135 st = zalloc(sizeof(struct thread_stat)); in thread_stat_findnew_after_first()
149 static struct thread_stat *thread_stat_findnew_first(u32 tid);
150 static struct thread_stat *(*thread_stat_findnew)(u32 tid) =
153 static struct thread_stat *thread_stat_findnew_first(u32 tid) in thread_stat_findnew_first()
155 struct thread_stat *st; in thread_stat_findnew_first()
157 st = zalloc(sizeof(struct thread_stat)); in thread_stat_findnew_first()
576 static struct lock_seq_stat *get_seq(struct thread_stat *ts, u64 addr) in get_seq()
645 struct thread_stat *ts; in report_lock_acquire_event()
720 struct thread_stat *ts; in report_lock_acquired_event()
786 struct thread_stat *ts; in report_lock_contended_event()
844 struct thread_stat *ts; in report_lock_release_event()
1045 struct thread_stat *ts; in report_lock_contention_begin_event()
1208 struct thread_stat *ts; in report_lock_contention_end_event()
1414 struct thread_stat *st; in dump_threads()
1422 st = container_of(node, struct thread_stat, rb); in dump_threads()