Searched refs:curr_map (Results 1 – 2 of 2) sorted by relevance
/linux-4.4.14/tools/perf/util/ |
D | symbol.c | 655 struct map *curr_map; in dso__split_kallsyms_for_kcore() local 679 curr_map = map_groups__find(kmaps, map->type, pos->start); in dso__split_kallsyms_for_kcore() 681 if (!curr_map || (filter && filter(curr_map, pos))) { in dso__split_kallsyms_for_kcore() 686 pos->start -= curr_map->start - curr_map->pgoff; in dso__split_kallsyms_for_kcore() 688 pos->end -= curr_map->start - curr_map->pgoff; in dso__split_kallsyms_for_kcore() 689 symbols__insert(&curr_map->dso->symbols[curr_map->type], pos); in dso__split_kallsyms_for_kcore() 709 struct map *curr_map = map; in dso__split_kallsyms() local 734 if (strcmp(curr_map->dso->short_name, module)) { in dso__split_kallsyms() 735 if (curr_map != map && in dso__split_kallsyms() 745 dso__set_loaded(curr_map->dso, in dso__split_kallsyms() [all …]
|
D | symbol-elf.c | 787 struct map *curr_map = map; in dso__load_sym() local 1003 curr_map = map; in dso__load_sym() 1014 curr_map = map_groups__find_by_name(kmaps, map->type, dso_name); in dso__load_sym() 1015 if (curr_map == NULL) { in dso__load_sym() 1027 curr_map = map__new2(start, curr_dso, in dso__load_sym() 1029 if (curr_map == NULL) { in dso__load_sym() 1034 curr_map->start = shdr.sh_addr + in dso__load_sym() 1036 curr_map->end = curr_map->start + in dso__load_sym() 1038 curr_map->pgoff = shdr.sh_offset; in dso__load_sym() 1040 curr_map->map_ip = identity__map_ip; in dso__load_sym() [all …]
|