/titanic_44/usr/src/tools/ctf/stabs/common/ |
H A D | ctfstabs.c | 89 ctf_file_t *ctf; variable 166 if ((id = ctf_lookup_by_name(ctf, name)) != CTF_ERR) in find_type() 170 if ((id = ctf_lookup_by_name(ctf, fullname)) != CTF_ERR) in find_type() 174 if ((id = ctf_lookup_by_name(ctf, fullname)) != CTF_ERR) in find_type() 178 if ((id = ctf_lookup_by_name(ctf, fullname)) != CTF_ERR) in find_type() 215 get_model(ctf_file_t *ctf) in get_model() argument 221 if ((lid = ctf_lookup_by_name(ctf, "long")) == CTF_ERR || in get_model() 222 (lsz = ctf_type_size(ctf, lid)) == CTF_ERR) in get_model() 280 if ((ctf = ctf_open(objfile, &ctferr)) == NULL) { in main() 286 model = get_model(ctf); in main() [all …]
|
H A D | forth.c | 169 return (ctf_member_iter(ctf, tid, find_member_cb, memname)); in find_member() 199 (tid = ctf_type_resolve(ctf, tid)) == CTF_ERR || in fth_section_init() 200 (kind = ctf_type_kind(ctf, tid)) == CTF_ERR) { in fth_section_init() 203 part, ctf_errmsg(ctf_errno(ctf)))); in fth_section_init() 219 if ((kind = ctf_type_kind(ctf, tid)) == CTF_ERR) { in fth_section_init()
|
H A D | fth_struct.c | 166 if ((sz = ctf_type_size(ctf, fth_str_curtid)) == CTF_ERR) in fth_struct_header() 313 if (ctf_array_info(ctf, tid, &ar) == CTF_ERR) { in fth_print_array() 342 if ((tid = ctf_type_resolve(ctf, mem->fsm_tid)) == CTF_ERR) { in fth_print_member() 347 if ((kind = ctf_type_kind(ctf, tid)) == CTF_ERR) { in fth_print_member() 352 if ((sz = ctf_type_size(ctf, tid)) == CTF_ERR) { in fth_print_member() 359 if (ctf_type_encoding(ctf, tid, &e) == CTF_ERR) in fth_print_member() 441 if (ctf_member_iter(ctf, fth_str_curtid, fth_struct_members_cb, in fth_struct_members()
|
H A D | genassym.c | 169 if ((sz = ctf_type_size(ctf, curtype)) < 0) { in ga_process_name() 253 if ((type = ctf_type_resolve(ctf, type)) == CTF_ERR) in ga_member_cb() 256 if (ctf_array_info(ctf, type, &arinfo) == 0) { in ga_member_cb() 259 if ((sz = ctf_type_size(ctf, arinfo.ctr_contents)) < 0) in ga_member_cb() 278 if ((rc = ctf_member_iter(ctf, curtype, ga_member_cb, md)) == 0) { in ga_member_find()
|
H A D | ctfstabs.h | 69 extern ctf_file_t *ctf; /* the input object file */
|
H A D | fth_enum.c | 75 if (ctf_enum_iter(ctf, fth_enum_curtid, fth_enum_cb, NULL) != 0) in fth_enum_trailer()
|
/titanic_44/usr/src/cmd/sgs/elfdump/common/ |
H A D | gen_struct_layout.c | 101 static ctf_file_t *ctf; variable 681 if ((ctf = ctf_open(objfile, &ctferr)) == NULL) { in get_ctf_file() 724 if ((stype = ctf_lookup_by_name(ctf, rtname)) == CTF_ERR) in do_start_sizeof() 726 if ((stype = ctf_type_resolve(ctf, stype)) == CTF_ERR) in do_start_sizeof() 729 if ((sz = (int)ctf_type_size(ctf, stype)) < 0) { in do_start_sizeof() 748 if ((ftype = ctf_type_resolve(ctf, ftype)) == CTF_ERR) in do_scalar_field() 751 if ((sz = (int)ctf_type_size(ctf, ftype)) < 0) { in do_scalar_field() 773 if ((ftype = ctf_type_resolve(ctf, ftype)) == CTF_ERR) in do_array_field() 776 typekind = ctf_type_kind(ctf, ftype); in do_array_field() 780 rc = ctf_array_info(ctf, ftype, &ai); in do_array_field() [all …]
|
/titanic_44/usr/src/cmd/mail/ |
H A D | copymt.c | 52 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 D | copylet.c | 86 int ctf = FALSE; in xxxcopylet() local 120 htype = isheader (buf, &ctf); in xxxcopylet() 300 htype = isheader (buf, &ctf); in xxxcopylet()
|
/titanic_44/usr/src/uts/intel/ctf/ |
H A D | Makefile | 28 MODULE = ctf 39 CPPFLAGS += -I$(SRC)/common/ctf -DCTF_OLD_VERSIONS 40 LDFLAGS += $(BREDUCE) -M$(UTSBASE)/common/ctf/mapfile -dy
|
/titanic_44/usr/src/uts/sparc/ctf/ |
H A D | Makefile | 28 MODULE = ctf 40 CPPFLAGS += -I$(SRC)/common/ctf -DCTF_OLD_VERSIONS 41 LDFLAGS += $(BREDUCE) -M$(UTSBASE)/common/ctf/mapfile -dy
|
/titanic_44/usr/src/lib/libctf/ |
H A D | Makefile.com | 49 SRCS = $(COMMON_OBJS:%.o=../../../common/ctf/%.c) $(LIB_OBJS:%.o=../common/%.c) 54 CPPFLAGS += -I../common -I../../../common/ctf -DCTF_OLD_VERSIONS 71 objs/%.o pics/%.o: ../../../common/ctf/%.c
|
/titanic_44/usr/src/cmd/mdb/ |
H A D | Makefile.libstandctf | 45 CPPFLAGS += -I$(SRC)/common/ctf -I../../../common -DCTF_OLD_VERSIONS -D_MDB \ 84 %.o: $(SRC)/common/ctf/%.c 95 %.ln: $(SRC)/common/ctf/%.c
|
/titanic_44/usr/src/tools/ |
H A D | Makefile | 39 ctf \ 75 ctf \ 153 make: ctf
|
/titanic_44/usr/src/tools/ctf/dump/ |
H A D | Makefile.com | 32 include ../../Makefile.ctf 67 include ../../Makefile.ctf.targ
|
/titanic_44/usr/src/tools/ctf/stabs/ |
H A D | Makefile.com | 39 include ../../Makefile.ctf 75 include ../../Makefile.ctf.targ
|
/titanic_44/usr/src/tools/ctf/cvt/ |
H A D | Makefile.com | 26 include ../../Makefile.ctf 36 ctf.c \
|
/titanic_44/usr/src/lib/libctf/common/ |
H A D | ctf_lib.c | 202 ctf_preamble_t ctf; in ctf_fdopen() member 210 bzero(&hdr.ctf, sizeof (hdr)); in ctf_fdopen() 215 if ((nbytes = pread64(fd, &hdr.ctf, sizeof (hdr), 0)) <= 0) in ctf_fdopen() 223 hdr.ctf.ctp_magic == CTF_MAGIC) { in ctf_fdopen() 224 if (hdr.ctf.ctp_version > CTF_VERSION) in ctf_fdopen()
|
/titanic_44/usr/src/cmd/cmd-inet/usr.lib/inetd/ |
H A D | req.flg | 27 echo_file usr/src/cmd/Makefile.ctf
|
/titanic_44/usr/src/tools/ctf/ |
H A D | inc.flg | 29 echo_file usr/src/uts/common/sys/ctf.h
|
/titanic_44/usr/src/cmd/ipdadm/ |
H A D | Makefile | 22 include ../Makefile.ctf
|
/titanic_44/usr/src/cmd/svc/servinfo/ |
H A D | Makefile | 32 include ../../Makefile.ctf
|
/titanic_44/usr/src/cmd/svc/ |
H A D | req.flg | 27 echo_file usr/src/cmd/Makefile.ctf
|
/titanic_44/usr/src/cmd/svc/svcprop/ |
H A D | Makefile | 32 include ../../Makefile.ctf
|
/titanic_44/usr/src/cmd/dtrace/ |
H A D | Makefile.com | 32 include ../../Makefile.ctf
|