HomeSort by relevance Sort by last modified time
    Searched full:dso_width (Results 1 - 4 of 4) sorted by null

  /external/linux-tools-perf/util/ui/browsers/
top.c 25 int dso_width; member in struct:perf_top_browser
85 perf_top__find_widths(top, &browser->root, &browser->dso_width,
88 if (browser->sym_width + browser->dso_width > browser->b.width - 29) {
89 browser->dso_width = browser->dso_short_width;
90 if (browser->sym_width + browser->dso_width > browser->b.width - 29)
91 browser->sym_width = browser->b.width - browser->dso_width - 29;
  /external/linux-tools-perf/util/
top.h 61 int *dso_width, int *dso_short_width, int *sym_width);
top.c 214 int *dso_width, int *dso_short_width, int *sym_width)
219 *sym_width = *dso_width = *dso_short_width = 0;
229 if (syme->map->dso->long_name_len > *dso_width)
230 *dso_width = syme->map->dso->long_name_len;
  /external/linux-tools-perf/
builtin-top.c 285 int sym_width, dso_width, dso_short_width; local
308 perf_top__find_widths(&top, &tmp, &dso_width, &dso_short_width,
311 if (sym_width + dso_width > winsize.ws_col - 29) {
312 dso_width = dso_short_width;
313 if (sym_width + dso_width > winsize.ws_col - 29)
314 sym_width = winsize.ws_col - dso_width - 29;
330 printf(" %-*.*s", dso_width, dso_width, graph_line);
355 printf(" %-*.*s\n", dso_width, dso_width,
    [all...]

Completed in 403 milliseconds