Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dkern_ctf.c49 caddr_t ctftab = NULL; in link_elf_ctf_get() local
81 lc->ctftab = ef->ctftab; in link_elf_ctf_get()
236 ctftab = malloc(sz, M_LINKER, M_WAITOK); in link_elf_ctf_get()
242 if ((error = vn_rdwr(UIO_READ, nd.ni_vp, raw == NULL ? ctftab : raw, in link_elf_ctf_get()
256 bcopy(&cth, ctftab, sizeof(cth)); in link_elf_ctf_get()
259 ret = uncompress(ctftab + sizeof(cth), &destlen, in link_elf_ctf_get()
272 ef->ctftab = ctftab; in link_elf_ctf_get()
276 ctftab = NULL; in link_elf_ctf_get()
279 lc->ctftab = ef->ctftab; in link_elf_ctf_get()
299 if (ctftab != NULL) in link_elf_ctf_get()
[all …]
H A Dlink_elf_obj.c116 caddr_t ctftab; /* CTF table */ member
1311 free(ef->ctftab, M_LINKER); in link_elf_unload_file()
1334 free(ef->ctftab, M_LINKER); in link_elf_unload_file()
H A Dlink_elf.c109 caddr_t ctftab; /* CTF table */ member
1414 free(ef->ctftab, M_LINKER); in link_elf_unload_file()
/freebsd/sys/cddl/dev/fbt/
H A Dfbt.c367 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in fbt_ctfoff_init()
368 const uint8_t *ctfdata = lc->ctftab + sizeof(ctf_header_t); in fbt_ctfoff_init()
545 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in fbt_typoff_init()
547 const uint8_t *ctfdata = lc->ctftab + sizeof(ctf_header_t); in fbt_typoff_init()
872 tp = (const void *) (lc->ctftab + offset + sizeof(ctf_header_t)); in ctf_lookup_by_id()
880 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in fbt_array_info()
916 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in ctf_strptr()
922 strp = (const char *)(lc->ctftab + hp->cth_stroff + name + sizeof(ctf_header_t)); in ctf_strptr()
930 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in ctf_type_rname()
949 const ctf_header_t *hp = (const ctf_header_t *) lc->ctftab; in ctf_decl_push()
[all …]
/freebsd/sys/ddb/
H A Ddb_ctf.c43 return (const ctf_header_t *)lc->ctftab; in db_ctf_fetch_cth()
290 const uint32_t *)(sd->lc.ctftab + sizeof(ctf_header_t) + objtoff); in db_ctf_sym_to_type()
/freebsd/sys/sys/
H A Dlinker.h324 const uint8_t *ctftab; /* Decompressed CTF data. */ member