Lines Matching refs:thread_stat

106 struct thread_stat {  struct
115 static struct thread_stat *thread_stat_find(u32 tid) in thread_stat_find() argument
118 struct thread_stat *st; in thread_stat_find()
122 st = container_of(node, struct thread_stat, rb); in thread_stat_find()
134 static void thread_stat_insert(struct thread_stat *new) in thread_stat_insert()
138 struct thread_stat *p; in thread_stat_insert()
141 p = container_of(*rb, struct thread_stat, rb); in thread_stat_insert()
156 static struct thread_stat *thread_stat_findnew_after_first(u32 tid) in thread_stat_findnew_after_first()
158 struct thread_stat *st; in thread_stat_findnew_after_first()
164 st = zalloc(sizeof(struct thread_stat)); in thread_stat_findnew_after_first()
178 static struct thread_stat *thread_stat_findnew_first(u32 tid);
179 static struct thread_stat *(*thread_stat_findnew)(u32 tid) =
182 static struct thread_stat *thread_stat_findnew_first(u32 tid) in thread_stat_findnew_first()
184 struct thread_stat *st; in thread_stat_findnew_first()
186 st = zalloc(sizeof(struct thread_stat)); in thread_stat_findnew_first()
352 static struct lock_seq_stat *get_seq(struct thread_stat *ts, void *addr) in get_seq()
393 struct thread_stat *ts; in report_lock_acquire_event()
466 struct thread_stat *ts; in report_lock_acquired_event()
530 struct thread_stat *ts; in report_lock_contended_event()
585 struct thread_stat *ts; in report_lock_release_event()
755 struct thread_stat *st; in dump_threads()
763 st = container_of(node, struct thread_stat, rb); in dump_threads()