Home | History | Annotate | Download | only in browsers

Lines Matching refs:unfold

63 static void map_symbol__set_folding(struct map_symbol *self, bool unfold)
65 self->unfolded = unfold ? self->has_children : false;
206 static int callchain_node__set_folding_rb_tree(struct callchain_node *self, bool unfold)
218 map_symbol__set_folding(&chain->ms, unfold);
223 n += callchain_node__set_folding_rb_tree(child, unfold);
229 static int callchain_node__set_folding(struct callchain_node *node, bool unfold)
237 map_symbol__set_folding(&chain->ms, unfold);
242 n += callchain_node__set_folding_rb_tree(node, unfold);
247 static int callchain__set_folding(struct rb_root *chain, bool unfold)
254 n += callchain_node__set_folding(node, unfold);
260 static void hist_entry__set_folding(struct hist_entry *self, bool unfold)
263 map_symbol__set_folding(&self->ms, unfold);
266 int n = callchain__set_folding(&self->sorted_chain, unfold);
267 self->nr_rows = unfold ? n : 0;
272 static void hists__set_folding(struct hists *self, bool unfold)
280 hist_entry__set_folding(he, unfold);
285 static void hist_browser__set_folding(struct hist_browser *self, bool unfold)
287 hists__set_folding(self->hists, unfold);