Lines Matching refs:hpp
314 static int hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp) in hist_entry__snprintf() argument
318 char *start = hpp->buf; in hist_entry__snprintf()
334 ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " "); in hist_entry__snprintf()
335 advance_hpp(hpp, ret); in hist_entry__snprintf()
340 ret = fmt->color(fmt, hpp, he); in hist_entry__snprintf()
342 ret = fmt->entry(fmt, hpp, he); in hist_entry__snprintf()
344 advance_hpp(hpp, ret); in hist_entry__snprintf()
347 return hpp->buf - start; in hist_entry__snprintf()
355 struct perf_hpp hpp = { in hist_entry__fprintf() local
361 size = hpp.size = bfsz; in hist_entry__fprintf()
363 hist_entry__snprintf(he, &hpp); in hist_entry__fprintf()