Lines Matching defs:thread_stat
114 struct thread_stat {
123 static struct thread_stat *thread_stat_find(u32 tid)
126 struct thread_stat *st;
130 st = container_of(node, struct thread_stat, rb);
142 static void thread_stat_insert(struct thread_stat *new)
146 struct thread_stat *p;
149 p = container_of(*rb, struct thread_stat, rb);
157 BUG_ON("inserting invalid thread_stat\n");
164 static struct thread_stat *thread_stat_findnew_after_first(u32 tid)
166 struct thread_stat *st;
172 st = zalloc(sizeof(struct thread_stat));
186 static struct thread_stat *thread_stat_findnew_first(u32 tid);
187 static struct thread_stat *(*thread_stat_findnew)(u32 tid) =
190 static struct thread_stat *thread_stat_findnew_first(u32 tid)
192 struct thread_stat *st;
194 st = zalloc(sizeof(struct thread_stat));
364 static struct lock_seq_stat *get_seq(struct thread_stat *ts, void *addr)
405 struct thread_stat *ts;
477 struct thread_stat *ts;
540 struct thread_stat *ts;
595 struct thread_stat *ts;
761 struct thread_stat *st;
769 st = container_of(node, struct thread_stat, rb);