Lines Matching refs:old_list
48 move_cached_elf_data (struct map_info *old_list, struct map_info *new_list) in move_cached_elf_data() argument
50 while (old_list) in move_cached_elf_data()
52 if (!old_list->ei.valid) in move_cached_elf_data()
54 old_list = old_list->next; in move_cached_elf_data()
61 while (new_list && old_list->start <= new_list->start) in move_cached_elf_data()
63 if (old_list->start == new_list->start in move_cached_elf_data()
64 && old_list->end == new_list->end) in move_cached_elf_data()
68 new_list->ei = old_list->ei; in move_cached_elf_data()
70 old_list->ei.mapped = false; in move_cached_elf_data()
72 old_list->ei.mini_debug_info_data = NULL; in move_cached_elf_data()
73 old_list->ei.mini_debug_info_size = 0; in move_cached_elf_data()
80 old_list = old_list->next; in move_cached_elf_data()