Lines Matching refs:ifunc
257 ctf_funcinfo_t ifunc, ofunc; in ctf_diff_fptr() local
260 if (ctf_func_info_by_id(ifp, iid, &ifunc) == CTF_ERR) in ctf_diff_fptr()
266 if (ifunc.ctc_argc != ofunc.ctc_argc) in ctf_diff_fptr()
269 if (ifunc.ctc_flags != ofunc.ctc_flags) in ctf_diff_fptr()
272 ret = ctf_diff_type(cds, ifp, ifunc.ctc_return, ofp, ofunc.ctc_return); in ctf_diff_fptr()
276 iids = ctf_alloc(sizeof (ctf_id_t) * ifunc.ctc_argc); in ctf_diff_fptr()
280 oids = ctf_alloc(sizeof (ctf_id_t) * ifunc.ctc_argc); in ctf_diff_fptr()
282 ctf_free(iids, sizeof (ctf_id_t) * ifunc.ctc_argc); in ctf_diff_fptr()
286 if (ctf_func_args_by_id(ifp, iid, ifunc.ctc_argc, iids) == CTF_ERR) { in ctf_diff_fptr()
297 for (i = 0; i < ifunc.ctc_argc; i++) { in ctf_diff_fptr()
305 ctf_free(iids, sizeof (ctf_id_t) * ifunc.ctc_argc); in ctf_diff_fptr()