Home
last modified time | relevance | path

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

/freebsd-13.1/libexec/rtld-elf/riscv/
H A Dreloc.c89 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
121 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
122 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
123 res = symlook_obj(&req, srcobj); in do_copy_relocations()
130 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-13.1/libexec/rtld-elf/aarch64/
H A Dreloc.c71 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
103 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
104 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
105 res = symlook_obj(&req, srcobj); in do_copy_relocations()
112 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-13.1/libexec/rtld-elf/arm/
H A Dreloc.c87 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
101 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
102 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
103 res = symlook_obj(&req, srcobj); in do_copy_relocations()
110 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-13.1/libexec/rtld-elf/i386/
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-13.1/libexec/rtld-elf/amd64/
H A Dreloc.c80 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
92 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
93 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
94 res = symlook_obj(&req, srcobj); in do_copy_relocations()
102 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-13.1/libexec/rtld-elf/powerpc64/
H A Dreloc.c80 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
96 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
97 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
98 res = symlook_obj(&req, srcobj); in do_copy_relocations()
106 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-13.1/libexec/rtld-elf/powerpc/
H A Dreloc.c85 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
101 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
102 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
103 res = symlook_obj(&req, srcobj); in do_copy_relocations()
111 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-13.1/libexec/rtld-elf/mips/
H A Dreloc.c112 const Obj_Entry *srcobj, *defobj; in do_copy_relocations() local
143 for (srcobj = globallist_next(dstobj); srcobj != NULL; in do_copy_relocations()
144 srcobj = globallist_next(srcobj)) { in do_copy_relocations()
145 res = symlook_obj(&req, srcobj); in do_copy_relocations()
152 if (srcobj == NULL) { in do_copy_relocations()
/freebsd-13.1/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c4625 zdb_copy_object(objset_t *os, uint64_t srcobj, char *destfile) in zdb_copy_object() argument
4632 (void) printf("Copying object %" PRIu64 " to file %s\n", srcobj, in zdb_copy_object()
4636 if ((err = sa_handle_get(os, srcobj, NULL, SA_HDL_PRIVATE, &hdl))) { in zdb_copy_object()
4646 (void) printf("Object %" PRIu64 " is %" PRIu64 " bytes\n", srcobj, in zdb_copy_object()
4667 err = dmu_read(os, srcobj, offset, readsize, buf, 0); in zdb_copy_object()