Lines Matching refs:sb
4277 static void add_key(struct strbuf *sb, const char *str, int *llen) in add_key() argument
4283 strbuf_addstr(sb, "\n\t\t\t "); in add_key()
4286 strbuf_addf(sb, " %s", str); in add_key()
4290 static void add_sort_string(struct strbuf *sb, struct sort_dimension *s, int n, in add_sort_string() argument
4296 add_key(sb, s[i].name, llen); in add_sort_string()
4299 static void add_hpp_sort_string(struct strbuf *sb, struct hpp_dimension *s, int n, in add_hpp_sort_string() argument
4305 add_key(sb, s[i].name, llen); in add_hpp_sort_string()
4310 struct strbuf sb; in sort_help() local
4314 strbuf_init(&sb, 300); in sort_help()
4315 strbuf_addstr(&sb, prefix); in sort_help()
4316 add_hpp_sort_string(&sb, hpp_sort_dimensions, in sort_help()
4318 add_sort_string(&sb, common_sort_dimensions, in sort_help()
4321 add_sort_string(&sb, bstack_sort_dimensions, in sort_help()
4324 add_sort_string(&sb, memory_sort_dimensions, in sort_help()
4326 s = strbuf_detach(&sb, NULL); in sort_help()
4327 strbuf_release(&sb); in sort_help()