Lines Matching refs:node
77 struct callchain_node node;
147 /* Indicate valid cursor node for LBR stitch */
159 struct list_head node;
173 INIT_LIST_HEAD(&root->node.val);
174 INIT_LIST_HEAD(&root->node.parent_val);
176 root->node.parent = NULL;
177 root->node.hit = 0;
178 root->node.children_hit = 0;
179 root->node.rb_root_in = RB_ROOT;
183 static inline u64 callchain_cumul_hits(struct callchain_node *node)
185 return node->hit + node->children_hit;
188 static inline unsigned callchain_cumul_counts(struct callchain_node *node)
190 return node->count + node->children_count;
256 int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node,
289 char *callchain_node__scnprintf_value(struct callchain_node *node,
291 int callchain_node__fprintf_value(struct callchain_node *node,
299 int callchain_node__make_parent_list(struct callchain_node *node);