Home | History | Annotate | Download | only in src

Lines Matching defs:new_list

48 move_cached_elf_data (struct map_info *old_list, struct map_info *new_list)
58 from the beginning of new_list each time looking for a match to
60 in new_list we checked. */
61 while (new_list && old_list->start <= new_list->start)
63 if (old_list->start == new_list->start
64 && old_list->end == new_list->end)
68 new_list->ei = old_list->ei;
78 new_list = new_list->next;
94 struct map_info *new_list;
98 new_list = map_create_list (UNW_MAP_CREATE_LOCAL, getpid());
99 map = map_find_from_addr (new_list, addr);
107 is that new_list is newer than local_map_list because the map only
115 move_cached_elf_data (local_map_list, new_list);
117 local_map_list = new_list;
118 new_list = map;
124 map_destroy_list (new_list);