|
@@ -1,5 +1,4 @@
|
|
|
#include <stdio.h>
|
|
|
-#include "../libslang.h"
|
|
|
#include <stdlib.h>
|
|
|
#include <string.h>
|
|
|
#include <linux/rbtree.h>
|
|
@@ -541,7 +540,7 @@ static void hist_browser__show_callchain_entry(struct hist_browser *browser,
|
|
|
ui_browser__set_color(&browser->b, color);
|
|
|
hist_browser__gotorc(browser, row, 0);
|
|
|
ui_browser__write_nstring(&browser->b, " ", offset);
|
|
|
- slsmg_printf("%c", folded_sign);
|
|
|
+ ui_browser__printf(&browser->b, "%c", folded_sign);
|
|
|
ui_browser__write_graph(&browser->b, show_annotated ? SLSMG_RARROW_CHAR : ' ');
|
|
|
ui_browser__write_nstring(&browser->b, str, width);
|
|
|
}
|
|
@@ -680,7 +679,7 @@ static int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt, ...)
|
|
|
ui_browser__set_percent_color(arg->b, percent, arg->current_entry);
|
|
|
|
|
|
ret = scnprintf(hpp->buf, hpp->size, fmt, len, percent);
|
|
|
- slsmg_printf("%s", hpp->buf);
|
|
|
+ ui_browser__printf(arg->b, "%s", hpp->buf);
|
|
|
|
|
|
advance_hpp(hpp, ret);
|
|
|
return ret;
|
|
@@ -713,10 +712,11 @@ hist_browser__hpp_color_##_type(struct perf_hpp_fmt *fmt, \
|
|
|
struct hist_entry *he) \
|
|
|
{ \
|
|
|
if (!symbol_conf.cumulate_callchain) { \
|
|
|
+ struct hpp_arg *arg = hpp->ptr; \
|
|
|
int len = fmt->user_len ?: fmt->len; \
|
|
|
int ret = scnprintf(hpp->buf, hpp->size, \
|
|
|
"%*s", len, "N/A"); \
|
|
|
- slsmg_printf("%s", hpp->buf); \
|
|
|
+ ui_browser__printf(arg->b, "%s", hpp->buf); \
|
|
|
\
|
|
|
return ret; \
|
|
|
} \
|
|
@@ -801,12 +801,12 @@ static int hist_browser__show_entry(struct hist_browser *browser,
|
|
|
|
|
|
if (first) {
|
|
|
if (symbol_conf.use_callchain) {
|
|
|
- slsmg_printf("%c ", folded_sign);
|
|
|
+ ui_browser__printf(&browser->b, "%c ", folded_sign);
|
|
|
width -= 2;
|
|
|
}
|
|
|
first = false;
|
|
|
} else {
|
|
|
- slsmg_printf(" ");
|
|
|
+ ui_browser__printf(&browser->b, " ");
|
|
|
width -= 2;
|
|
|
}
|
|
|
|
|
@@ -814,7 +814,7 @@ static int hist_browser__show_entry(struct hist_browser *browser,
|
|
|
width -= fmt->color(fmt, &hpp, entry);
|
|
|
} else {
|
|
|
width -= fmt->entry(fmt, &hpp, entry);
|
|
|
- slsmg_printf("%s", s);
|
|
|
+ ui_browser__printf(&browser->b, "%s", s);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2044,7 +2044,7 @@ static void perf_evsel_menu__write(struct ui_browser *browser,
|
|
|
nr_events = convert_unit(nr_events, &unit);
|
|
|
printed = scnprintf(bf, sizeof(bf), "%lu%c%s%s", nr_events,
|
|
|
unit, unit == ' ' ? "" : " ", ev_name);
|
|
|
- slsmg_printf("%s", bf);
|
|
|
+ ui_browser__printf(browser, "%s", bf);
|
|
|
|
|
|
nr_events = hists->stats.nr_events[PERF_RECORD_LOST];
|
|
|
if (nr_events != 0) {
|