HomeSort by relevance Sort by last modified time
    Searched defs:hists (Results 1 - 6 of 6) sorted by null

  /external/linux-tools-perf/
builtin-annotate.c 68 he = __hists__add_entry(&evsel->hists, al, NULL, 1);
82 evsel->hists.stats.total_period += sample->period;
83 hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
117 static void hists__find_annotations(struct hists *self, int evidx)
205 struct hists *hists = &pos->hists; local
206 u32 nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE];
210 hists__collapse_resort(hists);
211 hists__output_resort(hists);
    [all...]
builtin-report.c 75 he = __hists__add_entry(&evsel->hists, al, parent, sample->period);
103 evsel->hists.stats.total_period += sample->period;
104 hists__inc_nr_events(&evsel->hists, PERF_RECORD_SAMPLE);
211 static size_t hists__fprintf_nr_sample_events(struct hists *self,
231 struct hists *hists = &pos->hists; local
234 if (rb_first(&hists->entries) != rb_last(&hists->entries))
237 hists__fprintf_nr_sample_events(hists, evname, stdout)
315 struct hists *hists = &pos->hists; local
    [all...]
  /external/linux-tools-perf/util/
hist.h 51 struct hists { struct
61 struct hist_entry *__hists__add_entry(struct hists *self,
66 int hist_entry__fprintf(struct hist_entry *self, struct hists *hists,
67 struct hists *pair_hists, bool show_displacement,
70 struct hists *hists, struct hists *pair_hists,
75 void hists__output_resort(struct hists *self);
76 void hists__collapse_resort(struct hists *self)
    [all...]
evsel.h 65 struct hists hists; member in struct:perf_evsel
session.h 51 struct hists hists; member in struct:perf_session
  /external/linux-tools-perf/util/ui/browsers/
hists.c 24 struct hists *hists; member in struct:hist_browser
32 self->b.width = 3 + (hists__sort_list_width(self->hists) +
38 self->b.nr_entries = self->hists->nr_entries;
190 self->hists->nr_entries -= he->nr_rows;
196 self->hists->nr_entries += he->nr_rows;
197 self->b.nr_entries = self->hists->nr_entries;
272 static void hists__set_folding(struct hists *self, bool unfold)
287 hists__set_folding(self->hists, unfold);
288 self->b.nr_entries = self->hists->nr_entries
    [all...]

Completed in 168 milliseconds