Home | History | Annotate | Download | only in liblegacy

Lines Matching refs:map

110  * @param map  map to print
113 verb_show_sample(unsigned long offset, struct opd_map * map)
116 "map start 0x%.8lx, end 0x%.8lx, offset 0x%.8lx, name \"%s\"\n",
117 offset, map->start, map->end, map->offset,
118 map->image->name);
173 struct opd_map * map = list_entry(pos, struct opd_map, next);
174 if (opd_is_in_map(map, sample->eip)) {
175 unsigned long offset = opd_map_offset(map, sample->eip);
176 if (map->image != NULL) {
177 verb_show_sample(offset, map);
178 opd_put_image_sample(map->image, offset, sample->counter);
232 verbprintf(vsamples, "Couldn't find map for pid %.6d, EIP 0x%.8lx.\n",
268 struct opd_map * map = list_entry(pos, struct opd_map, next);
270 opd_add_mapping(proc, map->image, map->start,
271 map->offset, map->end);
277 opd_get_image(map->image->name, old->name,
278 map->image->kernel, note->addr, note->len);
279 opd_add_mapping(proc, image, map->start, map->offset,
280 map->end);
295 * the message "Couldn't find map for ..." in verbose mode.
419 struct opd_map * map = list_entry(pos, struct opd_map, next);
420 if (opd_eip_is_kernel(map->start + map->offset)) {
422 opd_delete_image(map->image);
423 free(map);