Home
last modified time | relevance | path

Searched refs:ctftab (Results 1 – 6 of 6) sorted by relevance

/trueos/sys/kern/
HDkern_ctf.c64 caddr_t ctftab = NULL; in link_elf_ctf_get() local
96 lc->ctftab = ef->ctftab; in link_elf_ctf_get()
242 ctftab = malloc(sz, M_LINKER, M_WAITOK); in link_elf_ctf_get()
248 if ((error = vn_rdwr(UIO_READ, nd.ni_vp, raw == NULL ? ctftab : raw, in link_elf_ctf_get()
262 bcopy(ctf_hdr, ctftab, sizeof(ctf_hdr)); in link_elf_ctf_get()
277 zs.next_out = ((uint8_t *) ctftab) + sizeof(ctf_hdr); in link_elf_ctf_get()
288 ef->ctftab = ctftab; in link_elf_ctf_get()
292 ctftab = NULL; in link_elf_ctf_get()
295 lc->ctftab = ef->ctftab; in link_elf_ctf_get()
315 if (ctftab != NULL) in link_elf_ctf_get()
[all …]
HDlink_elf_obj.c114 caddr_t ctftab; /* CTF table */ member
909 if (ef->ctftab) in link_elf_unload_file()
910 free(ef->ctftab, M_LINKER); in link_elf_unload_file()
947 if (ef->ctftab) in link_elf_unload_file()
948 free(ef->ctftab, M_LINKER); in link_elf_unload_file()
HDlink_elf.c108 caddr_t ctftab; /* CTF table */ member
1102 if (ef->ctftab != NULL) in link_elf_unload_file()
1103 free(ef->ctftab, M_LINKER); in link_elf_unload_file()
/trueos/sys/cddl/dev/fbt/
HDfbt_powerpc.c500 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in fbt_ctfoff_init()
501 const uint8_t *ctfdata = lc->ctftab + sizeof(ctf_header_t); in fbt_ctfoff_init()
600 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in fbt_typoff_init()
604 const uint8_t *ctfdata = lc->ctftab + sizeof(ctf_header_t); in fbt_typoff_init()
927 tp = (const ctf_type_t *)(lc->ctftab + offset + sizeof(ctf_header_t)); in ctf_lookup_by_id()
935 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in fbt_array_info()
959 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab;; in ctf_strptr()
965 strp = (const char *)(lc->ctftab + hp->cth_stroff + name + sizeof(ctf_header_t)); in ctf_strptr()
1219 dp = (const ushort_t *)(lc.ctftab + offset + sizeof(ctf_header_t)); in fbt_getargdesc()
HDfbt.c570 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in fbt_ctfoff_init()
571 const uint8_t *ctfdata = lc->ctftab + sizeof(ctf_header_t); in fbt_ctfoff_init()
670 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in fbt_typoff_init()
674 const uint8_t *ctfdata = lc->ctftab + sizeof(ctf_header_t); in fbt_typoff_init()
997 tp = (const ctf_type_t *)(lc->ctftab + offset + sizeof(ctf_header_t)); in ctf_lookup_by_id()
1005 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in fbt_array_info()
1029 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab;; in ctf_strptr()
1035 strp = (const char *)(lc->ctftab + hp->cth_stroff + name + sizeof(ctf_header_t)); in ctf_strptr()
1289 dp = (const ushort_t *)(lc.ctftab + offset + sizeof(ctf_header_t)); in fbt_getargdesc()
/trueos/sys/sys/
HDlinker.h272 const uint8_t *ctftab; /* Decompressed CTF data. */ member