Lines Matching refs:dstobj
64 do_copy_relocations(Obj_Entry *dstobj) in do_copy_relocations() argument
69 assert(dstobj->mainprog); /* COPY relocations are invalid elsewhere */ in do_copy_relocations()
71 relalim = (const Elf_Rela *)((const char *)dstobj->rela + in do_copy_relocations()
72 dstobj->relasize); in do_copy_relocations()
73 for (rela = dstobj->rela; rela < relalim; rela++) { in do_copy_relocations()
85 dstaddr = (void *)(dstobj->relocbase + rela->r_offset); in do_copy_relocations()
86 dstsym = dstobj->symtab + ELF_R_SYM(rela->r_info); in do_copy_relocations()
87 name = dstobj->strtab + dstsym->st_name; in do_copy_relocations()
90 req.ventry = fetch_ventry(dstobj, in do_copy_relocations()
94 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
107 name, dstobj->path); in do_copy_relocations()