Lines Matching refs:node
131 struct rb_node node;
967 struct rb_node *node = root->rb_root.rb_node;
970 while (node) {
974 atoms = container_of(node, struct work_atoms, node);
978 node = node->rb_left;
980 node = node->rb_right;
1000 this = container_of(*new, struct work_atoms, node);
1013 rb_link_node(&data->node, parent, new);
1014 rb_insert_color_cached(&data->node, root, leftmost);
1465 struct rb_node *node;
1470 node = rb_first_cached(root);
1471 if (!node)
1474 rb_erase_cached(node, root);
1475 data = rb_entry(node, struct work_atoms, node);
2176 struct callchain_cursor_node *node;
2179 node = callchain_cursor_current(cursor);
2180 if (node == NULL)
2183 sym = node->ms.sym;
2762 static size_t callchain__fprintf_folded(FILE *fp, struct callchain_node *node)
2770 if (node == NULL)
2773 ret = callchain__fprintf_folded(fp, node->parent);
2776 list_for_each_entry(chain, &node->val, list) {
2958 list_for_each_entry(evsel, &evlist->core.entries, core.node) {
3125 this = container_of(*new, struct work_atoms, node);
3152 rb_link_node(&data->node, parent, new);
3153 rb_insert_color_cached(&data->node, root, leftmost);
3159 struct rb_node *node;
3164 while ((node = rb_first_cached(&sched->atom_root))) {
3165 rb_erase_cached(node, &sched->atom_root);
3166 data = rb_entry(node, struct work_atoms, node);
3192 work_list = rb_entry(next, struct work_atoms, node);