Home
last modified time | relevance | path

Searched refs:dm_elf (Results 1 – 2 of 2) sorted by relevance

/NextBSD/cddl/contrib/opensolaris/lib/libdtrace/common/
HDdt_module.c97 gelf_getehdr(dmp->dm_elf, &ehdr); in dt_module_syminit32()
147 gelf_getehdr(dmp->dm_elf, &ehdr); in dt_module_syminit64()
571 if (elf_getshdrstrndx(dmp->dm_elf, &shstrs) == -1) in dt_module_load_sect()
574 for (sp = NULL; (sp = elf_nextscn(dmp->dm_elf, sp)) != NULL; ) { in dt_module_load_sect()
576 (s = elf_strptr(dmp->dm_elf, shstrs, sh.sh_name)) == NULL) in dt_module_load_sect()
1006 (void) elf_end(dmp->dm_elf); in dt_module_unload()
1007 dmp->dm_elf = NULL; in dt_module_unload()
1186 dmp->dm_elf = elf_begin(fd, ELF_C_READ, NULL); in dt_module_update()
1187 err = elf_cntl(dmp->dm_elf, ELF_C_FDREAD); in dt_module_update()
1190 if (dmp->dm_elf == NULL || err == -1 || in dt_module_update()
[all …]
HDdt_impl.h122 Elf *dm_elf; /* libelf handle for module object */ member