Lines Matching refs:dstobj
69 do_copy_relocations(Obj_Entry *dstobj) in do_copy_relocations() argument
86 assert(dstobj->mainprog); in do_copy_relocations()
88 relalim = (const Elf_Rela *)((const char *)dstobj->rela + in do_copy_relocations()
89 dstobj->relasize); in do_copy_relocations()
90 for (rela = dstobj->rela; rela < relalim; rela++) { in do_copy_relocations()
94 dstaddr = (void *)(dstobj->relocbase + rela->r_offset); in do_copy_relocations()
95 dstsym = dstobj->symtab + ELF_R_SYM(rela->r_info); in do_copy_relocations()
96 name = dstobj->strtab + dstsym->st_name; in do_copy_relocations()
100 req.ventry = fetch_ventry(dstobj, ELF_R_SYM(rela->r_info)); in do_copy_relocations()
103 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
114 "COPY relocation in %s", name, dstobj->path); in do_copy_relocations()