Searched defs:ctf (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/mail/
H A Dcopymt.c52 int ctf = FALSE; /* header continuation flag */ local
70 } else if ((hdr = isheader (line, &ctf)) == FALSE) {
71 ctf = FALSE; /* next line can't be cont. */
95 ctf = FALSE;
96 hdr = isheader(line, &ctf);
H A Dcopylet.c86 int ctf = FALSE; local
120 htype = isheader (buf, &ctf);
300 htype = isheader (buf, &ctf);
H A Dsendmail.c49 int ctf = FALSE; local
171 if ((hdrtyp = isheader(line, &ctf)) == FALSE) {
/illumos-gate/usr/src/tools/ctf/stabs/common/
H A Dctfstabs.c89 ctf_file_t *ctf; variable
166 if ((id = ctf_lookup_by_name(ctf, name)) != CTF_ERR)
170 if ((id = ctf_lookup_by_name(ctf, fullname)) != CTF_ERR)
174 if ((id = ctf_lookup_by_name(ctf, fullname)) != CTF_ERR)
178 if ((id = ctf_lookup_by_name(ctf, fullname)) != CTF_ERR)
215 get_model(ctf_file_t *ctf) argument
221 if ((lid = ctf_lookup_by_name(ctf, "long")) == CTF_ERR ||
222 (lsz = ctf_type_size(ctf, lid)) == CTF_ERR)
280 if ((ctf = ctf_open(objfile, &ctferr)) == NULL) {
286 model = get_model(ctf);
[all...]
/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_lib.c202 ctf_preamble_t ctf; member in union:__anon3098
210 bzero(&hdr.ctf, sizeof (hdr));
215 if ((nbytes = pread64(fd, &hdr.ctf, sizeof (hdr), 0)) <= 0)
223 hdr.ctf.ctp_magic == CTF_MAGIC) {
224 if (hdr.ctf.ctp_version > CTF_VERSION)
/illumos-gate/usr/src/cmd/sgs/elfdump/common/
H A Dgen_struct_layout.c101 static ctf_file_t *ctf; variable
693 if ((ctf = ctf_open(objfile, &ctferr)) == NULL) {
736 if ((stype = ctf_lookup_by_name(ctf, rtname)) == CTF_ERR)
738 if ((stype = ctf_type_resolve(ctf, stype)) == CTF_ERR)
741 if ((sz = (int)ctf_type_size(ctf, stype)) < 0) {
760 if ((ftype = ctf_type_resolve(ctf, ftype)) == CTF_ERR)
763 if ((sz = (int)ctf_type_size(ctf, ftype)) < 0) {
785 if ((ftype = ctf_type_resolve(ctf, ftype)) == CTF_ERR)
788 typekind = ctf_type_kind(ctf, ftype);
792 rc = ctf_array_info(ctf, ftyp
[all...]
/illumos-gate/usr/src/lib/libproc/common/
H A DPsymtab.c750 dprintf("failed to allocate ctf buffer\n");
759 dprintf("failed to read ctf data\n");
1590 } *cp, *cache = NULL, *dyn = NULL, *plt = NULL, *ctf = NULL; local
1815 ctf = cp;
1842 if (ctf != NULL) {
1843 fptr->file_ctf_off = ctf->c_shdr.sh_offset;
1844 fptr->file_ctf_size = ctf->c_shdr.sh_size;
1845 if (ctf->c_shdr.sh_link != 0 &&
1846 cache[ctf->c_shdr.sh_link].c_shdr.sh_type == SHT_DYNSYM)

Completed in 77 milliseconds