Lines Matching refs:map
309 link_map* map = &(info->link_map_head);
311 map->l_addr = info->load_bias;
313 map->l_name = const_cast<char*>(info->get_realpath());
314 map->l_ld = info->dynamic;
316 CHECK(map->l_name != nullptr);
317 CHECK(map->l_name[0] != '\0');
319 notify_gdb_of_load(map);
4103 * Set the dynamic field in the link map otherwise gdb will complain with
4210 /* bootstrap the link map, the main exe always needs to be first */
4212 link_map* map = &(si->link_map_head);
4217 map->l_addr = 0;
4218 map->l_name = const_cast<char*>(executable_path);
4219 insert_link_map_into_debug_map(map);
4305 * For so lib, the map->l_addr will be updated in notify_gdb_of_load.
4309 map->l_addr = si->load_bias;