Lines Matching refs:scope
35 elf_machine_rel (struct link_map *map, struct r_scope_elem *scope[],
45 elf_machine_rela (struct link_map *map, struct r_scope_elem *scope[],
55 elf_machine_lazy_rel (struct link_map *map, struct r_scope_elem *scope[],
60 elf_machine_lazy_rel (struct link_map *map, struct r_scope_elem *scope[],
81 # define _ELF_DYNAMIC_DO_RELOC(RELOC, reloc, map, scope, do_lazy, skip_ifunc, test_rel) \ argument
118 elf_dynamic_do_##reloc ((map), scope, \
134 # define ELF_DYNAMIC_DO_REL(map, scope, lazy, skip_ifunc) \ argument
135 _ELF_DYNAMIC_DO_RELOC (REL, Rel, map, scope, lazy, skip_ifunc, _ELF_CHECK_REL)
137 # define ELF_DYNAMIC_DO_REL(map, scope, lazy, skip_ifunc) /* Nothing to do. */ argument
143 # define ELF_DYNAMIC_DO_RELA(map, scope, lazy, skip_ifunc) \ argument
144 _ELF_DYNAMIC_DO_RELOC (RELA, Rela, map, scope, lazy, skip_ifunc, _ELF_CHECK_REL)
146 # define ELF_DYNAMIC_DO_RELA(map, scope, lazy, skip_ifunc) /* Nothing to do. */ argument
151 # define ELF_DYNAMIC_RELOCATE(map, scope, lazy, consider_profile, skip_ifunc) \ argument
153 int edr_lazy = elf_machine_runtime_setup ((map), (scope), (lazy), \
155 ELF_DYNAMIC_DO_REL ((map), (scope), edr_lazy, skip_ifunc); \
156 ELF_DYNAMIC_DO_RELA ((map), (scope), edr_lazy, skip_ifunc); \