Home
last modified time | relevance | path

Searched refs:sort_entry (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/tools/perf/util/
Dsort.h37 extern struct sort_entry sort_comm;
38 extern struct sort_entry sort_dso;
39 extern struct sort_entry sort_sym;
40 extern struct sort_entry sort_parent;
41 extern struct sort_entry sort_dso_from;
42 extern struct sort_entry sort_dso_to;
43 extern struct sort_entry sort_sym_from;
44 extern struct sort_entry sort_sym_to;
45 extern struct sort_entry sort_srcline;
263 struct sort_entry { struct
[all …]
Dsort.c104 struct sort_entry sort_thread = {
143 struct sort_entry sort_comm = {
209 struct sort_entry sort_dso = {
323 struct sort_entry sort_sym = {
359 struct sort_entry sort_srcline = {
391 struct sort_entry sort_srcline_from = {
418 struct sort_entry sort_srcline_to = {
470 struct sort_entry sort_srcfile = {
498 struct sort_entry sort_parent = {
519 struct sort_entry sort_cpu = {
[all …]
/Linux-v4.19/kernel/trace/
Dtracing_map.c937 struct tracing_map_sort_entry *sort_entry; in create_sort_entry() local
939 sort_entry = kzalloc(sizeof(*sort_entry), GFP_KERNEL); in create_sort_entry()
940 if (!sort_entry) in create_sort_entry()
943 sort_entry->key = key; in create_sort_entry()
944 sort_entry->elt = elt; in create_sort_entry()
946 return sort_entry; in create_sort_entry()
1066 struct tracing_map_sort_entry *sort_entry, **entries; in tracing_map_sort_entries() local
1069 entries = vmalloc(array_size(sizeof(sort_entry), map->max_elts)); in tracing_map_sort_entries()
/Linux-v4.19/tools/perf/
Dbuiltin-c2c.c389 struct sort_entry *se;
409 static int symbol_width(struct hists *hists, struct sort_entry *se) in symbol_width()