Home
last modified time | relevance | path

Searched refs:srcobj (Results 1 – 8 of 8) sorted by relevance

/freebsd/libexec/rtld-elf/riscv/
H A Dreloc.c86 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
118 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
119 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
120 res = symlook_obj(&req, srcobj); in do_copy_relocations()
127 if (srcobj == NULL) { in do_copy_relocations()
/freebsd/libexec/rtld-elf/arm/
H A Dreloc.c45 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
59 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
60 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
61 res = symlook_obj(&req, srcobj); in do_copy_relocations()
68 if (srcobj == NULL) { in do_copy_relocations()
/freebsd/libexec/rtld-elf/amd64/
H A Dreloc.c81 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
94 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
95 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
96 res = symlook_obj(&req, srcobj); in do_copy_relocations()
104 if (srcobj == NULL) { in do_copy_relocations()
/freebsd/libexec/rtld-elf/i386/
H A Dreloc.c78 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
91 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
92 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
93 res = symlook_obj(&req, srcobj); in do_copy_relocations()
101 if (srcobj == NULL) { in do_copy_relocations()
/freebsd/libexec/rtld-elf/aarch64/
H A Dreloc.c125 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
157 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
158 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
159 res = symlook_obj(&req, srcobj); in do_copy_relocations()
166 if (srcobj == NULL) { in do_copy_relocations()
/freebsd/libexec/rtld-elf/powerpc64/
H A Dreloc.c89 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
105 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
106 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
107 res = symlook_obj(&req, srcobj); in do_copy_relocations()
115 if (srcobj == NULL) { in do_copy_relocations()
/freebsd/libexec/rtld-elf/powerpc/
H A Dreloc.c94 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
110 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
111 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
112 res = symlook_obj(&req, srcobj); in do_copy_relocations()
120 if (srcobj == NULL) { in do_copy_relocations()
/freebsd/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c5210 zdb_copy_object(objset_t *os, uint64_t srcobj, char *destfile) in zdb_copy_object() argument
5217 (void) printf("Copying object %" PRIu64 " to file %s\n", srcobj, in zdb_copy_object()
5221 if ((err = sa_handle_get(os, srcobj, NULL, SA_HDL_PRIVATE, &hdl))) { in zdb_copy_object()
5231 (void) printf("Object %" PRIu64 " is %" PRIu64 " bytes\n", srcobj, in zdb_copy_object()
5255 err = dmu_read(os, srcobj, offset, readsize, buf, 0); in zdb_copy_object()