Lines Matching defs:curr_map
1374 struct map *curr_map;
1430 curr_map = maps__find_by_name(kmaps, dso_name);
1431 if (curr_map == NULL) {
1445 curr_map = map__new2(start, curr_dso);
1447 if (curr_map == NULL)
1451 map__kmap(curr_map)->kmaps = kmaps;
1454 map__set_start(curr_map, shdr->sh_addr + ref_reloc(kmap));
1455 map__set_end(curr_map, map__start(curr_map) + shdr->sh_size);
1456 map__set_pgoff(curr_map, shdr->sh_offset);
1458 map__set_map_ip(curr_map, identity__map_ip);
1459 map__set_unmap_ip(curr_map, identity__map_ip);
1462 if (maps__insert(kmaps, curr_map))
1465 * Add it before we drop the reference to curr_map, i.e. while
1467 * *curr_map->dso.
1471 map__put(curr_map);
1473 *curr_mapp = curr_map;
1476 *curr_dsop = map__dso(curr_map);
1487 struct map *curr_map = map;
1675 if (dso__process_kernel_symbol(dso, map, &sym, &shdr, kmaps, kmap, &curr_dso, &curr_map,