Lines Matching refs:node
77 struct callchain_node node;
147 /* Indicate valid cursor node for LBR stitch */
159 struct list_head node;
175 INIT_LIST_HEAD(&root->node.val);
176 INIT_LIST_HEAD(&root->node.parent_val);
178 root->node.parent = NULL;
179 root->node.hit = 0;
180 root->node.children_hit = 0;
181 root->node.rb_root_in = RB_ROOT;
185 static inline u64 callchain_cumul_hits(struct callchain_node *node)
187 return node->hit + node->children_hit;
190 static inline unsigned callchain_cumul_counts(struct callchain_node *node)
192 return node->count + node->children_count;
254 int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node,
285 char *callchain_node__scnprintf_value(struct callchain_node *node,
287 int callchain_node__fprintf_value(struct callchain_node *node,
295 int callchain_node__make_parent_list(struct callchain_node *node);