Lines Matching refs:ctfp

110 	ctf_file_t *ctfp;  in pfcheck_str()  local
119 ctfp = dnp->dn_ctfp; in pfcheck_str()
120 base = ctf_type_resolve(ctfp, dnp->dn_type); in pfcheck_str()
121 kind = ctf_type_kind(ctfp, base); in pfcheck_str()
123 return (kind == CTF_K_ARRAY && ctf_array_info(ctfp, base, &r) == 0 && in pfcheck_str()
124 (base = ctf_type_resolve(ctfp, r.ctr_contents)) != CTF_ERR && in pfcheck_str()
125 ctf_type_encoding(ctfp, base, &e) == 0 && IS_CHAR(e)); in pfcheck_str()
132 ctf_file_t *ctfp = dnp->dn_ctfp; in pfcheck_wstr() local
133 ctf_id_t base = ctf_type_resolve(ctfp, dnp->dn_type); in pfcheck_wstr()
134 uint_t kind = ctf_type_kind(ctfp, base); in pfcheck_wstr()
139 return (kind == CTF_K_ARRAY && ctf_array_info(ctfp, base, &r) == 0 && in pfcheck_wstr()
140 (base = ctf_type_resolve(ctfp, r.ctr_contents)) != CTF_ERR && in pfcheck_wstr()
141 ctf_type_kind(ctfp, base) == CTF_K_INTEGER && in pfcheck_wstr()
142 ctf_type_encoding(ctfp, base, &e) == 0 && e.cte_bits == 32); in pfcheck_wstr()
183 ctf_file_t *ctfp = dnp->dn_ctfp; in pfcheck_xshort() local
184 ctf_id_t type = ctf_type_resolve(ctfp, dnp->dn_type); in pfcheck_xshort()
187 return (ctf_type_name(ctfp, type, n, sizeof (n)) != NULL && ( in pfcheck_xshort()
196 ctf_file_t *ctfp = dnp->dn_ctfp; in pfcheck_xlong() local
197 ctf_id_t type = ctf_type_resolve(ctfp, dnp->dn_type); in pfcheck_xlong()
200 return (ctf_type_name(ctfp, type, n, sizeof (n)) != NULL && ( in pfcheck_xlong()
209 ctf_file_t *ctfp = dnp->dn_ctfp; in pfcheck_xlonglong() local
213 if (ctf_type_name(ctfp, ctf_type_resolve(ctfp, type), n, in pfcheck_xlonglong()
225 while (ctf_type_kind(ctfp, type) == CTF_K_TYPEDEF) { in pfcheck_xlonglong()
226 if (ctf_type_name(ctfp, type, n, sizeof (n)) != NULL && in pfcheck_xlonglong()
230 type = ctf_type_reference(ctfp, type); in pfcheck_xlonglong()