Home | History | Annotate | Download | only in linux-tools-perf

Lines Matching refs:sort

440 	struct sort_dimension *sort;
449 list_for_each_entry(sort, sort_list, list) {
450 cmp = sort->cmp(data, this);
621 struct sort_dimension *sort;
626 sort = malloc(sizeof(*sort));
627 if (!sort)
629 memcpy(sort, avail_sorts[i], sizeof(*sort));
630 list_add_tail(&sort->list, list);
651 error("Unknown --sort key: '%s'", tok);
715 OPT_CALLBACK('s', "sort", NULL, "key[,key2...]",
716 "sort by keys: ptr, call_site, bytes, hit, pingpong, frag",