Home
last modified time | relevance | path

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

/external/linux-tools-perf/util/
Dtrace-event-parse.c128 } *func_list; variable
146 struct func_list { in parse_proc_kallsyms() struct
147 struct func_list *next; in parse_proc_kallsyms() argument
182 func_list = malloc_or_die(sizeof(*func_list) * (func_count + 1)); in parse_proc_kallsyms()
186 func_list[i].func = list->func; in parse_proc_kallsyms()
187 func_list[i].addr = list->addr; in parse_proc_kallsyms()
188 func_list[i].mod = list->mod; in parse_proc_kallsyms()
195 qsort(func_list, func_count, sizeof(*func_list), func_cmp); in parse_proc_kallsyms()
200 func_list[func_count].func = NULL; in parse_proc_kallsyms()
201 func_list[func_count].addr = 0; in parse_proc_kallsyms()
[all …]