Lines Matching refs:nd
176 struct rb_node *nd; in machine__delete_threads() local
182 nd = rb_first(&threads->entries); in machine__delete_threads()
183 while (nd) { in machine__delete_threads()
184 struct thread *t = rb_entry(nd, struct thread, rb_node); in machine__delete_threads()
186 nd = rb_next(nd); in machine__delete_threads()
266 struct rb_node *nd; in machines__set_comm_exec() local
270 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) { in machines__set_comm_exec()
271 struct machine *machine = rb_entry(nd, struct machine, rb_node); in machines__set_comm_exec()
340 struct rb_node *nd; in machines__process_guests() local
342 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) { in machines__process_guests()
343 struct machine *pos = rb_entry(nd, struct machine, rb_node); in machines__process_guests()
744 struct rb_node *nd; in machines__fprintf_dsos() local
747 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) { in machines__fprintf_dsos()
748 struct machine *pos = rb_entry(nd, struct machine, rb_node); in machines__fprintf_dsos()
764 struct rb_node *nd; in machines__fprintf_dsos_buildid() local
767 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) { in machines__fprintf_dsos_buildid()
768 struct machine *pos = rb_entry(nd, struct machine, rb_node); in machines__fprintf_dsos_buildid()
796 struct rb_node *nd; in machine__fprintf() local
807 for (nd = rb_first(&threads->entries); nd; nd = rb_next(nd)) { in machine__fprintf()
808 struct thread *pos = rb_entry(nd, struct thread, rb_node); in machine__fprintf()
2399 struct rb_node *nd; in machine__for_each_thread() local
2406 for (nd = rb_first(&threads->entries); nd; nd = rb_next(nd)) { in machine__for_each_thread()
2407 thread = rb_entry(nd, struct thread, rb_node); in machine__for_each_thread()
2426 struct rb_node *nd; in machines__for_each_thread() local
2433 for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) { in machines__for_each_thread()
2434 struct machine *machine = rb_entry(nd, struct machine, rb_node); in machines__for_each_thread()