Home
last modified time | relevance | path

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

/freebsd-14.2/libexec/rtld-elf/riscv/
H A Dreloc.c87 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
119 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
120 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
121 res = symlook_obj(&req, srcobj); in do_copy_relocations()
128 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-14.2/libexec/rtld-elf/amd64/
H A Dreloc.c79 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-14.2/libexec/rtld-elf/arm/
H A Dreloc.c46 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
60 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
61 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
62 res = symlook_obj(&req, srcobj); in do_copy_relocations()
69 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-14.2/libexec/rtld-elf/i386/
H A Dreloc.c77 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
89 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
90 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
91 res = symlook_obj(&req, srcobj); in do_copy_relocations()
99 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-14.2/libexec/rtld-elf/aarch64/
H A Dreloc.c68 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
100 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
101 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
102 res = symlook_obj(&req, srcobj); in do_copy_relocations()
109 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-14.2/libexec/rtld-elf/powerpc64/
H A Dreloc.c78 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-14.2/libexec/rtld-elf/powerpc/
H A Dreloc.c83 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
99 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
100 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
101 res = symlook_obj(&req, srcobj); in do_copy_relocations()
109 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-14.2/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c5100 zdb_copy_object(objset_t *os, uint64_t srcobj, char *destfile) in zdb_copy_object() argument
5107 (void) printf("Copying object %" PRIu64 " to file %s\n", srcobj, in zdb_copy_object()
5111 if ((err = sa_handle_get(os, srcobj, NULL, SA_HDL_PRIVATE, &hdl))) { in zdb_copy_object()
5121 (void) printf("Object %" PRIu64 " is %" PRIu64 " bytes\n", srcobj, in zdb_copy_object()
5145 err = dmu_read(os, srcobj, offset, readsize, buf, 0); in zdb_copy_object()