Lines Matching refs:node
132 struct rb_node node;
989 struct rb_node *node = root->rb_root.rb_node;
992 while (node) {
996 atoms = container_of(node, struct work_atoms, node);
1000 node = node->rb_left;
1002 node = node->rb_right;
1022 this = container_of(*new, struct work_atoms, node);
1035 rb_link_node(&data->node, parent, new);
1036 rb_insert_color_cached(&data->node, root, leftmost);
1494 struct rb_node *node;
1499 node = rb_first_cached(root);
1500 if (!node)
1503 rb_erase_cached(node, root);
1504 data = rb_entry(node, struct work_atoms, node);
2225 struct callchain_cursor_node *node;
2228 node = callchain_cursor_current(cursor);
2229 if (node == NULL)
2232 sym = node->ms.sym;
2803 static size_t callchain__fprintf_folded(FILE *fp, struct callchain_node *node)
2811 if (node == NULL)
2814 ret = callchain__fprintf_folded(fp, node->parent);
2817 list_for_each_entry(chain, &node->val, list) {
2996 list_for_each_entry(evsel, &evlist->core.entries, core.node) {
3161 this = container_of(*new, struct work_atoms, node);
3188 rb_link_node(&data->node, parent, new);
3189 rb_insert_color_cached(&data->node, root, leftmost);
3195 struct rb_node *node;
3200 while ((node = rb_first_cached(&sched->atom_root))) {
3201 rb_erase_cached(node, &sched->atom_root);
3202 data = rb_entry(node, struct work_atoms, node);
3228 work_list = rb_entry(next, struct work_atoms, node);